/******** INDEX ***********/

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: absolute;
  width: 100%;
}

.header > .item {
  padding: 10px 15px;
  display: flex;
}

.mobile-menu {
  display: none !important;
  width: 40px;
}

.item > .first {
  align-self: flex-start;
  margin-right: 40px;
}

.header > .logo {
  flex-grow: 1;
  margin-left: 40px;
}

.item > .second {
  align-self: flex-end;
  margin-right: 40px;
  display: flex;
}

#myLinks {
  display: none;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  position: fixed;
  background-color: #f0f0f0;
}

.secondary-menu {
  margin: 80px auto 10px;
  text-align: center;
}

.secondary-menu > a {
  text-decoration: none;
}

.secondary-menu > a > .association {
  width: 250px;
  text-align: center;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}

.secondary-menu > a > .donateur {
  width: 250px;
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.collecte-subHeader-label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  height: 25px;
}

@media(max-width: 900px) {
  .header {
    background-color: #2b8bbc;
    height: 55px;
    justify-content: flex-start;
    position: fixed;
  }

  .desktop-menu {
    display: none !important;
  }

  .item > .second {
    margin-right: 0px;
    display: none;
  }

  .mobile-menu {
    align-self: flex-start;
    display: flex !important;
    padding: 5px 15px !important;
  }

  .item > .first {
    margin-right: 60px;
  }

  .header > .logo {
    justify-content: center;
    margin-left: 0px;
  }
}

.second > a {
  color: #fff;
  text-decoration: none;
}

.second >  a > div {
  width: 150px;
  font-size: 14px;
  text-align: center;
}

.association {
  background: #2b8bbc;
  color: #fff;
  border-radius: 5px;
  padding: 10px 15px;
}

.association:hover {
  opacity: 0.8;
}

.donateur {
  margin-left: 20px;
  background: #fff;
  color: #2b8bbc;
  border-radius: 5px;
  padding: 10px 15px;
}

.donateur:hover {
  opacity: 0.8;
}

.first > a > img {
  height: 30px;
}

