:root {
  --black: #1d1d1b;
  --white: white;
  --red: #ff0007;
  --firebrick: #d30308;
  --white-smoke: #e4e4e4;
  --grey: #8b8b8b;
  --light-grey: #cfcfcf;
  --seashell: #fff6f2;
}

body {
  color: var(--black);
  padding-bottom: 80px;
  font-family: lft-etica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: roc-grotesk, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: roc-grotesk, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.menu__desktop {
  z-index: 200;
  height: 80px;
  background-color: var(--white);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  box-shadow: 0 20px 50px rgba(29, 29, 27, .06);
}

.menu__wrapper {
  height: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu__logo-wrapper {
  align-items: center;
  margin-left: -8px;
  padding: 8px;
  display: flex;
}

.menu__logo-img {
  max-height: 48px;
  max-width: 240px;
  display: block;
}

.menu__right-wrapper {
  height: 100%;
  align-items: center;
  margin-right: -8px;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.menu__right-link {
  color: var(--black);
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s cubic-bezier(.645, .045, .355, 1);
  display: block;
}

.menu__right-link:hover {
  color: var(--red);
}

.btn__small {
  background-color: var(--red);
  border-radius: 24px;
  flex: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color .4s cubic-bezier(.645, .045, .355, 1);
}

.btn__small:hover {
  background-color: var(--firebrick);
}

.menu__social-icon {
  height: 16px;
  display: block;
}

.menu__social-block {
  margin-left: 4px;
  margin-right: 4px;
  padding: 4px;
  transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.menu__social-block:hover {
  opacity: .6;
}

.menu__right-block {
  color: var(--black);
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .5s cubic-bezier(.645, .045, .355, 1);
  position: relative;
}

.menu__right-block:hover {
  color: var(--red);
}

.menu__right-underline {
  width: 70%;
  height: 3px;
  background-color: var(--red);
  transform-origin: 0%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: 0%;
  right: 0%;
}

.menu__btn-wrapper {
  margin-left: 8px;
  margin-right: 8px;
}

.menu__mobile, .menu__open {
  display: none;
}

.section-test {
  height: 300vh;
  background-color: var(--red);
}

.progress {
  z-index: 300;
  width: 100%;
  background-color: var(--white);
  padding: 24px 32px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 -20px 50px rgba(29, 29, 27, .06);
}

.progress__wrapper {
  max-width: 1200px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.progress__number-block {
  margin-left: 16px;
  margin-right: 16px;
}

.progress__number-title {
  text-align: center;
  font-family: roc-grotesk, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
}

.progress__number-text {
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.progress__percentage-wrapper {
  cursor: default;
  margin-left: 16px;
  margin-right: 16px;
}

.percentage__bar-wrapper {
  width: 480px;
  height: 8px;
  background-color: var(--white-smoke);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.percentage__bar-red {
  width: 12.5%;
  height: 100%;
  background-color: var(--red);
  border-radius: 16px;
  position: absolute;
  left: 0%;
}

.percentage__text {
  color: var(--grey);
  margin-top: 8px;
}

.btn__big {
  background-color: var(--red);
  border-radius: 32px;
  flex: none;
  margin-left: 8px;
  margin-right: 8px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition: background-color .4s cubic-bezier(.645, .045, .355, 1);
  display: inline-block;
}

.btn__big:hover {
  background-color: var(--firebrick);
}

.btn__big.grey {
  background-color: var(--light-grey);
}

.btn__big.grey:hover {
  background-color: var(--grey);
}

.btn__big.header {
  margin-top: 24px;
  margin-left: 0;
}

.btn__big.soon {
  background-color: var(--white-smoke);
  color: var(--grey);
  cursor: default;
}

.progress__numbers-wrapper {
  cursor: default;
  align-items: center;
  margin-right: 16px;
  display: flex;
}

.progress__btn-wrapper {
  align-items: center;
  margin-left: 16px;
  display: flex;
}

.progress__open-btn, .progress__open-bg {
  display: none;
}

.lightbox {
  z-index: 600;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lightbox.soutien, .lightbox.partager, .lightbox.partner {
  display: none;
}

.soutien__background {
  z-index: 1;
  cursor: pointer;
  background-color: rgba(29, 29, 27, .9);
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lightbox__wrapper {
  z-index: 10;
  width: 944px;
  background-color: var(--white);
  border-radius: 4px;
  margin: 40px;
  padding: 80px;
  position: relative;
  box-shadow: 0 50px 80px rgba(0, 0, 0, .6);
}

.lightbox__top {
  justify-content: flex-end;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.lightbox__top-icon {
  width: 12px;
  height: 12px;
}

.lightbox__top-btn {
  padding: 24px 32px;
}

.lightbox__content {
  height: 100%;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.lightbox__img-wrapper.lottie {
  padding-right: 80px;
}

.lightbox__img {
  max-width: 200px;
  min-width: 200px;
}

.lightbox__text-wrapper {
  max-width: 400px;
}

.lightbox__btn-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: -8px;
  display: flex;
}

.text__link {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  transition: color .4s cubic-bezier(.645, .045, .355, 1);
}

.text__link:hover {
  color: var(--red);
}

.text__paragraphe {
  padding-top: 4px;
  padding-bottom: 4px;
}

.text__paragraphe.soutien {
  margin-bottom: 24px;
}

.lightbox__projet {
  margin-top: 24px;
  margin-bottom: 8px;
}

.lightbox__social-wrapper {
  align-items: center;
  margin-left: -8px;
  display: flex;
}

.lightbox__social-wrapper.footer {
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 0;
}

.lightbox__social-block {
  width: 64px;
  height: 64px;
  background-color: var(--black);
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  margin-right: 8px;
  transition: background-color .3s ease-in-out;
  display: flex;
}

.lightbox__social-block:hover {
  background-color: var(--red);
}

.lightbox__social-icon {
  max-height: 24px;
  max-width: 24px;
}

.section {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.section.header {
  height: 100vh;
  border-style: solid;
  border-width: 120px 40px 40px;
  border-color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section.test {
  display: none;
}

.section.rose {
  background-color: #fff6f2;
  border: 40px solid #fff;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 128px;
  padding-right: 128px;
}

.section.partenariat {
  background-color: #f3f3f3;
}

.section.partners, .section.contact {
  padding-top: 0;
  padding-bottom: 0;
}

.container {
  max-width: 1200px;
}

.container.header {
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 40px;
  display: flex;
}

.container.projet {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container.duo {
  align-items: flex-start;
  margin: 120px auto;
  display: flex;
}

.container.duo.motivation {
  flex-direction: row-reverse;
}

.container.duo.contact {
  justify-content: center;
  align-items: center;
}

.container.partenariat {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.container.sponsors {
  margin-top: 120px;
  margin-bottom: 120px;
}

.container.legal {
  max-width: 600px;
  padding-top: 124px;
}

.header__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header__bg-wrapper {
  width: 100%;
  height: 100%;
  background-color: #ffe6d9;
  position: relative;
  overflow: hidden;
}

.slide-1__img {
  width: 100%;
  height: 100%;
  max-width: none;
  transform-origin: 50% 0;
  object-fit: cover;
}

.slide-1__wrapper {
  z-index: 10;
  width: 100%;
  height: 100%;
  transform-origin: 50% 0;
  object-fit: cover;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide-2__wrapper {
  z-index: 20;
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide-2__img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.header__bg-filles {
  z-index: 30;
  width: 50%;
  margin-top: 64px;
  margin-right: 64px;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.header__wrapper {
  z-index: 50;
  width: 50%;
  max-width: 600px;
  position: relative;
}

.text__important {
  font-size: 20px;
  line-height: 32px;
}

.text__bold {
  font-weight: 700;
}

.projet__numbers-wrapper {
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
}

.numbers__wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  margin-right: 40px;
  display: flex;
}

.numbers__title {
  color: var(--red);
  text-align: center;
  font-family: roc-grotesk, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
}

.numbers__text {
  text-align: center;
}

.projet__animation-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}

.animation__4x4 {
  height: 240px;
  margin-left: -15%;
}

.objectif__wrapper {
  width: 80%;
}

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

.objectif__text-title {
  font-family: roc-grotesk, sans-serif;
  font-size: 24px;
  line-height: 32px;
}

.objectif__text-grey {
  color: var(--grey);
}

.objectif__progress-bar {
  height: 16px;
  background-color: var(--light-grey);
  border-radius: 16px;
  margin-top: 24px;
  margin-bottom: 40px;
  position: relative;
}

.objectif__progress-charging {
  z-index: 10;
  width: 12.5%;
  height: 100%;
  background-color: var(--red);
  transform-origin: 0%;
  border-radius: 16px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.infobulle__bullet {
  z-index: 20;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  background-color: var(--grey);
  cursor: pointer;
  border-radius: 8px;
  transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.infobulle__bullet:hover {
  background-color: var(--red);
}

.infobulle__bullet.info-1 {
  left: 48.75%;
}

.infobulle__bullet.info-2 {
  left: 52%;
}

.infobulle__bullet.info-3 {
  left: 81.87%;
}

.infobulle__bullet.info-4 {
  left: 87.5%;
}

.infobulle__bullet.info-5 {
  left: 90%;
}

.infobulle__bullet.info-6 {
  left: 92%;
}

.infobulle__bullet.info-7 {
  left: 99%;
}

.infobulle {
  z-index: 20;
  min-width: 256px;
  background-color: var(--white);
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  display: none;
  position: absolute;
  bottom: 40px;
  left: -128px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.infobulle__text-title {
  color: var(--red);
  font-family: roc-grotesk, sans-serif;
  font-size: 24px;
  line-height: 32px;
}

.objectif__btn-wrapper {
  justify-content: center;
  display: flex;
}

.title__center {
  text-align: center;
}

.text-block {
  width: 33%;
}

.img-block {
  width: 67%;
  height: 100%;
  padding-left: 124px;
}

.img-block__img {
  width: 100%;
  height: auto;
}

.text__red {
  color: var(--red);
}

.bios {
  width: 67%;
  justify-content: space-between;
  align-items: center;
  padding-right: 124px;
  display: flex;
}

.bios.contact {
  justify-content: center;
  padding-left: 124px;
  padding-right: 0;
}

.btn__text {
  color: var(--red);
  align-items: center;
  margin-top: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.btn__text-icon {
  height: 8px;
  margin-left: 8px;
}

.bio_wrapper {
  width: 50%;
  background-color: #ffe6d9;
  border-radius: 4px;
  padding: 40px;
}

.bio_wrapper.charlotte {
  margin-right: 40px;
}

.bio_wrapper.contact {
  width: 30%;
  background-color: #f3f3f3;
  margin-left: 120px;
}

.bio__text-name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.bio__text-role {
  color: var(--red);
  text-align: center;
  margin-top: 8px;
  font-weight: 700;
}

.bio__profil-pic {
  width: 128px;
  height: 128px;
  border-radius: 64px;
  margin: -104px auto 24px;
  display: block;
}

.stats__wrapper {
  margin-top: 8px;
}

.stats__progress-bg {
  width: 100%;
  height: 8px;
  background-color: #ffc4ba;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.stats__progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--red);
  transform-origin: 0%;
  border-radius: 4px;
  padding-bottom: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.stats__progress-bar.cha-stat-1 {
  width: 75%;
}

.stats__progress-bar.cha-stat-2 {
  width: 95%;
}

.stats__progress-bar.cha-stat-3 {
  width: 10%;
}

.stats__progress-bar.cha-stat-4 {
  width: 45%;
}

.stats__progress-bar.cha-stat-5 {
  width: 90%;
}

.stats__progress-bar.mel-stat-1 {
  width: 95%;
}

.stats__progress-bar.mel-stat-2 {
  width: 75%;
}

.stats__progress-bar.mel-stat-3 {
  width: 84%;
}

.stats__progress-bar.mel-stat-4 {
  width: 60%;
}

.stats__progress-bar.mel-stat-5 {
  width: 80%;
}

.div-block {
  width: 1456px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-2 {
  background-color: #fff6f2;
  padding: 128px;
}

.section__big-bg {
  width: 100%;
  max-width: 1456px;
  background-color: var(--seashell);
  margin-left: auto;
  margin-right: auto;
  padding-top: 8px;
  padding-bottom: 8px;
}

.section__big-bg.sponsors {
  background-color: #f3f3f3;
}

.objectif__progress-wrapper {
  height: 16px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.undertitle__center {
  text-align: center;
}

.soutien__trio {
  justify-content: space-between;
  align-items: stretch;
  margin-top: 64px;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.soutien__wrapper {
  text-align: center;
  background-color: #f3f3f3;
  border-radius: 4px;
  flex: 1;
  margin-left: 20px;
  margin-right: 20px;
  padding: 40px;
}

.soutien__illu-wrapper {
  height: 176px;
  margin-bottom: 40px;
  padding-top: 24px;
}

.soutien__text-title {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
}

.soutien__illu-img {
  height: 100%;
  object-fit: contain;
}

.soutien__slideshow {
  height: 176px;
  background-color: rgba(0, 0, 0, 0);
}

.soutien__slideshow-mask {
  height: 160px;
}

.soutien__slideshow-slide {
  width: 100%;
  height: 160px;
  padding: 0 0 16px;
}

.soutien__slideshow-arrow {
  display: none;
}

.soutien__slideshow-nav {
  height: 16px;
}

.soutien__slideshow-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partenariat__illu-wrapper {
  width: 220px;
  margin-top: -160px;
  margin-left: auto;
  margin-right: auto;
}

.partenariat__illu-img {
  display: block;
}

.partenariat__text-block {
  width: 440px;
  margin-bottom: 36px;
  margin-left: 80px;
}

.section__partenariat {
  width: 100%;
  background-color: #f3f3f3;
  justify-content: center;
  margin-top: 120px;
  margin-bottom: 0;
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: relative;
}

.partenariat__wrapper {
  align-items: flex-end;
  display: flex;
}

.duo-img__wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.duo-img__img {
  width: 100%;
  display: block;
}

.duo-img__block {
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}

.sponsors__grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 40px;
  display: grid;
}

.sponsors__block {
  width: 100%;
  height: 120px;
  background-color: var(--white);
  filter: grayscale();
  justify-content: center;
  align-items: center;
  padding: 16px;
  transition: all .5s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.sponsors__block:hover {
  filter: grayscale(0%);
}

.sponsors__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner__background {
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 27, .9);
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.trophee__trio-wrapper {
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

.trophee__text-block {
  flex: 1;
  margin-left: 16px;
  margin-right: 16px;
}

.contact__wraper {
  color: var(--black);
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  text-decoration: none;
  transition: color .4s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.contact__wraper:hover {
  color: var(--red);
}

.contact__icon {
  height: 16px;
  margin-right: 8px;
  display: block;
}

.legal__wrapper {
  text-align: center;
  margin-top: 120px;
}

.legal__link {
  border-bottom: 2px solid var(--light-grey);
  color: var(--black);
  padding-bottom: 0;
  text-decoration: none;
  transition: all .4s cubic-bezier(.77, 0, .175, 1);
  display: inline-block;
}

.legal__link:hover {
  border-bottom-color: var(--white);
  color: var(--red);
}

.text-block-2 {
  padding-bottom: 24px;
}

.legal__heading {
  margin-top: 32px;
  margin-bottom: 8px;
}

.somme {
  font-weight: 400;
}

.heading-2 {
  font-size: 70px;
}

@media screen and (max-width: 991px) {
  body {
    padding-bottom: 240px;
  }

  h1 {
    font-size: 32px;
    line-height: 32px;
  }

  .menu__desktop {
    display: none;
  }

  .menu__mobile {
    z-index: 200;
    width: 100%;
    height: 80px;
    background-color: var(--white);
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
    box-shadow: 0 20px 50px rgba(29, 29, 27, .06);
  }

  .menu-mobile__logo-wrapper {
    height: 100%;
    padding: 16px;
  }

  .menu-mobile__logo-img {
    max-height: 48px;
    max-width: 240px;
    display: block;
  }

  .menu-mobile__logo-img.mini {
    display: none;
  }

  .menu-mobile__menu-btn {
    width: 100px;
    height: 100%;
    color: var(--black);
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    display: flex;
  }

  .menu__open {
    z-index: 400;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .menu-open__top-wrapper {
    width: 100%;
    height: 10%;
    justify-content: flex-end;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-open__close-btn {
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
    display: flex;
  }

  .menu-open__close-btn:hover {
    opacity: .6;
  }

  .menu-open__close-icon {
    width: 16px;
    height: 16px;
  }

  .menu-open__links-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
  }

  .menu-open__link-block {
    width: 100%;
    color: var(--white);
    align-items: center;
    margin-left: -16px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 16px;
    font-size: 32px;
    line-height: 40px;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
    display: flex;
  }

  .menu-open__link-block:hover {
    opacity: .6;
  }

  .menu-open__social-wrapper {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
  }

  .menu-open__social-block {
    margin-left: 8px;
    margin-right: 8px;
    padding: 16px;
    transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
  }

  .menu-open__social-block:hover {
    opacity: .6;
  }

  .menu-open__social-icon {
    height: 24px;
  }

  .progress {
    z-index: 300;
    padding-bottom: 16px;
    display: flex;
    box-shadow: 0 -20px 50px rgba(29, 29, 27, .12);
  }

  .progress__wrapper {
    flex-direction: column;
  }

  .progress__percentage-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .progress__numbers-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    display: flex;
  }

  .progress__btn-wrapper {
    margin-left: 0;
    display: flex;
  }

  .progress__open-btn {
    width: 40px;
    height: 40px;
    background-color: var(--red);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    display: flex;
    position: absolute;
    top: -20px;
    bottom: auto;
    left: 0%;
    right: 0%;
    box-shadow: 0 4px 8px rgba(29, 29, 27, .06);
  }

  .progress__open-icon {
    height: 10px;
  }

  .dropdown__test {
    background-color: var(--white);
    transition: flex-grow .2s;
    position: fixed;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .dropdown-list {
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .dropdown-list.w--open {
    transition: all .2s;
    position: static;
  }

  .progress__open-bg {
    z-index: 290;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 27, .8);
    display: none;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox__wrapper {
    max-height: 90%;
    padding: 64px;
    overflow: auto;
  }

  .lightbox__img-wrapper {
    margin-right: 20px;
  }

  .lightbox__text-wrapper {
    margin-left: 20px;
  }

  .lightbox__social-wrapper {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .section.header {
    border-width: 104px 24px 24px;
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .container.header {
    padding: 64px;
  }

  .container.projet {
    padding-left: 32px;
    padding-right: 32px;
  }

  .container.duo {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 32px;
    padding-right: 32px;
    display: block;
  }

  .header__bg-filles {
    width: 90%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    top: auto;
    bottom: -60%;
    left: 0%;
    right: 0%;
  }

  .header__wrapper {
    width: 100%;
    max-width: 100%;
  }

  .objectif__wrapper {
    width: 100%;
  }

  .infobulle__bullet {
    display: none;
  }

  .text-block {
    width: 100%;
  }

  .img-block {
    margin: 24px auto;
    padding-left: 0;
  }

  .bios {
    width: 100%;
    margin-top: 128px;
    padding-right: 0;
  }

  .bios.contact {
    padding-left: 0;
  }

  .bio_wrapper.contact {
    width: 50%;
    margin-top: 96px;
    margin-left: auto;
    margin-right: auto;
  }

  .soutien__trio {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .soutien__wrapper {
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .partenariat__illu-wrapper {
    width: 40%;
  }

  .partenariat__text-block {
    width: 60%;
    margin-left: 40px;
  }

  .section__partenariat {
    padding-top: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .sponsors__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .trophee__trio-wrapper {
    flex-direction: column;
    margin-top: 24px;
    margin-left: 0;
    margin-right: 0;
  }

  .trophee__text-block {
    margin: 8px 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .menu-mobile__logo-img {
    display: none;
  }

  .menu-mobile__logo-img.mini {
    display: block;
  }

  .progress {
    padding-left: 24px;
    padding-right: 24px;
  }

  .progress__wrapper, .progress__percentage-wrapper, .percentage__bar-wrapper {
    width: 100%;
  }

  .lightbox__wrapper {
    width: 100%;
    margin: 0;
    padding: 40px;
    overflow: scroll;
  }

  .lightbox__content {
    display: block;
  }

  .lightbox__img-wrapper {
    justify-content: center;
    margin-right: 0;
    display: flex;
  }

  .lightbox__text-wrapper {
    max-width: 100%;
    margin-top: 24px;
    margin-left: 0;
  }

  .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .container.header {
    padding: 24px;
  }

  .container.duo {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .container.sponsors {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .header__bg-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__bg-filles {
    width: 95%;
    bottom: -34%;
  }

  .projet__numbers-wrapper {
    width: 100%;
    display: block;
  }

  .numbers__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .img-block {
    width: 100%;
  }

  .bios {
    width: 100%;
    padding-right: 0;
    display: block;
  }

  .bio_wrapper {
    width: 100%;
  }

  .bio_wrapper.charlotte {
    margin-bottom: 128px;
    margin-right: 0;
  }

  .bio_wrapper.contact {
    width: 75%;
  }

  .section__partenariat {
    margin-top: 0;
  }

  .sponsors__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trophee__trio-wrapper, .trophee__text-block {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .menu__open {
    display: none;
  }

  .menu-open__link-block {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .menu-open__link-text {
    font-size: 24px;
    line-height: 32px;
  }

  .menu-open__social-icon {
    height: 24px;
  }

  .btn__big {
    margin-top: 8px;
    margin-bottom: 8px;
    display: inline-block;
  }

  .lightbox {
    align-items: center;
  }

  .lightbox__wrapper {
    max-height: 90%;
    padding: 40px;
    overflow: auto;
  }

  .lightbox__img {
    max-height: 150px;
  }

  .lightbox__btn-wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 8px;
    display: flex;
  }

  .lightbox__social-wrapper {
    grid-column-gap: 2px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .lightbox__social-block {
    width: 40px;
    height: 40px;
    margin-left: 4px;
    margin-right: 4px;
  }

  .lightbox__social-icon {
    max-height: 12px;
    max-width: 12px;
  }

  .section.header {
    border-width: 88px 8px 8px;
  }

  .container.header {
    padding: 48px;
  }

  .container.sponsors {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .header__bg-filles {
    bottom: -25%;
  }

  .text__important {
    font-size: 16px;
    line-height: 24px;
  }

  .heading {
    font-size: 40px;
    line-height: 40px;
  }

  .projet__animation-wrapper {
    margin-top: 10px;
    margin-bottom: 24px;
    overflow: hidden;
  }

  .animation__4x4 {
    height: 100%;
  }

  .objectif__btn-wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .img-block {
    width: 100%;
  }

  .bio_wrapper.charlotte {
    margin-bottom: 96px;
  }

  .bio_wrapper.contact {
    width: 100%;
  }

  .soutien__wrapper {
    margin-bottom: 32px;
    padding: 32px;
  }

  .partenariat__illu-wrapper {
    width: 50%;
  }

  .partenariat__text-block {
    width: 100%;
  }

  .section__partenariat {
    margin-top: 80px;
  }

  .partenariat__wrapper {
    flex-direction: column;
  }

  .duo-img__wrapper {
    flex-direction: column;
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .duo-img__block {
    margin-bottom: 16px;
    margin-left: 0;
    margin-right: 0;
  }
}


