/* CSS RESPONSIVE  */
/*//// MEDIA QUERIES  ////*/
/************************* LARGE SCREEN ONLY  *************************/
/******************* ALL MOBILES - Max 1024px *******************/
@media only screen and (max-width: 1024px) {
  .donFooter {
    width: 100%;
  }

  /* Citation texte */
  blockquote.blockquote_text {
    width: 100%;
    margin-bottom: 40px;
  }
}
/*******************  INTERMEDIAIRE - 640px>1023px *******************/
@media only screen and (min-width: 640px) and (max-width: 1023px) {
  /* Citation texte */
  blockquote.blockquote_text {
    width: 50%;
  }
}
/*******************  MOBILES SMALL - 0px>639px  *******************/
@media only screen and (min-width: 0px) and (max-width: 639px) {
  .encartEtapes {
    width: 290px;
  }

  .bgHome {
    display: inline-block;
    min-height: auto;
    width: 100%;
    padding-top: 10px;
    background: center 0px no-repeat;
  }
}
/*******************  MOBILES VERY SMALL - 0px>359px  *******************/