.subheader {
  background-position: 50% 0%;
  background-image: url('images/header_bottom_bg.png');
  background-size: cover;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bg-container {
  background-position: 50% 50%;
  background-size: cover;
  height: 600px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.bg-container > .title {
  color: #fff;
  font-family: "Pompiere", cursive;
  text-transform: uppercase;
  font-weight: 200;
  margin: 10px;
}

.bg-container > .subtitle {
  color: #fff;
  font-family: "Pompiere", cursive;
  text-transform: uppercase;
  font-weight: 200;
  margin: 10px;
}

.bg-container > .subtitle.mobile {
  display: none;
}

.bg-container > .input-block {
  display: flex;
  margin-top: 40px;
}

.bg-container > .input-block > input {
  width: 300px;
  background-color: #fff;
  padding: 15px 20px;
  margin-right: 20px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  line-height: 14px;
}

.bg-container > .input-block > input:focus {
  outline: none;
}

.bg-container > .input-block > .cta-blue {
  background-color: rgb(43, 139, 188);
  color: #fff;
  padding: 15px 20px;
  width: 100px;
  text-align: center;
  border-radius: 5px;
  font-family: "Pompiere", cursive;
  font-size: 22px;
  line-height: 22px;
  cursor: pointer;
}

@media(min-width: 1300px) {
  .bg-container {
    height: 800px;
  }
  
  .collecte-container {
    width: 1200px;
    margin: 0px auto !important;
  }
}

@media(max-width: 767px) {
  .bg-container > .title {
    text-align: center;
    font-size: 2.5em;
  }

  .bg-container > .subtitle {
    display: none;
  }

  .bg-container > .subtitle.mobile {
    display: block;
    text-align: center;
  }

  .bg-container > .input-block {
    flex-direction: column;
    align-items: center;
  }

  .bg-container > .input-block > input {
    margin-right: 0px;
  }

  .bg-container > .input-block > .cta-blue {
    width: 200px;
    margin-top: 20px;
  }  

  .collecte-container {
    margin: 40px !important;
  }
}

.collecte-container {
  background-color: #fff;
  min-height: 400px;
  margin: 40px 60px;
}

.collecte-container > .title {
  text-align: center;
  font-weight: 200;
  font-family: "Open Sans", sans-serif;
}

.collecte-container-products {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 300px;
  flex-wrap: wrap;
}

.collecte-container-products > .product {
  min-height: 300px;
  border-top: 10px solid;
  border-radius: 5px;
  flex-basis: 24%;
  width: 24%;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1), 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}

.product > a {
  text-decoration: none !important;
  color: rgba(0, 0, 0, 0.65);
}

@media ( min-width: 901px) {
  .collecte-container-products > .product:nth-child(4n + 2) {
    margin-left: 1.33%;
    margin-right: 1.33%;
  }

  .collecte-container-products > .product:nth-child(4n) {
    margin-left: 1.33%;
  }
}

@media( max-width: 900px) {
  .collecte-container-products > .product {
    flex-basis: 49%;
    width: 49%;
    margin-right: 1%;
  }
  
  .collecte-container-products > .product:nth-child(2n) {
    margin-right: 0%;
    margin-left: 1%;
  }
}

@media( max-width: 767px) {
  .collecte-container-products > .product {
    flex-basis: 100%;
    width: 100%;
  }
}

.collecte-header {
  background: #fff;
  padding: 10px 15px;
  display: flex;
  flex-wrap: nowrap;
}
.collecte-logo {
  height: 50px;
  width: 50px;
  margin-left: -10px;
  margin-right: 10px;
}

.association-logo {
  background-size: cover;
  background-position: 50%;
  height: 50px;
  width: 50px;
}

.collecte-subHeader-block {
  flex: 1 1;
}

.collecte-subHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.image {
  height: 200px;
}

.image > img {
  width: 100%;
  height:200px;
}

.text {
  padding: 10px 15px;
  font-family: "Open Sans", sans-serif;
}

.titre {
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 14px;
  height: 45px;
}

.titre:first-letter {
  text-transform: capitalize; 
}

.sous-titre {
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 20px;
  width: 90%;
}

.paragraph {
  font-size: 14px;
  height: 115px;
  overflow: hidden;
  white-space: pre-wrap;
}

.cta-alternate {
  width: 250px;
  margin: 20px auto;
  border: 1px solid #2b8bbc;
  color: #2b8bbc;
  background: #fff;
  text-transform: uppercase;
  font-size: 22px;
  font-family: "Pompiere", cursive;
  text-align: center;
  padding: 10px 15px;
  border-radius: 5px;
}

.comment-ca-marche {
  background: #FBFAFA;
}

.comment-ca-marche-container {
  padding: 40px 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 300px;
}

.comment-ca-marche-video {
  width: 300px;
  height: 250px;
  text-align: center;
}

.comment-ca-marche-text {
  width: 300px;
  display: block;
}

@media(max-width: 900px) {
  .comment-ca-marche-container {
    padding: 40px 0px;
  }
}


@media(max-width: 767px) {
  .comment-ca-marche-container {
    flex-direction: column;
    justify-content: center;
    align-items: center; 
  }

  .comment-ca-marche-text > h3 {
    text-align: center;
  }
}

.footer {
  background: #2b8bbc;
  display: block;
  width: 100%;
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 750px;
  margin: 0px auto;
  padding: 40px;
}

.footer-container > .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

@media(max-width: 900px) {
  .footer-container {
    flex-direction: column;
    width: 100%;
    padding: 40px 0px;
    align-items: center;
  }

  .footer-container > .item {
    margin-bottom: 40px;
  }
}

.footer-container > .item > .title {
  font-family: "Pompiere", cursive;
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-container > .item > .link {
  text-decoration: none;
  color: #d2e6f0;
  font-weight: 300;
  margin-bottom: 10px;
}

.footer-container > .item > .link:hover {
  color: #fff;
}

.footer-container > .item > .special > .link {
  text-decoration: none;
  color: #d2e6f0;
  font-weight: 300;
  margin-bottom: 10px;
  margin-right: 5px;
  font-size: 20px;
}

.footer-container > .item > .special > .link:hover {
  color: #fff;
}

.comment-ca-marche-text > h3 {
  font-family: "Pompiere", cursive;
  font-size: 22px;
  margin-bottom: 0px;
}

.stats-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 25px 15px;
  width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.stats-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1;
}

.stats-box > .stats-item > .logo {
  height: 100px;
  width: 100px;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 5px;
}

.stats-box > .stats-item > .chiffre {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.stats-box > .stats-item > .text {
  margin-top: 0px;
  font-weight: 200;
  padding: 0px;
  text-align: center;
}

@media(max-width: 900px) {
  .stats-box {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 25px 0px;
  }

  .stats-item {
    width: 24%;
    flex: none;
  }
}

@media(max-width: 767px) {
  .stats-item {
    width: 50%;
    flex: none;
  }
}

.secondary-footer {
  background-color: rgb(107, 182, 218);
  text-align: center;
  color: #fff;
  padding: 5px;
}


/******** COMMENT CA MARCHE ***********/

.comment-ca-marche-bg-container {
  background-position: 50% 50%;
  background-size: cover;
  height: 600px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.comment-ca-marche-bg-container > .title {
  color: #fff;
  font-family: "Pompiere", cursive;
  text-transform: uppercase;
  font-weight: 200;
  margin: 10px;
  font-size: 3em;
}

.comment-ca-marche-bg-container > .subtitle {
  color: #fff;
  margin: 10px;
  font-weight: 200;
  font-size: 1.5em;
  text-align: center;
  width: 60%;
}

.comment-ca-marche-three-steps-container {
  background-color: #fff;
  width: 1000px;
  margin: 10px auto;
}

.comment-ca-marche-three-steps {
  margin: 15px 20px;
  display: flex;
}

.comment-ca-marche-three-steps > .comment-ca-marche-step {
  display: flex;
  width: 31%;
  margin: 10px 1%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.comment-ca-marche-step > .photo {
  height: 200px;
  width: 100%;
}

.comment-ca-marche-step > .title {
  text-transform: uppercase;
  font-weight: 800;
  color: #000;
  margin-bottom: 0px;
}

.comment-ca-marche-step > p {
  text-align: center;
}

.comment-ca-marche-third-container {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.comment-ca-marche-third {
  width: 600px;
  margin: 0px auto 0px 100px;
  display: block;
  padding: 30px;
}

.comment-ca-marche-third > .title {
  text-transform: uppercase;
  font-family: "Pompiere", cursive;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0px;
}

.comment-ca-marche-third > p {
  color: #fff;
}

.comment-ca-marche-fourth-container {
  background-color: #fff;
  margin: 40px;
}

.comment-ca-marche-fourth {
  width: 1000px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-ca-marche-left {
  font-family: "Pompiere", cursive;
  text-transform: uppercase;
  font-size: 7em;
  color: #2b8bbc;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 20px;
  font-weight: 100;
}

.comment-ca-marche-right {
  font-weight: 200;
  font-size: 1.3em;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 50%;
}

@media(min-width: 1300px) {
  .comment-ca-marche-bg-container {
    height: 800px;
  }
}

@media(max-width: 900px) {
  .comment-ca-marche-bg-container > .title {
    font-size: 2em;
    text-align: center;
  }
  .comment-ca-marche-bg-container > .subtitle {
    font-size: 1em;
    text-align: center;
    width: 80%;
  }

  .comment-ca-marche-three-steps-container {
    width: 100%;
    margin: 10px 0px;
  }

  .comment-ca-marche-three-steps {
    flex-wrap: wrap;
  }

  .comment-ca-marche-three-steps > .comment-ca-marche-step {
    width: 94%;
    margin: 10px 3%;
  }

  .comment-ca-marche-step > .photo {
    width: auto;
  }

  .comment-ca-marche-step > p {
    width: 70%;
  }

  .comment-ca-marche-third-container {
    background-position: 80% 50%;
  }

  .comment-ca-marche-third {
    width: 600px;
    margin: 0px auto;
  }

  .comment-ca-marche-fourth {
    flex-direction: column;
    width: 600px;
  }

  .comment-ca-marche-left {
    margin-right: 0px;
  }
  
  .comment-ca-marche-right {
    width: 100%;
  }
}

@media(max-width: 767px) {
  .comment-ca-marche-three-steps-container {
    margin: 10px 0px;
  }

  .comment-ca-marche-third {
    width: auto;
  }

  .comment-ca-marche-step > p {
    width: 80%;
  }

  .comment-ca-marche-step > .photo {
    height: 180px;
  }

  .comment-ca-marche-fourth {
    width: 100%;
  }
}


/************* LEGAL *****************/

.legal-bg-container {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0px;
}

.legal-bg-container > .logo {
  width: 120px;
}

.legal-main-container {
  width: 700px;
  margin-top: 60px;
  background-color: #fff;
  border-radius: 5px;
  height: auto;
}

.legal-main-container-block {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal-main-container-block > .menu {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.legal-main-container-block > .menu > .menu-item {
  padding: 5px 15px;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.legal-main-container-block > .menu > .menu-item.active {
  color: #2b8bbc;
  border: 1px solid #2b8bbc;
  border-radius: 15px;
}

.legal-main-container-block > .title {
  margin-top: 40px;
  font-size: 1.25em;
  font-weight: bold;
  color: #000;
}

.legal-main-container-block > .text-block {
  height: 500px;
  overflow-y: scroll;
  margin: 30px 0px;
  display: none;
  text-align: justify;
  white-space: pre-wrap;
  width: 100%;
}

.legal-main-container-block > .text-block.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media(max-width: 900px) {
  .legal-bg-container {
    padding: 20px 10px;
  }

  .legal-main-container {
    width: 100%;
  }
}

/***************** FAQ *******************/

.faq-bg-container {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0px;
}

.faq-bg-container > .logo {
  width: 120px;
}

.faq-main-container {
  width: 700px;
  margin-top: 60px;
  background-color: #fff;
  border-radius: 5px;
  height: auto;
}

.faq-main-container-block {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-main-container-block > .title {
  margin-top: 40px;
  font-size: 1.25em;
  font-weight: bold;
  color: #000;
}

.faq-main-container-block > .text-block {
  height: 500px;
  overflow-y: scroll;
  margin: 30px 0px;
  display: block;
  width: 100%;
}

.faq-block {
  display: block;
  margin: 0px 40px;
}

.faq-block > .title {
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}

.faq-block > .questions {
  border-radius: 10px;
  border: 1px solid #858585;
}

.question {
  padding: 10px 15px;
  border-bottom: 1px solid #858585;
  cursor: pointer;
  display: block;
}

.questions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.questions-header > .question-title {
  margin: 0px;
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

.question > .reponse {
  display: none;
}

.question.active > .reponse {
  font-size: 12px;
  font-weight: 400;
  display: block;
  line-height: 16px;
  letter-spacing: 0.5px;
  margin-top: 0px;
  white-space: pre-line;
}

.question > .questions-header > .fa-chevron-up {
  display: none;
}

.question > .questions-header > .fa-chevron-down {
  display: block;
}

.question.active > .questions-header > .fa-chevron-down {
  display: none;
}

.question.active > .questions-header > .fa-chevron-up {
  display: block;
}

.question:last-child {
  border-bottom: none;
}

@media(max-width: 900px) {
  .faq-bg-container {
    padding: 20px 10px;
  }

  .faq-main-container {
    width: 100%;
  }
}

