@charset "UTF-8";
/*--------------------------------------
  VARIABLES COLORS
--------------------------------------*/
/*--------------------------------------
  FONTS
--------------------------------------*/
@font-face {
  font-family: 'DIN Schablonierschrift';
  src: url('../fonts/DINSchablonierschrift.eot');
  src: url('../fonts/DINSchablonierschrift.eot?#iefix') format('embedded-opentype'), url('../fonts/DINSchablonierschrift.woff2') format('woff2'), url('../fonts/DINSchablonierschrift.woff') format('woff'), url('../fonts/DINSchablonierschrift.ttf') format('truetype'), url('../fonts/DINSchablonierschrift.svg#DINSchablonierschrift') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Futura PT Bold';
  src: url('../fonts/FuturaPT-Bold.eot');
  src: url('../fonts/FuturaPT-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Bold.woff2') format('woff2'), url('../fonts/FuturaPT-Bold.woff') format('woff'), url('../fonts/FuturaPT-Bold.ttf') format('truetype'), url('../fonts/FuturaPT-Bold.svg#FuturaPT-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Futura PT Book';
  src: url('../fonts/FuturaPT-Book.eot');
  src: url('../fonts/FuturaPT-Book.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Book.woff2') format('woff2'), url('../fonts/FuturaPT-Book.woff') format('woff'), url('../fonts/FuturaPT-Book.ttf') format('truetype'), url('../fonts/FuturaPT-Book.svg#FuturaPT-Book') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Futura PT Light';
  src: url('../fonts/FuturaPT-Light.eot');
  src: url('../fonts/FuturaPT-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Light.woff2') format('woff2'), url('../fonts/FuturaPT-Light.woff') format('woff'), url('../fonts/FuturaPT-Light.ttf') format('truetype'), url('../fonts/FuturaPT-Light.svg#FuturaPT-Light') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Futura PT Demi';
  src: url('../fonts/FuturaPT-Demi.eot');
  src: url('../fonts/FuturaPT-Demi.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Demi.woff2') format('woff2'), url('../fonts/FuturaPT-Demi.woff') format('woff'), url('../fonts/FuturaPT-Demi.ttf') format('truetype'), url('../fonts/FuturaPT-Demi.svg#FuturaPT-Demi') format('svg');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Futura PT Heavy';
  src: url('../fonts/FuturaPT-Heavy.eot');
  src: url('../fonts/FuturaPT-Heavy.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Heavy.woff2') format('woff2'), url('../fonts/FuturaPT-Heavy.woff') format('woff'), url('../fonts/FuturaPT-Heavy.ttf') format('truetype'), url('../fonts/FuturaPT-Heavy.svg#FuturaPT-Heavy') format('svg');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Futura PT Medium';
  src: url('../fonts/FuturaPT-Medium.eot');
  src: url('../fonts/FuturaPT-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Medium.woff2') format('woff2'), url('../fonts/FuturaPT-Medium.woff') format('woff'), url('../fonts/FuturaPT-Medium.ttf') format('truetype'), url('../fonts/FuturaPT-Medium.svg#FuturaPT-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'DINCond Black';
  src: url('../fonts/DINCond-Black.eot');
  src: url('../fonts/DINCond-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/DINCond-Black.woff2') format('woff2'), url('../fonts/DINCond-Black.woff') format('woff'), url('../fonts/DINCond-Black.ttf') format('truetype'), url('../fonts/DINCond-Black.svg#DINCond-Black') format('svg');
  font-weight: 500;
  font-style: normal;
}
/*--------------------------------------
  GENERAL STYLE
--------------------------------------*/
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Futura PT Bold';
  color: #ffffff;
  overflow-x: hidden;
  background: #000;
  height: 100%;
}
html {
  height: 100%;
}
body * {
  color: #ffffff;
}
button:active,
button:focus {
  outline: none;
}
a {
  text-decoration: none;
  text-transform: uppercase;
}
a:focus,
a:hover {
  color: #ffffff;
}
.d-n-d {
  display: none;
}
.loader {
  border: 7px solid #f3f3f3;
  border-top: 7px solid #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-loader {
  position: fixed;
  z-index: 99999;
  height: 100%;
  width: 100%;
  background: #fff;
}
.container {
  max-width: 1048px;
  margin: 0 auto;
  width: calc(100% - 30px);
}
.container-header {
  max-width: 1248px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  width: calc(100% - 30px);
}
/*--------------------------------------
  HEADER
--------------------------------------*/
.header-fix {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 86px;
  z-index: 1;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  .header-fix {
    height: 76px;
  }
}
.pos-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.bloc-left {
  max-width: 204px;
}
.icon-partage img:first-child {
  margin-right: 6px;
}
.bloc-right {
  max-width: 590px;
  width: 100%;
}
.bloc-txt {
  max-width: 320px;
  width: 100%;
  height: 44px;
  background-color: #ffffff;
  border-radius: 20px;
}
.btn-header {
  max-width: 252px;
  width: 100%;
  height: 44px;
  background-color: #ba006d;
  border-radius: 20px;
  text-align: center;
}
.btn-header a {
  text-align: center;
  font-size: 17px;
  line-height: 41px;
}
.bloc-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bloc-txt span {
  font-size: 14px;
  line-height: 14px;
  color: #000000;
}
.icon-partage {
  margin-left: 12px;
  display: flex;
}
.bloc-txt span:first-child {
  text-align: right;
  position: relative;
  margin-left: 22px;
  margin-right: 17px;
}
.bloc-txt span:first-child::after {
  position: absolute;
  height: calc(100% - 4px);
  content: '';
  background-color: #000;
  width: 1px;
  margin-left: 7px;
  top: 2px;
}
.bloc-txt span:last-child {
  font-family: 'Futura PT Book';
  text-align: left;
  text-transform: uppercase;
}
/* full pages*/
/* section princ */
.s1 {
  background-image: url('../images/back-1.png');
  background-color: #000;
}
.s1 .pays-date {
  font-family: 'Futura PT Light';
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-princ {
  height: 100%;
  padding-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.mg-auto {
  margin: auto;
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  /*width: 100%;  
    overflow: hidden;  */
  /*padding-left: 100%; */
}
.ticker-wrap .pays-date {
  /* display: block;
    white-space: nowrap;  */
  /*  padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 25s;
    animation-duration: 25s; */
}
/**
* concerne le défilement
**/
/* le block conteneur */
.like-marque {
  /* margin: 2em auto; */
  overflow: hidden;
}
/* les blocks défilants */
.like-marque [data-text] {
  white-space: nowrap;
  display: inline-block;
  min-width: 100%;
}
.like-marque [data-text]:before,
.like-marque [data-text]:after {
  content: attr(data-text) "\00A0";
  display: inline-block;
}
.like-marque [data-text]:before {
  animation: like-marque-defil 15s infinite linear;
}
@keyframes like-marque-defil {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -50%;
  }
}
.icon-down {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
}
.icon-down:hover {
  transform: translate(0px, 4px);
}
/* section black */
.posi-cont,
.posi-cont2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  max-height: 240px;
  top: 150px;
  transition: all 1s ease-in-out;
}
#fullpage .section.loaded .posi-cont,
#fullpage .section.loaded .posi-cont2 {
  top: 0;
}
#fullpage .section.leave .posi-cont,
#fullpage .section.leave .posi-cont2 {
  top: -150px;
}
.white-scring * {
  opacity: 0;
  visibility: hidden;
}
.posi-cont h3 {
  font-family: 'DIN Schablonierschrift';
  font-size: 280px;
  letter-spacing: -20px;
}
.s2 .posi-cont h3 {
  font-size: 240px;
}
.posi-cont p {
  font-size: 54px;
  line-height: 51px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.s2 .posi-cont p {
  font-size: 47px;
  line-height: 45px;
  margin-top: 34px;
}
.posi-cont {
  cursor: pointer;
}
/* section congo */
body:before {
  clear: both;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  background-size: cover;
  background-position: center;
  z-index: -1;
  background-color: #000;
}
body.s-2[data-color="black"]:before {
  background-color: #000;
}
body.s-2[data-color="black"] .s2 * {
  color: #fff!important;
}
body.bg-animation:before {
  animation: move 0.2s ease-in;
  animation-fill-mode: forwards;
}
@keyframes move {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
.txt-top {
  font-family: 'Futura PT Medium';
  font-size: 39px;
  line-height: 39px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 16px;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: left;
}
.posi-cont2 h3 {
  font-size: 340px;
  line-height: 280px;
  font-family: 'DINCond Black';
  text-transform: uppercase;
  position: relative;
  padding-top: 69px;
  cursor: pointer;
}
.posi-cont2 .text-right {
  text-align: center;
  margin-top: 79px;
  position: relative;
  padding-bottom: 50px;
}
.s4 .posi-cont2 .text-right {
  margin-top: 134px;
}
.s5 .posi-cont2 .text-right {
  margin-top: 119px;
}
.s7 .posi-cont2 .text-right {
  margin-top: 167px;
}
.s8 .posi-cont2 .text-right {
  margin-top: 94px;
}
.s9 .posi-cont2 .text-right {
  margin-top: 110px;
}
.posi-cont2 .text-right span:first-child {
  font-size: 49px;
  letter-spacing: -4px;
  line-height: 38px;
  margin-left: 4px;
}
.posi-cont2 .text-right .num {
  font-size: 100px;
  line-height: 80px;
  letter-spacing: -8px;
  font-family: 'DIN Schablonierschrift';
}
.posi-cont2 .text-right .txt-jr {
  font-size: 53px;
  line-height: 48px;
  letter-spacing: -5px;
}
.posi-cont2 .btn-pop {
  font-family: 'Futura PT Book';
  text-decoration: underline;
  font-size: 15px;
  line-height: 17px;
  bottom: 0px!important;
  left: 0;
  right: 0;
  margin: auto;
}
.btn-pop {
  position: absolute;
  right: 16px;
  bottom: 18px;
}
/* section madagascar */
body.s-3:before {
  background-image: url('../images/back-2.png');
}
.s4 h3 {
  font-size: 196px;
  line-height: 170px;
  letter-spacing: -10px;
}
/* section negeria */
body.s-4:before {
  background-image: url('../images/back-3.png');
}
.s5 h3 {
  font-size: 270px;
  line-height: 260px;
  letter-spacing: 8px;
}
.s5 .btn-pop {
  bottom: 4px;
}
/* section irak */
body.s-5:before {
  background-image: url('../images/back-4.png');
}
.s6 h3 {
  font-size: 400px;
  line-height: 284px;
  letter-spacing: 30px;
}
.s6 .txt-top {
  padding-left: 28px;
}
/* section bangla */
body.s-6:before {
  background-image: url('../images/back-5.png');
}
.s7 h3 {
  font-size: 196px;
  line-height: 170px;
  letter-spacing: -10px;
}
.s7 .txt-top {
  padding-left: 20px;
  letter-spacing: 2px;
  line-height: 16px;
}
.s7 .btn-pop {
  bottom: -38px;
}
/* section haiti */
body.s-7:before {
  background-image: url('../images/back-6.png');
}
.s8 h3 {
  font-size: 350px;
  line-height: 244px;
  letter-spacing: 28px;
}
.s8 .txt-top {
  padding-left: 28px;
}
.s8 .btn-pop {
  bottom: 0px;
}
/* section soudan */
body.s-8:before {
  background-image: url('../images/back-7.png');
}
body.s-9:before {
  background-image: url('../images/back-8.png');
  background-position: 50% 0%;
}
.s9 h3 {
  font-size: 283px;
  line-height: 204px;
  letter-spacing: 2px;
}
.s9 .txt-top {
  padding-left: 34px;
}
.s9 .btn-pop {
  bottom: -20px;
}
.s9 .sud {
  font-family: 'Futura PT Medium';
  position: absolute;
  bottom: -135px;
  right: 11px;
  letter-spacing: 4px;
  font-size: 39px;
}
/* section France */
body.s-9:before {
  background-image: url('../images/back-8.png');
}
body.s-10:before {
  background-image: url('../images/france-popup.jpg');
  background-position: top left;
}
.s10 h3 {
  font-size: 283px;
  line-height: 204px;
  letter-spacing: 2px;
}
.s10 h3:before {
  display: none !important;
}
.s10 .txt-top {
  padding-left: 34px;
}
.s10 .btn-pop {
  bottom: -20px;
}
.section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.container3 {
  max-width: 1132px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
.section-solidaire .icon-partenaire {
  padding-top: 0;
  margin-bottom: 20px;
}
.section-solidaire .icon-partenaire img {
  margin: 8px;
}
.section-solidaire {
  background-color: #000000;
  text-align: center;
}
.section-solidaire h2 {
  font-size: 49px;
  text-transform: uppercase;
  font-family: 'Futura PT Light';
  letter-spacing: 1.7px;
  line-height: 54px;
  margin-bottom: 13px;
}
.section-solidaire h2 span {
  font-family: 'Futura PT Heavy';
  letter-spacing: 4px;
}
.section-solidaire .mont {
  font-family: 'Futura PT Heavy';
  text-transform: uppercase;
  font-size: 32px;
}
/*--------------------------------------
  donation form
--------------------------------------*/
.bloc-Don .bloc-1 {
  font-family: 'Futura PT Demi';
  font-size: 19px;
  height: 86px;
  line-height: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 456px;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
}
.bloc-Don .bloc-1 p {
  color: #000000;
  line-height: initial;
  margin: 0px;
}
.bloc-Don .bloc-1 {
  font-family: 'Futura PT Demi';
  font-size: 19px;
  height: 86px;
  line-height: 86px;
  max-width: 456px;
  width: calc(50% - 102px);
  background-color: #ffffff;
  color: #000000;
  position: relative;
}
.bloc-Don .bloc-2 {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  color: #064fbc;
  font-family: 'Futura PT Medium';
  font-size: 25px;
  background-color: #ffffff;
  padding-top: 46px;
  position: relative;
  margin: 0 20px;
}
.bloc-Don .bloc-3 {
  font-family: 'Futura PT Medium';
  font-size: 17px;
  min-height: 86px;
  text-align: left;
  max-width: 456px;
  width: calc(50% - 102px);
  background-color: #064fbc;
  line-height: 22px;
  padding: 7px 0 0 12px;
  position: relative;
  height: auto;
  padding-bottom: 13px;
}
.bloc-Don .bloc-3 .bold {
  font-size: 19px;
  font-family: 'Futura PT Heavy';
}
.bloc-Don {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 18px;
}
.bloc-Don .bloc-2::after {
  position: absolute;
  content: '';
  background-color: #000000;
  width: 100%;
  height: 25px;
  bottom: 0;
  left: 0;
}
.bloc-Don .bloc-1::after {
  content: '';
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 17px solid #ffffff;
  position: absolute;
  right: -16px;
  transform: translateY(-50%);
  top: 50%;
}
.bloc-Don .bloc-3::after {
  content: '';
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 17px solid #064fbc;
  position: absolute;
  left: -16px;
  transform: translateY(-50%);
  top: 50%;
}
.btn-don {
  max-width: 252px;
  width: 100%;
  height: 44px;
  background-color: #ba006d;
  border-radius: 20px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 22px;
}
.btn-don > * {
  text-align: center;
  font-size: 17px;
  line-height: 44px;
  background: #ba006d;
  border: 0px;
}
.input-prix {
  position: relative;
}
.input-prix input {
  height: 50px;
  background-color: #efefef;
  border: 1px solid #efefef;
  padding-right: 26%;
  box-sizing: border-box;
  width: 90%;
  text-align: right;
  font-family: 'Futura PT Bold';
  font-size: 44px;
  color: #064fbc;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  line-height: 50px;
}
.input-prix .dollar {
  transform: translate(-50%, -50%);
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 44px;
  font-family: 'Futura PT Bold';
  color: #064fbc;
}
form .bloc-Don .bloc-1 span {
  color: #000;
}
.inputfield .mois {
  font-size: 25px;
  line-height: inherit;
  text-align: right;
  font-family: 'Futura PT Medium';
}
/*--------------------------------------
  MODAL
--------------------------------------*/
.modal-dialog {
  max-width: 100%;
  width: 100%;
}
.modal-content {
  border-radius: 0;
  height: 100%;
  border: 0px;
}
.close {
  left: 20px;
  position: absolute;
  top: 21px;
  opacity: 1;
  z-index: 99;
}
.container-modal {
  display: flex;
  width: 100%;
}
.right-popup {
  width: 50%;
  background: url('../images/congo-popup.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.img-resp {
  display: none;
  background-image: url('../images/congo-popup.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}
#modal2 .right-popup {
  background-image: url('../images/madagascar-popup.png');
}
#modal2 .img-resp {
  background-image: url('../images/madagascar-popup.png');
}
#modal3 .right-popup {
  background-image: url('../images/nigeria-popup.png');
}
#modal3 .img-resp {
  background-image: url('../images/nigeria-popup.png');
}
#modal4 .right-popup {
  background-image: url('../images/irak-popup.png');
}
#modal4 .img-resp {
  background-image: url('../images/irak-popup.png');
}
#modal5 .right-popup {
  background-image: url('../images/bang-popup.png');
  background-position: 15% 0%;
}
#modal5 .img-resp {
  background-image: url('../images/bang-popup.png');
}
#modal6 .right-popup {
  background-image: url('../images/haiti-popup.png');
  background-position: right;
}
#modal6 .img-resp {
  background-image: url('../images/haiti-popup.png');
}
#modal7 .right-popup {
  background-image: url('../images/soudan-popup.jpg');
}
#modal7 .img-resp {
  background-image: url('../images/soudan-popup.jpg');
}
#modal10 .right-popup {
  background-image: url('../images/france-popup.jpg');
}
#modal10 .img-resp {
  background-image: url('../images/france-popup.jpg');
}
.left-popup {
  width: 50%;
  background: #145cc4;
  padding-bottom: 74px;
  padding-top: 10px;
}
.left-popup > div {
  max-width: 593px;
  float: right;
  width: 100%;
  position: relative;
  padding-bottom: 35px;
}
.left-popup > div .cart {
  padding-top: 53px;
  display: flex;
}
.left-popup > div .cart span {
  font-family: 'Futura PT Medium';
  font-size: 19px;
  text-transform: uppercase;
  margin-left: 24px;
  margin-top: 14px;
  line-height: 20px;
}
.left-popup > div .cart span > span {
  letter-spacing: 3.1px;
  text-align: left;
  margin: 0;
}
.left-popup > div h2 {
  font-size: 152px;
  font-family: 'DINCond Black';
  position: absolute;
  right: -73px;
  top: -16px;
  text-transform: uppercase;
}
.left-popup .nbr-jr {
  display: flex;
  margin-top: 70px;
}
.left-popup .nb-jr {
  font-size: 46px;
  letter-spacing: -3px;
  font-family: 'DIN Schablonierschrift';
  margin-right: 11px;
}
.left-popup .jr-urgence {
  font-family: 'Futura PT Medium';
  font-size: 38px;
  text-transform: uppercase;
  margin-top: 13px;
}
.left-popup .info span {
  font-size: 14px;
  font-family: 'Futura PT Demi';
  text-transform: uppercase;
  width: 50%;
}
.left-popup .info span.back-blanc {
  font-size: 13px;
  font-family: 'Futura PT Book';
  text-transform: uppercase;
  background: #fff;
  width: 153px;
  display: inline-block;
  color: #145cc4;
  text-align: right;
  padding: 0 8px;
  float: right;
}
.left-popup .info {
  max-width: 415px;
}
.contexte p {
  font-size: 14px;
  font-family: 'Futura PT Demi';
  padding-right: 15px;
}
.aide h3,
.contexte h3 {
  font-size: 14px;
  font-family: 'Futura PT Demi';
  text-transform: uppercase;
}
.aide ul {
  list-style: none;
}
.aide ul li {
  font-size: 14px;
  font-family: 'Futura PT Demi';
  padding-left: 19px;
}
.aide ul li.sante {
  background: url('../images/hygiene.png');
  background-repeat: no-repeat;
  background-position: 2px 5px;
  background-size: 12px 14px;
}
.aide ul li.hygiene {
  background: url('../images/securite.png');
  background-repeat: no-repeat;
  background-position: 2px 5px;
  background-size: 12px 14px;
}
.aide ul li.securite {
  background: url('../images/sante.png');
  background-repeat: no-repeat;
  background-position: 2px 5px;
  background-size: 12px 14px;
}
.aide ul li.soin {
  background: url('../images/soin.png');
  background-repeat: no-repeat;
  background-position: 2px 2px;
  background-size: 12px 14px;
}
.aide ul li.desastres {
  background: url('../images/desastres.png');
  background-repeat: no-repeat;
  background-position: 2px 2px;
  background-size: 12px 14px;
}
.aide ul li.plaidoyer {
  background: url('../images/plaidoyer.png');
  background-repeat: no-repeat;
  background-position: 2px 2px;
  background-size: 12px 14px;
}
.aide ul li.activite {
  background: url('../images/activite.png');
  background-repeat: no-repeat;
  background-position: 2px 5px;
  background-size: 12px 14px;
}
.dons-popup {
  height: 74px;
  background-color: #ba006d;
  width: 100%;
  position: absolute;
  bottom: 21px;
}
.dons-popup .container {
  max-width: 1218px;
  display: flex;
  width: 100%;
  height: 100%;
}
.dons-popup .container p {
  font-size: 14px;
  font-family: 'Futura PT Demi';
  width: 50%;
  line-height: 16px;
  padding-top: 18px;
}
.dons-popup .container .bloc-right {
  width: 50%;
  max-width: 50%;
  justify-content: space-between;
}
.dons-popup .container .bloc-right .btn-header {
  margin-left: 15px;
}
.dons-popup .container .btn-header {
  border: 2px solid #fff;
}
#modal5.modal,
#modal6.modal,
#modal7.modal,
#modal4.modal,
#modal3.modal,
#modal2.modal,
#modal1.modal {
  padding: 0px !important;
  margin: 0px;
  z-index: 99999;
  background: #04040480;
}
.modal-dialog {
  width: 95%;
  margin: 90px auto;
}
#modal2.modal .left-popup > div .cart span {
  padding-top: 15px;
}
#modal2.modal .left-popup > div h2 {
  right: 90px;
}
#modal3.modal .left-popup > div .cart span {
  padding-top: 15px;
}
#modal3.modal .left-popup > div h2 {
  right: -40px;
  letter-spacing: 6px;
}
#modal4.modal .left-popup > div .cart span {
  padding-top: 15px;
}
#modal4.modal .left-popup > div h2 {
  right: 185px;
}
#modal5.modal .left-popup > div .cart span {
  padding-top: 15px;
}
#modal5.modal .left-popup > div h2 {
  right: -285px;
}
#modal6.modal .left-popup > div .cart span {
  padding-top: 15px;
}
#modal6.modal .left-popup > div h2 {
  right: 163px;
}
#modal7.modal .left-popup > div .cart span {
  padding-top: 15px;
}
#modal7.modal .left-popup > div h2 {
  right: -72px;
  letter-spacing: 11px;
}
#modal7.modal .left-popup > div h2 span {
  font-size: 19px;
  font-family: 'Futura PT Medium';
  position: absolute;
  bottom: -5px;
  right: 13px;
  letter-spacing: 5px;
}
#modal10.modal .left-popup > div .cart span {
  padding-top: 15px;
}
#modal10.modal .left-popup > div h2 {
  right: -40px;
  letter-spacing: 6px;
}
.modal .left-popup .nbr-jr {
  margin-top: 16px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
#fullpage .section.loading {
  background-image: none;
  background-color: #fff;
}
/* #fullpage .section *{
        transition: 1s ease-in-out; 
    }*/
#fullpage .section.section-solidaire * {
  /*transition: 0s; */
}
#fullpage .section:before {
  opacity: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 1s ease-in-out;
  z-index: -1;
}
#fullpage .section.loading:before {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.fullpage-wrapper {
  width: 100%!important;
  transform: none!important;
}
.fp-section {
  width: 100%!important;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  transition: all 1s ease-in-out;
}
.fp-section.active {
  transition: all 1s ease-in-out;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.header-fix {
  z-index: 999;
}
#modal8 {
  color: #000;
  z-index: 99999;
}
#modal8 .container-modal {
  padding: 50px 40px;
}
#modal8 .container-modal * {
  color: #000;
}
#modal8 .container-modal h2 {
  font-family: 'Futura PT Bold';
  font-size: 40px;
  color: #ba006d;
}
#modal8 .container-modal h3 {
  font-family: 'Futura PT Book';
  font-size: 27px;
}
#modal8 .container-modal h4 {
  font-family: 'Futura PT Medium';
  font-size: 20px;
}
#modal8 .container-modal p {
  font-family: 'Futura PT Demi';
  font-size: 16px;
}
#modal8 .container-modal a {
  color: #145cc4;
  font-family: 'Futura PT Demi';
  font-size: 16px;
  text-transform: lowercase;
}
#modal8 .close img {
  filter: invert(100%);
}
/*--------------------------------------
  cookie bar
--------------------------------------*/
#banner-cookies {
  padding: 0.6rem;
  background-color: #52b64e !important;
  color: #ffffff;
  position: relative;
  z-index: 999;
  width: 100%;
  font-family: 'Futura PT Demi';
  text-align: center;
}
#banner-cookies p {
  font-size: 12px;
  display: inline-block;
  margin: 0;
  padding-right: 12px;
}
#banner-cookies a {
  font-size: 13px;
  display: inline-block;
  text-decoration: underline;
  margin-right: 12px;
}
#banner-cookies button {
  background-color: #52b64e;
  border: solid 1px #FFF;
  width: 88px;
  height: 28px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Futura PT Demi';
  cursor: pointer;
}
.modal-open .section-princ {
  display: none;
}
/*modifs*/
.s2.no-active br {
  /*display: none;*/
}
#fullpage .no-active.section,
.no-active {
  background-image: inherit;
  height: 100%;
}
.no-active * {
  color: #ba006d;
}
.s2.active * {
  color: #ba006d;
}
.no-active .posi-cont,
.no-active .posi-cont2 {
  max-height: inherit;
  top: 0;
}
.no-active.s2 .posi-cont p {
  /*margin-left: 25px;
    font-size: 3vw;*/
}
#fullpage .no-active .text-right,
#fullpage .no-active .sud,
#fullpage .no-active .txt-top {
  opacity: 0;
  visibility: hidden;
}
.active-animation #fullpage .no-active.s2 .posi-cont p,
.active-animation #fullpage .no-active h3 {
  color: rgba(0, 0, 0, 0.27843137);
}
#fullpage .no-active .posi-cont2 {
  margin-top: 0;
  margin-bottom: 0;
}
/*body.s-2.active-animation.active2 #fullpage .no-active.s2 .posi-cont p,
body.s-2.active-animation.active2 #fullpage .no-active h3{
    color: rgba(255, 255, 255, 0.2784313725490196);
}*/
body.s-2.active-animation.active2 #fullpage .no-active.s2:hover .posi-cont p,
body.s-2.active-animation.active2 #fullpage .no-active:hover h3 {
  color: #fff;
}
body.s-2.active-animation #fullpage .no-active.s2 .posi-cont p,
body.s-2.active-animation #fullpage .no-active h3 {
  color: #ba006d;
}
#fullpage .s2 .posi-cont {
  padding-top: 100px;
}
#fullpage .no-active .icon-down {
  display: none;
}
#fullpage .s9.active,
#fullpage .s9.no-active {
  padding-bottom: 60px;
}
#fullpage .section.active .posi-cont,
#fullpage .section.active .posi-cont2 {
  max-height: inherit;
  top: inherit;
  height: 100%;
}
#fullpage .section.active {
  margin-bottom: 30px;
  transition: height 1s;
}
#fullpage .section.no-active {
  margin-bottom: 30px;
}
#fullpage {
  padding-bottom: 60px;
}
.posi-cont2 .text-right .num {
  min-width: 215px;
  display: inline-block;
}
.animation-back {
  cursor: pointer;
}
.animation-back .btn-pop a {
  pointer-events: none;
  display: block;
}
.color.active-animation #fullpage .no-active.s2 .posi-cont p,
.color.active-animation #fullpage .no-active h3 {
  color: #ba006d;
}
#fullpage .s2 .posi-cont:hover > * {
  color: #fff!important;
}
body.s-2-color:not(.color) #fullpage .no-active.s2 .posi-cont p,
body.s-2-color:not(.color) #fullpage .no-active h3 {
  color: rgba(255, 255, 255, 0.27843137);
}
/*--------------------------------------
  MEDIA QUIERIES
--------------------------------------*/
@media only screen and (max-width: 1300px) {
  .left-popup {
    padding-left: 20px;
    padding-right: 20px;
  }
  .left-popup > div h2 {
    font-size: 121px;
    right: -58px;
    right: -167px;
  }
  .dons-popup .container .bloc-right .btn-header {
    margin-left: 23px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 850px) and (max-height: 650px) {
  .s1 .container h1 {
    font-size: 100px;
    line-height: 52px;
    letter-spacing: -6px;
  }
  .s1 .container .text-princ {
    max-width: 556px;
    line-height: 20px;
  }
  .icon-down {
    width: 45px;
    margin: auto;
  }
  .section-solidaire h2 {
    font-size: 40px;
    line-height: 39px;
    margin-bottom: 5px;
  }
  .section-solidaire .mont {
    font-size: 30px;
  }
  .section-princ {
    display: block;
  }
  .section-princ .mg-auto {
    margin-top: 35px;
  }
  .section.s1 {
    min-height: 530px;
    position: relative;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  .left-popup > div h2 {
    right: inherit;
  }
  .modal .left-popup > div h2 {
    left: 0;
    position: relative;
  }
  .right-popup {
    background-position: 42%;
  }
}
@media only screen and (max-width: 1130px) {
  .s9 h3 {
    font-size: 245px;
  }
}
@media only screen and (max-width: 1100px) {
  .posi-cont h3 {
    font-size: 260px;
  }
  .posi-cont p {
    font-size: 52px;
    line-height: 46px;
  }
  .txt-top {
    font-size: 32px;
    line-height: 34px;
    padding-left: 20px;
    margin-bottom: -12px;
  }
  .posi-cont2 h3 {
    font-size: 324px;
    /* line-height: 280px; */
  }
  .posi-cont2 .text-right span:first-child {
    font-size: 46px;
    letter-spacing: -2px;
    line-height: 36px;
  }
  .posi-cont2 .text-right .num {
    font-size: 96px;
    line-height: 76px;
    letter-spacing: -4px;
  }
  .posi-cont2 .text-right .txt-jr {
    font-size: 52px;
    line-height: 46px;
    letter-spacing: -5px;
  }
  .s4 h3 {
    font-size: 314px;
    line-height: 268px;
    letter-spacing: 12px;
  }
  .txt-top {
    font-size: 30px;
    line-height: 32px;
  }
  .s5 h3 {
    font-size: 258px;
    line-height: 256px;
    letter-spacing: 6px;
  }
  .s6 h3 {
    font-size: 364px;
    line-height: 280px;
    letter-spacing: 30px;
  }
  .s7 h3 {
    font-size: 183px;
  }
  .s8 h3 {
    font-size: 314px;
    letter-spacing: 30px;
  }
  .s9 h3 {
    font-size: 245px;
  }
  .s9 .txt-top {
    line-height: 44px;
  }
  .s10 h3 {
    font-size: 258px;
    line-height: 256px;
    letter-spacing: 6px;
  }
  .bloc-Don .bloc-1,
  .bloc-Don .bloc-3 {
    font-size: 16px;
  }
  .container4 .item p {
    font-size: 22px;
  }
  .left-popup > div h2 {
    font-size: 121px;
    right: -115px;
  }
  .s2 .posi-cont h3 {
    font-size: 210px;
  }
  .input-prix input {
    font-size: 32px;
  }
  .input-prix .dollar {
    right: 5px;
    font-size: 33px;
  }
  .animation-back .btn-pop a {
    pointer-events: inherit;
  }
  .posi-cont2 .text-right .num {
    min-width: 230px;
  }
}
@media only screen and (max-width: 1025px) {
  #fullpage .no-active .container,
  #fullpage .no-active {
    height: auto!important;
  }
  .posi-cont,
  .posi-cont2 {
    transition: inherit;
  }
}
@media only screen and (max-width: 1024px) {
  .bloc-right {
    max-width: 510px;
  }
  .bloc-txt span:first-child {
    margin-left: 12px;
  }
  .bloc-txt {
    max-width: 230px;
  }
  .btn-header {
    max-width: 200px;
  }
  .btn-header a {
    font-size: 13px;
  }
  .bloc-txt span {
    font-size: 11px;
  }
  .s1 .container h1 span {
    font-size: 58px;
  }
  .s1 .container h1 {
    font-size: 132px;
    line-height: 58px;
  }
  .s1 .container .text-princ {
    font-size: 14px;
    margin-top: 14px;
    margin-bottom: 18px;
  }
  .posi-cont p {
    font-size: 42px;
    line-height: 40px;
  }
  .s2 .posi-cont h3 {
    font-size: 200px;
    letter-spacing: -9px;
  }
  .posi-cont p {
    font-size: 42px;
    line-height: 40px;
  }
  .posi-cont2 .text-right .txt-jr {
    font-size: 48px;
    line-height: 42px;
  }
  .posi-cont2 .text-right .num {
    font-size: 88px;
    line-height: 76px;
  }
  .posi-cont2 .text-right span:first-child {
    font-size: 44px;
  }
  .posi-cont2 h3 {
    font-size: 230px;
    line-height: 200px;
  }
  .btn-pop {
    bottom: 24px;
    left: 0px;
    right: 0px;
  }
  .btn-pop {
    bottom: -14px;
  }
  .s4 h3 {
    font-size: 214px;
    line-height: 250px;
    letter-spacing: 11px;
  }
  .s4 .txt-top {
    margin-bottom: -36px;
  }
  .s5 h3 {
    font-size: 178px;
    line-height: 246px;
  }
  .s5 .txt-top {
    margin-bottom: -46px;
  }
  .s6 h3 {
    font-size: 235px;
    line-height: 198px;
  }
  .s7 h3 {
    font-size: 136px;
    line-height: 100px;
  }
  .s8 h3 {
    font-size: 198px;
    line-height: 174px;
  }
  .s8 .btn-pop {
    bottom: -26px;
    right: 0px;
    left: 0px;
  }
  .s8 .txt-top {
    padding-left: 10px;
  }
  .s9 h3 {
    font-size: 182px;
    line-height: 100px;
  }
  .s9 .btn-pop {
    right: 0px;
    bottom: -38px;
    left: 0px;
  }
  .s9 .sud {
    bottom: -104px;
  }
  .s10 h3 {
    font-size: 178px;
    line-height: 246px;
  }
  .section-solidaire h2 {
    font-size: 40px;
  }
  .section-solidaire .mont {
    font-size: 26px;
  }
  .bloc-Don .bloc-2 {
    width: 134px;
    height: 134px;
    padding-top: 32px;
  }
  .input-prix input {
    font-size: 44px;
    width: 84%;
    line-height: 42px;
  }
  .input-prix .dollar {
    right: 2%;
    font-size: 44px;
  }
  .inputfield .mois {
    font-size: 20px;
  }
  .posi-cont2 .text-right {
    text-align: center;
  }
  .no-active.s2 .posi-cont h3 {
    line-height: 167px;
  }
  .section.no-active .posi-cont2 h3 {
    line-height: 215px;
  }
  #fullpage .s2 .posi-cont {
    padding-top: 0px;
  }
  /* .s-2.active2 .s2.no-active.active-with-scroll *,
    .s-2 .s2.active.active-with-scroll *{
        color: #fff!important;
    }*/
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .posi-cont,
  .posi-cont2 {
    max-height: inherit;
  }
  body.s-6:before {
    background-position: 73%;
  }
  body.s-5:before {
    background-position: 59%;
  }
  body.s-8:before {
    background-position: 30%;
  }
  body.s-9:before {
    background-position: 15%;
  }
  #fullpage .active .posi-cont,
  #fullpage .no-active .posi-cont {
    padding-top: 70px;
  }
  .s5 .txt-top {
    margin-top: 64px;
  }
  .s6 .txt-top {
    margin-top: 25px;
  }
  .s7 .txt-top {
    margin-top: 30px;
  }
  .s8 .txt-top {
    margin-top: 15px;
  }
  .s4 .txt-top {
    margin-top: 45px;
  }
  .s10 .txt-top {
    margin-top: 64px;
  }
  .posi-cont,
  .posi-cont2 {
    justify-content: space-around;
  }
  .section.s1 {
    background-position: 70% center;
  }
  .input-prix input {
    line-height: 30px;
    font-size: 31px;
  }
  .input-prix .dollar {
    right: 5%;
    font-size: 31px;
  }
  .img-resp {
    background-position: center 0%;
  }
  #modal7 .img-resp {
    background-position: center center;
  }
}
@media only screen and (max-width: 1023px) {
  .posi-cont,
  .posi-cont2 {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .s2 .posi-cont p {
    text-align: center;
  }
  .s4 .posi-cont,
  .s4 .posi-cont2 {
    max-height: inherit;
  }
  #fullpage .section.active .container {
    padding-top: inherit;
  }
  #fullpage .section.active.s2 .container {
    padding-top: 0;
  }
  .posi-cont2 .text-right .num {
    min-width: inherit;
  }
  .img-resp,
  .container-modal {
    display: block;
  }
  .left-popup {
    width: 100%;
    padding-top: 10px;
  }
  .right-popup {
    display: none;
  }
  .dons-popup .container {
    display: block;
  }
  .dons-popup .container .bloc-right,
  .dons-popup .container p {
    width: 100%;
    display: block;
    max-width: 100%;
  }
  .dons-popup .container .bloc-right .btn-header {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .dons-popup .btn-header a .d-b-m {
    display: none;
  }
  .dons-popup .bloc-txt {
    max-width: 100%;
    margin-top: 12px;
  }
  .dons-popup .btn-header a {
    padding-top: 13px;
  }
  .dons-popup .bloc-txt span {
    width: 50%;
  }
  .dons-popup .bloc-txt span br {
    display: none;
  }
  .dons-popup .bloc-txt span:first-child::after {
    position: absolute;
    height: calc(100% - 4px);
    content: '';
    background-color: #000;
    width: 1px;
    margin-left: 7px;
    top: 2px;
  }
  .d-n {
    display: none;
  }
  .bloc-Don .bloc-3 {
    line-height: 20px;
    padding: 8px 0 0 9px;
  }
  .img-resp {
    height: 300px;
  }
  .left-popup {
    padding-bottom: 0;
  }
  .left-popup > div {
    float: inherit;
    width: 100%;
    max-width: 100%;
  }
  .left-popup > div h2 {
    left: 0px;
    right: inherit;
    top: -87px;
  }
  .left-popup > div .cart {
    position: relative;
    top: -170px;
  }
  .modal .left-popup .nbr-jr {
    margin-top: -62px;
  }
  .left-popup .info {
    max-width: 100%;
  }
  .contexte p br {
    display: none;
  }
  .dons-popup {
    height: auto;
    background-color: #ba006d;
    width: 100%;
    position: relative;
    bottom: 0;
    padding-bottom: 20px;
  }
  .modal-dialog {
    width: 100%;
    margin: 0px;
  }
  #modal7.modal .left-popup > div h2 {
    max-width: 423px;
  }
  #modal7.modal .left-popup .nbr-jr {
    margin-top: -52px;
  }
  .s1 .container .text-princ {
    font-size: 17px;
    max-width: 600px;
  }
}
@media only screen and (max-width: 768px) {
  .d-n-d {
    display: block;
  }
  #fullpage .no-active .text-right,
  #fullpage .no-active .sud,
  #fullpage .no-active .txt-top {
    display: none;
  }
  #fullpage .active .icon-down {
    display: block;
  }
  #fullpage .section {
    position: relative;
  }
  #fullpage .section.active .posi-cont,
  #fullpage .section.active .posi-cont2 {
    max-height: inherit;
    top: 22%;
    height: auto;
  }
  body.s-2:before {
    background: #000;
  }
  #fullpage .s2 .posi-cont {
    padding-top: 86px;
  }
  .posi-cont2 .btn-pop {
    left: 0;
    right: 0;
  }
  #fullpage .s9.active,
  #fullpage .s9.no-active {
    padding-bottom: 0px;
  }
  #fullpage .section.no-active.s3 {
    margin-top: 40px;
  }
  #fullpage .section.active .posi-cont2 {
    min-height: 335px;
  }
  .section:not(.s9) .posi-cont2 .text-right {
    margin-top: 0!important;
  }
  .s9 .posi-cont2 .text-right {
    margin-top: 90px;
  }
  .s2 .posi-cont p br {
    display: none;
  }
  .no-active .posi-cont2 h3 {
    padding-top: 0;
  }
  .s7 h3 {
    letter-spacing: -3px;
  }
  .left-popup {
    padding-top: 0;
  }
  .s1 .mg-auto {
    margin: 12px auto;
  }
  .s1 .container h1 {
    /*margin-bottom: 55%;*/
    margin-bottom: 260px;
  }
  body.s-2.active-animation #fullpage .no-active:not(.s2) h3:after {
    content: '+';
    color: #000;
    background: #ba006d;
    position: absolute;
    font-family: 'Futura PT Bold';
    border-radius: 50%;
    font-size: 39px;
    text-align: center;
    height: 30px;
    width: 30px;
    line-height: 32px;
    letter-spacing: 0;
    cursor: pointer;
    border: none;
  }
  body.s-2.active-animation.active2 #fullpage .no-active.s2 .posi-cont p,
  body.s-2.active-animation.active2 #fullpage .no-active h3 {
    color: rgba(186, 0, 109, 0.4);
  }
  .active-animation #fullpage .no-active:not(.s2) h3 {
    width: 100%;
    /* box-sizing: content-box;*/
  }
  #fullpage .section.no-active {
    margin-bottom: 16px;
  }
  body.s-2.active-animation.active2 #fullpage .no-active h3:after,
  .active-animation #fullpage .no-active:not(.s2) h3:after {
    content: '+';
    color: rgba(186, 0, 109, 0.4);
    border: 3px solid rgba(186, 0, 109, 0.4);
    position: absolute;
    font-family: 'Futura PT Bold';
    border-radius: 50%;
    font-size: 39px;
    text-align: center;
    right: 0;
    height: 30px;
    width: 30px;
    line-height: 25px;
    letter-spacing: 0;
    cursor: pointer;
    background: none;
  }
  .active-animation #fullpage .no-active.s3 h3:after {
    bottom: -33px;
  }
  .active-animation #fullpage .no-active.s4 h3:after {
    bottom: -20px;
  }
  .active-animation #fullpage .no-active.s5 h3:after {
    bottom: -10px;
  }
  .active-animation #fullpage .no-active.s6 h3:after {
    bottom: -31px;
  }
  .active-animation #fullpage .no-active.s7 h3:after {
    bottom: 3px;
  }
  .active-animation #fullpage .no-active.s8 h3:after {
    bottom: -24px;
  }
  .active-animation #fullpage .no-active.s9 h3:after {
    bottom: -10px;
  }
  .active-animation #fullpage .no-active.s10 h3:after {
    bottom: -10px;
  }
  .bloc-txt span:last-child {
    font-family: 'Futura PT Demi';
  }
  body.s-2-color:not(.color) #fullpage .no-active.s2 .posi-cont p,
  body.s-2-color:not(.color) #fullpage .no-active h3,
  .active-animation #fullpage .no-active.s2 .posi-cont p,
  .active-animation #fullpage .no-active h3 {
    color: rgba(186, 0, 109, 0.4);
  }
  .groupe {
    position: absolute;
    bottom: 125px;
    left: 0;
    right: 0;
    padding-left: 19px;
    padding-right: 19px;
  }
  .s-2-color .s2.active * {
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .bloc-left {
    max-width: 100px;
  }
  .bloc-left .logo img {
    width: 100%;
  }
  .d-n-m {
    display: none;
  }
  .d-b-m {
    display: block;
  }
  .bloc-right {
    max-width: 320px;
  }
  .bloc-txt {
    max-width: 186px;
  }
  .btn-header {
    max-width: 120px;
  }
  header .bloc-txt span:first-child::after {
    display: none;
  }
  header .bloc-txt {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 7px;
  }
  .btn-header a {
    font-size: 12px;
    line-height: 16px;
    display: inherit;
    padding-top: 6px;
  }
  .section-princ {
    padding-top: 97px;
  }
  .s1 {
    background-image: url('../images/back-1-m.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
  }
  .s1 .container h1 {
    font-size: 100px;
    line-height: 58px;
    letter-spacing: -8px;
    /*margin-bottom: 194px;*/
  }
  .s1 .container h1 span {
    font-size: 33px;
  }
  .mg-auto {
    padding: 16px 34px;
    margin: 0;
  }
  .s1 .container .text-princ {
    font-size: 15px;
    max-width: 100%;
    line-height: 17px;
  }
  .s1 .container .btn-prn a {
    font-size: 15px;
    font-family: 'Futura PT Bold';
  }
  .posi-cont h3 {
    letter-spacing: -8px;
    font-size: 210px;
  }
  .container {
    width: 100%;
  }
  .txt-top {
    padding-left: 30px;
  }
  .posi-cont2 h3 {
    margin-bottom: 54px;
  }
  .posi-cont2 .text-right span:first-child {
    font-size: 60px;
  }
  .btn-pop {
    right: 0;
    position: relative;
  }
  .posi-cont2 .text-right .num {
    font-size: 96px;
    line-height: 84px;
    letter-spacing: normal;
  }
  .posi-cont2 .text-right .txt-jr {
    font-size: 50px;
    line-height: 42px;
    letter-spacing: -1px;
  }
  .posi-cont2 .btn-pop {
    font-size: 17px;
    line-height: 20px;
    margin-top: 10px;
    position: relative;
    bottom: 0;
  }
  .s5 h3 {
    line-height: 200px;
  }
  .s5 .txt-top {
    margin-bottom: -26px;
    font-size: 34px;
    padding-left: 19px;
  }
  .s6 .txt-top {
    padding-left: 34px;
  }
  .s6 .btn-pop {
    right: 0;
  }
  .s7 h3 {
    line-height: 160px;
  }
  .s8 .txt-top {
    padding-left: 32px;
  }
  .s8 .btn-pop {
    right: 0;
  }
  .s9 h3 {
    line-height: 160px;
  }
  .s9 .btn-pop {
    right: 0px;
    /*margin-bottom: 88px;*/
    margin-bottom: 40px;
  }
  .s9 .sud {
    bottom: 0;
    top: 104px;
    right: 4px;
  }
  .s9 .txt-top {
    margin-top: 40px;
  }
  .s10 h3 {
    line-height: 200px;
  }
  .s10 .txt-top {
    margin-bottom: -26px;
    font-size: 34px;
    padding-left: 19px;
  }
  .section-solidaire h2 {
    margin-bottom: 10px;
    /*font-size: 30px;
        line-height: 30px;*/
    font-size: 23px;
    line-height: 22px;
  }
  .bloc-Don {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
  }
  .bloc-Don .bloc-1 {
    position: absolute;
    top: 115px;
    background-color: transparent;
    color: #064fbc;
    z-index: 1;
    height: inherit;
    line-height: 16px;
    font-family: 'Futura PT Medium';
    font-size: 20px;
    line-height: 20px;
    width: 100%;
  }
  .bloc-Don .bloc-1::after {
    display: none;
  }
  .bloc-Don .bloc-2 {
    width: 190px;
    height: 190px;
    padding-top: 12px;
  }
  .txt-don {
    font-family: 'Futura PT Demi';
    font-size: 24px;
  }
  .input-prix input {
    font-size: 30px;
    width: 66%;
    padding-right: 20%;
  }
  .input-prix .dollar {
    right: 15%;
    font-size: 30px;
  }
  .bloc-Don .bloc-3::after {
    display: none;
  }
  .bloc-Don .bloc-3 {
    /*line-height: 20px;*/
    padding: 0px;
    background-color: transparent;
    text-align: center;
    font-size: 16px;
    /*margin-bottom: -8px;*/
    width: 100%;
    margin-bottom: -20px;
    line-height: 17px;
    margin-top: -15px;
  }
  .bloc-Don .bloc-3 .book {
    font-family: 'Futura PT Book';
    font-size: 14px;
  }
  .container4 h2 {
    font-family: 'Futura PT Bold';
  }
  .container4 .item {
    width: 100%;
    display: block;
    height: auto;
    margin-bottom: 43px;
  }
  .container4 .item:last-child {
    margin-bottom: 0px;
  }
  .item-soutien {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .container4 .item p {
    font-size: 20px;
    min-height: inherit;
  }
  .container4 .item-1 {
    margin-bottom: 30px;
  }
  .section-soutien2 .item-3 {
    width: 100%;
  }
  h2.title-social {
    font-size: 38px;
    line-height: 38px;
  }
  .reseau-btn .reseau-soc {
    margin-bottom: 20px;
  }
  .reseau-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
  }
  body.s-3:before {
    background-image: url('../images/back-2-m.png');
  }
  body.s-4:before {
    background-image: url('../images/back-3-m.png');
  }
  body.s-5:before {
    background-image: url('../images/back-4-m.png');
  }
  body.s-6:before {
    background-image: url('../images/back-5-m.png');
  }
  body.s-7:before {
    background-image: url('../images/back-6-m.png');
  }
  body.s-8:before {
    background-image: url('../images/back-7-m.png');
  }
  body.s-9:before {
    background-image: url('../images/back-8-m.png');
  }
  #fullpage .s3,
  #fullpage .s4,
  #fullpage .s5,
  #fullpage .s6,
  #fullpage .s7,
  #fullpage .s8,
  #fullpage .s9 {
    background-size: cover;
    background-repeat: no-repeat;
  }
  .s1 .container h1 {
    font-size: 74px;
    line-height: 30px;
    letter-spacing: -6px;
  }
  .s1 .pays-date {
    font-size: 12px;
  }
  .icon-down {
    bottom: 12px;
  }
  .s2 .posi-cont h3 {
    font-size: 153px;
  }
  .posi-cont p {
    font-size: 51px;
    line-height: 53px;
    text-align: center;
  }
  #fullpage .section.s2 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .posi-cont2 h3 {
    font-size: 148px;
  }
  .txt-top {
    font-size: 36px;
  }
  .posi-cont2 .text-right span:first-child {
    font-size: 49px;
  }
  .posi-cont2 .text-right .num {
    font-size: 100px;
    letter-spacing: -7px;
    /*text-indent: -7px;*/
    margin-left: -7px;
  }
  .posi-cont2 .text-right .txt-jr {
    font-size: 53px;
    margin-top: 5px;
    display: block;
  }
  .posi-cont2 .btn-pop {
    font-size: 21px;
    line-height: 23px;
  }
  .posi-cont2 h3 {
    margin-bottom: 21px;
  }
  .section .txt-top {
    max-width: 349px;
    margin: 0 auto -31px;
    padding-left: 0;
  }
  #fullpage .s3 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section .posi-cont2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section.s3 .txt-top {
    left: 5px;
  }
  .section.s4 .txt-top {
    top: 50px;
  }
  .section.s5 .txt-top {
    top: 33px;
  }
  .section.s6 .txt-top {
    top: -21px;
    left: 6px;
  }
  .section.s7 .txt-top {
    top: 22px;
    left: 3px;
  }
  .section.s8 .txt-top {
    top: -3px;
    left: 6px;
  }
  .section.s9 .txt-top {
    top: -33px;
    left: 6px;
  }
  .section.s9 .posi-cont2 .text-right {
    margin-top: 40px;
  }
  .section-solidaire .mont {
    /*font-size: 24px; */
    font-size: 21px;
  }
  .bloc-Don .bloc-1,
  .inputfield .mois {
    font-size: 18px;
  }
  .section-solidaire .icon-partenaire {
    /*margin-bottom: 10px;*/
    margin-bottom: 0;
    padding-top: 94px;
  }
  .bloc-Don .btn-don {
    margin-bottom: 30px;
  }
  .item-soutien {
    display: block;
    width: 100%;
    padding-bottom: 36px;
  }
  .section h3 {
    letter-spacing: 0px;
  }
  .s4 .posi-cont2 h3 {
    font-size: 138px;
  }
  .s5 .posi-cont2 h3 {
    font-size: 115px;
  }
  .s6 .posi-cont2 h3 {
    font-size: 172px;
    letter-spacing: 15px;
  }
  .s7 .posi-cont2 h3 {
    font-size: 83px;
    letter-spacing: -5px;
  }
  .s8 .posi-cont2 h3 {
    font-size: 150px;
    letter-spacing: 13px;
  }
  .s9 .posi-cont2 h3 {
    font-size: 113px;
    letter-spacing: 2px;
  }
  .s10 .posi-cont2 h3 {
    font-size: 115px;
    letter-spacing: 2px;
  }
  .posi-cont2 h3 {
    padding-top: 30px;
  }
  .left-popup > div .cart span {
    font-size: 16px;
  }
  .left-popup > div h2 {
    font-size: 132px;
  }
  .left-popup .jr-urgence {
    font-size: 31px;
  }
  .left-popup .nb-jr {
    font-size: 37px;
  }
  .aide h3,
  .contexte h3,
  .left-popup .info span.back-blanc,
  .left-popup .info span {
    font-size: 13px;
  }
  .aide ul li {
    font-size: 12px;
  }
  .left-popup .aide ul li {
    background-position: 2px 1px;
  }
  .dons-popup .container p {
    font-size: 13px;
    padding-bottom: 20px;
  }
  .dons-popup .btn-header a {
    font-size: 16px;
  }
  .dons-popup .bloc-txt span {
    font-size: 12px;
  }
  .left-popup > div h2 {
    top: -92px;
  }
  .left-popup > div .cart {
    top: -180px;
  }
  .left-popup .nbr-jr {
    margin-top: -68px;
  }
  .left-popup .info {
    margin-top: 15px;
  }
  #modal5 .left-popup > div h2 {
    font-size: 103px;
    top: -53px;
    letter-spacing: -3px;
  }
  #modal5 .left-popup > div .cart {
    top: -168px;
  }
  #modal5 .left-popup .nbr-jr {
    margin-top: -52px;
  }
  #modal7.modal .left-popup > div h2 {
    max-width: 454px;
  }
  .modal .left-popup .nbr-jr {
    margin-top: -64px;
  }
  .section.s3 .posi-cont2 h3 {
    line-height: 200px;
  }
  .s2 .posi-cont h3 {
    font-size: 100px;
  }
  #nbrPersonnes {
    color: #064fbc;
  }
  .section.s1 .container {
    margin-top: inherit;
    position: static;
    bottom: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .s1 .container h1 {
    margin-bottom: 210px;
  }
  #modal5 .left-popup > div h2 {
    font-size: 77px;
  }
  #modal5 .left-popup .nbr-jr {
    margin-top: -75px;
  }
  .dons-popup .bloc-txt span:last-child {
    text-transform: uppercase;
    /*padding-left: 12px;*/
  }
  #modal7.modal .left-popup > div h2 {
    letter-spacing: -4px;
    max-width: 380px;
  }
  .section.no-active .posi-cont2 h3 {
    line-height: 135px;
  }
  .s2 .posi-cont h3 {
    line-height: 50px;
  }
  .no-active.section.s9 .posi-cont2 h3 {
    top: inherit;
  }
  .section.active .posi-cont {
    max-height: 282px;
  }
  .no-active.s2 .posi-cont h3 {
    line-height: 50px;
  }
  #fullpage .section.active {
    position: relative;
  }
  #fullpage .section.active .posi-cont2 h3 {
    margin-top: 0px;
    line-height: inherit;
    padding-top: 0px;
  }
  #fullpage .section.no-active.s3 {
    margin-top: 30px;
  }
  #fullpage .section.active.s3 {
    margin-top: 30px;
  }
  #fullpage .section.active:not(.s2) {
    min-height: 350px;
  }
  .posi-cont2 .text-right {
    padding-bottom: 0px;
  }
  .posi-cont2 h3 {
    margin-bottom: 0;
  }
  #fullpage .section.active .posi-cont2 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .section.no-active .posi-cont2 h3 {
    margin-top: 0px;
    line-height: 150px;
  }
  .section .txt-top {
    position: static;
    display: block;
    line-height: 32px;
  }
  #fullpage {
    padding-bottom: 30px;
  }
  .section.s7 .txt-top {
    margin-bottom: -9px;
  }
  #fullpage .section.active {
    margin-bottom: 0px;
  }
  #fullpage .section.no-active {
    margin-bottom: 0;
  }
  .section:not(.s9):not(.s8) .posi-cont2 .text-right {
    margin-top: -30px !important;
  }
  #fullpage .section.active,
  #fullpage .section.no-active.s2,
  #fullpage .section.no-active.s4 {
    margin-top: 25px;
  }
  .s9 .sud {
    top: 127px;
  }
  .s7.active .posi-cont2 .text-right {
    margin-bottom: 15px;
  }
  #banner-cookies {
    position: fixed;
    z-index: 99999;
    bottom: 0;
  }
  #fullpage .section.active.s7 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 460px) {
  .container-header {
    width: calc(100% - 20px);
  }
  .bloc-right {
    max-width: 285px;
  }
  .btn-header {
    max-width: 100px;
    border-radius: 18px;
  }
  .btn-header {
    max-width: 100px;
    border-radius: 18px;
  }
  .bloc-left {
    max-width: 67px;
  }
  .bloc-txt span:first-child {
    margin: 0px;
  }
  .bloc-txt span {
    font-size: 10px;
  }
  .btn-header {
    max-width: 84px;
  }
  .btn-header a {
    font-size: 11px;
    line-height: 13px;
  }
  .bloc-txt span:first-child {
    margin: 0px;
  }
  .bloc-txt span {
    font-size: 12px;
    padding-left: 2px;
    padding-right: 2px;
    text-align: center;
  }
  .bloc-txt span:last-child {
    text-transform: lowercase;
  }
  .bloc-txt {
    max-width: 180px;
  }
  .btn-header {
    min-width: 99px;
  }
  .mg-auto {
    padding: 16px 19px;
  }
  .btn-header a {
    padding-top: 8px;
  }
  #modal7.modal .left-popup > div h2 {
    max-width: 303px;
  }
  .dons-popup .bloc-txt span:last-child {
    padding-left: 6px;
  }
  .bloc-txt span:first-child {
    padding-right: 6px;
  }
  .dons-popup .bloc-txt span br {
    display: block;
  }
  .dons-popup .bloc-txt span:first-child::after {
    right: 0px;
  }
}
@media only screen and (max-width: 414px) {
  .s1 .container h1 {
    margin-bottom: 233px;
    line-height: 28px;
    position: relative;
  }
  body.s-2.active-animation #fullpage .no-active h3 {
    width: 100%;
    /*box-sizing: content-box;*/
  }
  .section .posi-cont2 {
    padding-left: 0px;
    padding-right: 0px;
  }
  #fullpage .s3 .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  #fullpage .s3 .container h3 {
    font-size: 140px;
  }
  .s7 .posi-cont2 h3 {
    font-size: 80px;
  }
  .s6 .posi-cont2 h3 {
    font-size: 166px;
  }
  .posi-cont h3 {
    font-size: 34vw;
    letter-spacing: -4px;
  }
  .posi-cont p {
    font-size: 13vw;
  }
  #modal5 .left-popup > div h2 {
    font-size: 65px;
    top: -67px;
  }
  .dons-popup .bloc-txt span br {
    display: block;
  }
  .s4 h3 {
    line-height: 200px;
  }
  .section.s9 .posi-cont2 .text-right {
    margin-top: 50px;
  }
  .section.s9 .posi-cont2 h3 {
    position: relative;
    top: 30px;
  }
  .section-solidaire h2 {
    margin-top: 0px;
  }
  .bloc-Don {
    margin-top: 5px;
  }
  .inputfield .mois {
    position: static;
    top: -4px;
    color: #064fbc;
    display: block;
    text-align: center;
    margin-top: 4px;
  }
  .input-prix input {
    margin-top: -11px;
  }
  .section-solidaire h2 {
    padding-top: 16px;
  }
  .posi-cont2 .text-right span:first-child {
    font-size: 30px;
  }
  .posi-cont2 .text-right .num {
    font-size: 70px;
  }
  .posi-cont2 .text-right .txt-jr {
    font-size: 30px;
    margin-top: 0px;
  }
  .posi-cont2 .btn-pop {
    font-size: 16px;
    line-height: 17px;
  }
  .section.s3 .posi-cont2 h3 {
    line-height: 170px;
  }
  .posi-cont2 .text-right {
    margin-top: -30px;
  }
  .mg-auto {
    padding: 8px 19px;
  }
  .posi-cont2 h3 {
    padding-top: 10px;
  }
  .posi-cont2 .text-right .num {
    line-height: 52px;
  }
  .s7 .posi-cont2 .text-right .num {
    margin-left: -9px;
  }
  .posi-cont2 .btn-pop {
    margin-top: 2px;
  }
  .s4 .posi-cont2 .text-right {
    margin-top: -56px;
  }
  .section.s5 .txt-top {
    top: 25px;
  }
  .section.s5 .posi-cont2 .text-right {
    margin-top: -64px;
  }
  .s6 h3 {
    font-size: 235px;
    line-height: 154px;
  }
  .s9 h3 {
    line-height: 95px;
  }
  .section.s8 .txt-top {
    top: 28px;
  }
  .mg-auto {
    padding: 0px 19px 0;
  }
  .left-popup > div h2 {
    font-size: 103px;
  }
  #modal3.modal .left-popup > div h2 {
    right: -40px;
    letter-spacing: -3px;
  }
  #modal7.modal .left-popup > div h2 {
    max-width: 301px;
  }
  .s2 .posi-cont p {
    font-size: 37px;
    line-height: 40px;
    margin-top: 19px;
  }
  .section.s3 .txt-top {
    top: -45px;
  }
  .section.s3 .posi-cont2 h3 {
    line-height: 130px;
  }
  .s4 .posi-cont2 .btn-pop {
    margin-top: 0px;
    position: static;
  }
  .s4 .posi-cont2 .text-right {
    padding-bottom: 0;
  }
  .section.s4 .txt-top {
    top: 22px;
  }
  .s5 .posi-cont2 {
    max-height: inherit;
    margin-top: 54px;
  }
  .section.s6 .txt-top {
    top: -12px;
  }
  .section.s6 .posi-cont2 {
    max-height: inherit;
    margin-top: 69px;
  }
  .s7 .posi-cont2 .text-right {
    margin-top: 0;
  }
  .section.s7 .posi-cont2 {
    max-height: inherit;
  }
  .s7 .posi-cont2 h3 {
    margin-bottom: -7px;
    margin-top: 90px;
  }
  .s7.no-active .posi-cont2 h3 {
    margin-bottom: 0;
    margin-top: 0px;
  }
  .section.s7 .txt-top {
    top: 16px;
  }
  .s8 .posi-cont2 .text-right {
    margin-top: 0;
  }
  .section.s8 .txt-top {
    top: 7px;
  }
  .s9 .sud {
    font-size: 28px;
  }
  .section.s8 .posi-cont2,
  .section.s9 .posi-cont2 {
    max-height: inherit;
    margin-top: 60px;
  }
  .section.s8 .posi-cont2 h3 {
    margin-bottom: -8px;
  }
  .s9 .posi-cont2 .text-right {
    padding-bottom: 0;
    margin-top: 94px;
  }
  .section-solidaire h2 {
    margin-bottom: 0px;
    font-size: 21px;
    line-height: 21px;
  }
  .section-solidaire form h2 {
    padding-top: 2px;
  }
  .bloc-Don .bloc-1 {
    line-height: 19px;
  }
  .txt-don {
    font-size: 18px;
  }
  .section-solidaire h2 {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 15px;
  }
  .section-solidaire .mont {
    font-size: 16px;
  }
  .posi-cont2 .text-right span:first-child {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 375px) {
  .btn-header a,
  .bloc-txt span {
    font-size: 12px;
  }
  .btn-header {
    min-width: 80px;
    max-width: 93px;
  }
  .bloc-txt {
    max-width: 177px;
  }
  .bloc-right {
    max-width: 276px;
  }
  .s1 .container h1 {
    font-size: 19vw;
  }
  .s1 .container h1 span {
    font-size: 8vw;
  }
  .btn-header a {
    padding-top: 10px;
  }
  .s1 .container .btn-prn a {
    font-size: 14px;
  }
  .img-resp {
    height: 190px;
  }
  .left-popup > div h2 {
    letter-spacing: -1px;
  }
  .left-popup {
    padding-left: 15px;
    padding-right: 15px;
  }
  .left-popup .info span.back-blanc {
    width: 120px;
  }
  .left-popup .jr-urgence {
    font-size: 24px;
  }
  .left-popup .nb-jr {
    font-size: 34px;
  }
  .mg-auto {
    padding: 0px 19px 0;
  }
  .section-princ {
    padding-top: 97px;
  }
  .section.s1 .container h1 {
    margin-bottom: 200px;
  }
}
@media only screen and (max-width: 400px) {
  .s1 .container .btn-prn a {
    font-size: 12px;
  }
  .s3 .posi-cont2 h3 {
    font-size: 38vw;
  }
  .s4 .posi-cont2 h3 {
    font-size: 18vw !important;
  }
  .s5 .posi-cont2 h3 {
    font-size: 31vw;
  }
  .s6 .posi-cont2 h3 {
    font-size: 45vw;
  }
  .s7 .posi-cont2 h3 {
    font-size: 22vw;
  }
  .s8 .posi-cont2 h3 {
    font-size: 40vw;
  }
  .s9 .posi-cont2 h3 {
    font-size: 30vw;
  }
  .s3 .txt-top {
    font-size: 31px;
  }
  .s10 .posi-cont2 h3 {
    font-size: 31vw;
  }
  .section-solidaire .mont {
    font-size: 23px;
  }
  .left-popup > div h2 {
    font-size: 111px;
  }
  #modal7.modal .left-popup > div h2 {
    font-size: 103px;
    max-width: 295px;
  }
  .s1 .container .btn-prn a {
    line-height: 38px;
  }
  .s1 .container .btn-prn {
    height: 38px;
  }
  #modal8 .container-modal {
    padding: 50px 15px;
  }
}
@media only screen and (max-width: 366px) {
  .btn-header a,
  .bloc-txt span {
    font-size: 11px;
  }
  .bloc-txt {
    max-width: 160px;
  }
  .btn-header {
    max-width: 87px;
  }
  .bloc-right {
    max-width: 252px;
  }
  .btn-don {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 340px) {
  .s1 .container .text-princ {
    font-size: 13px;
  }
  .s1 .container h1 {
    margin-bottom: 110px;
  }
  .header-fix,
  #fullpage {
    min-width: 320px;
  }
  .posi-cont p {
    line-height: 45px;
  }
  .posi-cont2 h3 {
    font-size: 37vw;
  }
  #fullpage .section.active .posi-cont,
  #fullpage .section.active .posi-cont2 {
    top: 21%;
  }
  .section.s1 .container h1 {
    margin-bottom: 113px;
  }
  #fullpage .s3 .container h3 {
    font-size: 120px;
  }
  .btn-header a,
  .bloc-txt span {
    font-size: 10px;
  }
  .bloc-txt {
    max-width: 147px;
  }
  .btn-header {
    max-width: 76px;
    min-width: 76px;
  }
  .bloc-right {
    max-width: 228px;
  }
}
@media only screen and (max-width: 768px) and (max-height: 670px) {
  .s1 .container h1 {
    margin-bottom: 160px;
  }
}
@media only screen and (max-width: 500px) and (min-height: 568px) {
  /*.s1 .container.mg-auto{
        position: absolute;
        bottom: 85px;
    }*/
  .s1 {
    position: relative;
  }
  .section-solidaire h2 {
    font-size: 21px;
    line-height: 21px;
  }
  .section-solidaire .mont {
    font-size: 21px;
  }
}
@media only screen and (max-width: 500px) and (max-height: 568px) {
  .s1 .container h1 {
    margin-bottom: 100px;
  }
  .s1 .container .text-princ {
    line-height: 15px;
  }
  .s1 {
    background-position: center 30%;
  }
}
.dons-popup .container .bloc-right {
  width: 60% !important;
  -ms-flex-preferred-size: 60% !important;
  flex-basis: 60% !important;
  max-width: 60% !important;
  display: flex !important;
  justify-content: flex-end !important;
}
@media screen and (max-width: 992px) {
  .dons-popup .container .bloc-right {
    width: 100% !important;
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    max-width: 100% !important;
    flex-direction: column;
  }
}
.dons-popup .container .bloc-right .btn-header {
  margin-left: 0px !important;
  margin-right: 15px !important;
  justify-content: flex-end !important;
}
@media screen and (max-width: 992px) {
  .dons-popup .container .bloc-right .btn-header {
    margin-right: 0px !important;
  }
}
.dons-popup .container p {
  width: 40% !important;
  -ms-flex-preferred-size: 40% !important;
  flex-basis: 40% !important;
  max-width: 40% !important;
}
@media screen and (max-width: 992px) {
  .dons-popup .container p {
    width: 100% !important;
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}
.dons-popup .bloc-txt span {
  width: auto !important;
}
.dons-popup .container .bloc-right .bloc-txt {
  width: 320px !important;
  justify-content: center !important;
}
@media screen and (max-width: 992px) {
  .dons-popup .container .bloc-right .bloc-txt {
    width: 100% !important;
  }
}
@media screen and (max-width: 360px) {
  header .btn-header a {
    font-size: 9px !important;
    line-height: 12px !important;
  }
}
@media screen and (max-width: 360px) {
  header .bloc-txt {
    display: flex;
    justify-content: center !important;
    line-height: 12px !important;
    padding: 5px !important;
  }
}
@media screen and (max-width: 768px) {
  header .bloc-txt span {
    font-size: 10px !important;
    text-align: center !important;
    padding: 0px !important;
    line-height: 11px !important;
  }
}
@media screen and (max-width: 360px) {
  header .bloc-txt span {
    font-size: 10px !important;
    text-align: center !important;
    padding: 0px !important;
    line-height: 11px !important;
  }
}
@media screen and (max-width: 992px) {
  header .pos-flex.bloc-right {
    justify-content: flex-end !important;
  }
}
@media screen and (max-width: 768px) {
  header .pos-flex.bloc-right {
    justify-content: space-between !important;
  }
}
@media screen and (max-width: 992px) {
  header .pos-flex.bloc-right .bloc-txt {
    margin-right: 10px !important;
  }
}
@media screen and (max-width: 768px) {
  header .pos-flex.bloc-right .bloc-txt {
    margin-right: 0px !important;
  }
}
/*--------------------------------------
  sections
--------------------------------------*/
#section-footer {
  position: relative;
}
#section-footer #anchor1 {
  position: absolute;
  top: -100px;
}
.section-footer {
  background-color: #000000;
}
.section-footer .footer-container {
  max-width: 1140px;
}
.section-footer .footer-container .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .section-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 130px 0;
  }
}
.section-footer .footer-container .footer-logo-block {
  max-width: 200px;
  order: 2;
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .footer-logo-block {
    order: 1;
  }
}
@media only screen and (min-width: 1140px) {
  .section-footer .footer-container .footer-logo-block {
    max-width: 22%;
  }
}
.section-footer .footer-container .footer-logo-block .logo-footer {
  max-width: 100%;
}
.section-footer .footer-container .right-block {
  order: 1;
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .right-block {
    order: 2;
  }
}
.section-footer .footer-container h2.title-social {
  color: #BA006F;
  font-size: 43px;
  text-transform: uppercase;
  margin: 0px 0 25px;
  font-family: 'Futura PT Bold';
  text-align: center;
  line-height: initial;
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container h2.title-social {
    font-size: 33px;
    text-align: left;
  }
}
@media only screen and (min-width: 1140px) {
  .section-footer .footer-container h2.title-social {
    font-size: 43px;
  }
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container h2.title-social br {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .reseau-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.section-footer .footer-container .reseau-btn .reseau-soc {
  display: flex;
  justify-content: center;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .reseau-btn .reseau-soc {
    justify-content: flex-start;
  }
}
.section-footer .footer-container .reseau-btn .reseau-soc a {
  transition: 0.4s ease;
}
.section-footer .footer-container .reseau-btn .reseau-soc a:hover {
  transform: translateY(-5px);
}
.section-footer .footer-container .reseau-btn .reseau-soc img {
  margin-right: 13px;
  width: 68px;
  height: 68px;
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .reseau-btn .reseau-soc img {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .reseau-btn .reseau-soc img {
    width: 68px;
    height: 68px;
  }
}
.section-footer .footer-container .reseau-btn .reseau-soc a:last-child img {
  margin-right: 0px;
}
.section-footer .footer-container .btn-instcr {
  background-color: #ba006d;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 30px;
  transition: 0.4s ease;
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .btn-instcr {
    margin-top: 0;
    margin-left: 15px;
    margin-bottom: 0;
  }
}
.section-footer .footer-container .btn-instcr:hover {
  text-decoration: none;
  background-color: #950057;
}
.section-footer .footer-container .btn-instcr .btn-subscribe {
  text-align: center;
  font-size: 15px;
  line-height: 44px;
  letter-spacing: 1px;
  padding: 5px 30px;
}
@media only screen and (min-width: 992px) {
  .section-footer .footer-container .btn-instcr .btn-subscribe {
    padding: 5px 15px;
    font-size: 18px;
  }
}
.section-footer .footer-container .btn-instcr .btn-subscribe:hover {
  text-decoration: none;
}
.section-footer .foot-bas {
  width: 100%;
  text-align: center;
  padding-top: 2px;
  border-top: 1px solid #707070;
}
.section-footer .foot-bas p {
  font-family: 'Futura PT Book';
  font-size: 12px;
  margin: 20px 0;
  color: #707070;
}
.section-footer .foot-bas p a {
  padding: 0 5px;
  color: #707070;
}
.section-footer .foot-bas img {
  margin-bottom: 36px;
}
.section-footer .section-footer .fp-tableCell {
  padding-bottom: 218px;
}
.section-footer .section-content {
  padding: 150px 0;
}
.section-soutien {
  background-color: #ba006f;
}
.container4 {
  max-width: 1196px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
.container-support-pink {
  max-width: 1600px;
}
.section-soutien {
  background-color: #ba006f;
}
.section-soutien2 h2,
.section-soutien h2 {
  font-family: 'Futura PT Bold';
}
.section-soutien2 {
  background-color: #0e376f;
}
.container4 h2 {
  margin: 0px 0 30px;
  letter-spacing: 2px;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 50px;
}
.container4 h2 span {
  font-family: 'Futura PT Medium';
}
.container4 .item {
  height: 168px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.container4 .item p {
  font-family: 'Futura PT Medium';
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 18px;
}
.container4 .item p span {
  font-size: 1.2em;
}
.section-soutien2 .container4 p {
  min-height: 235px;
  margin-top: 14px;
}
.container4 .item span {
  font-family: 'Futura PT Heavy';
}
.item-soutien {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 34px;
  transition: 0.4s ease;
}
.item-soutien .item a {
  transition: 0.4s ease;
}
.item-soutien .item a:hover {
  transform: translateY(-5px);
}
.item-soutien .item .blk-img {
  transition: 0.4s ease;
}
.item-soutien .item .blk-img:hover {
  transform: translateY(-5px);
}
.container-support-pink .item {
  width: 18%;
  margin: 0 1%;
}
.text-reassurance {
  font-family: 'Futura PT Book';
  font-size: 16px;
  color: #ffffff;
  padding-top: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 30px;
}
.text-reassurance:before {
  width: 100px;
  height: 1px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50px;
}
.text-reassurance span {
  font-family: 'Futura PT Bold';
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .container4 h2 {
    font-size: 24px;
  }
  .container4 .item p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .container4 h2 {
    font-family: 'Futura PT Bold';
  }
  .container4 .item {
    width: 100%;
    display: block;
    height: auto;
    margin-bottom: 43px;
  }
  .container4 .item:last-child {
    margin-bottom: 0px;
  }
  .item-soutien {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .container4 .item p {
    font-size: 20px;
    min-height: inherit;
    line-height: 21px;
  }
  .container4 .item-1 {
    margin-bottom: 30px;
  }
  .section-soutien2 .item-3 {
    width: 100%;
  }
  .container4 h2 {
    padding-top: 17px;
    padding-bottom: 30px;
  }
  .item-soutien {
    display: block;
    width: 100%;
    padding-bottom: 36px;
  }
  .container-support-pink .item {
    max-width: 260px;
    margin: 0 auto 30px;
  }
}
@media only screen and (max-width: 500px) and (min-height: 568px) {
  .section-solidaire h2 {
    font-size: 21px;
    line-height: 21px;
  }
}
/*--------------------------------------
  NEW MISSION LOGO
--------------------------------------*/
.text-section-intro {
  position: relative;
}
.new-mission-block {
  display: flex;
  text-align: center;
  width: 100%;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .4s ease;
  z-index: 2;
  pointer-events: none;
}
@media only screen and (max-width: 992px) {
  .new-mission-block {
    justify-content: center;
  }
}
.new-mission-block:hover a {
  text-decoration: none;
}
.new-mission-block:hover .img-new-mission-block {
  transform: translateY(5px);
}
.new-mission-block a {
  position: relative;
  width: 136px;
  height: auto;
  top: auto;
  pointer-events: all;
}
@media only screen and (min-width: 992px) and (max-height: 850px) {
  .new-mission-block a {
    right: 23%;
  }
}
@media only screen and (min-width: 1300px) and (max-height: 850px) {
  .new-mission-block a {
    right: unset;
  }
}
.new-mission-block .block-content {
  position: relative;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .new-mission-block .block-content {
    padding-bottom: 80px;
  }
}
.new-mission-block .block-content:after {
  content: "";
  background-image: url(../images/down-chevron.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 80px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .new-mission-block .block-content:after {
    bottom: 12px;
  }
}
@media only screen and (min-width: 1300px) {
  .new-mission-block .block-content:after {
    background-position: center -10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) and (max-height: 850px) {
  .new-mission-block .block-content:after {
    justify-content: flex-end;
    bottom: 36px;
    height: 65px;
  }
}
.new-mission-block .block-content .img-new-mission-block {
  max-width: 75px;
  margin: 0 auto;
  transition: .4s ease;
}
@media only screen and (min-width: 768px) {
  .new-mission-block .block-content .img-new-mission-block {
    max-width: 90px;
  }
}
@media only screen and (min-width: 992px) {
  .new-mission-block .block-content .img-new-mission-block {
    max-width: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1600px) and (max-height: 850px) {
  .new-mission-block .block-content .img-new-mission-block {
    max-width: 80px;
  }
}
.new-mission-block .block-content .img-new-mission-block img {
  width: 100%;
}
.new-mission-block .block-content .new-inFrance-text {
  position: relative;
  right: initial;
  top: initial;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .new-mission-block .block-content .new-inFrance-text {
    position: relative;
    right: initial;
    top: initial;
    text-align: center;
  }
}
@media only screen and (min-width: 1300px) {
  .new-mission-block .block-content .new-inFrance-text {
    position: relative;
    right: initial;
    top: initial;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) and (max-height: 850px) {
  .new-mission-block .block-content .new-inFrance-text {
    position: relative;
    right: initial;
    top: initial;
    text-align: center;
  }
}
.new-mission-block .block-content .new-inFrance-text p {
  font-family: 'Futura PT Bold';
  font-size: 17px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (min-width: 1300px) {
  .new-mission-block .block-content .new-inFrance-text p {
    text-align: center;
    line-height: 18px;
    font-size: 19px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) and (max-height: 850px) {
  .new-mission-block .block-content .new-inFrance-text p {
    text-align: center;
    font-size: 15px;
    line-height: 14px;
  }
}
.new-mission-block .block-content .new-inFrance-text p span {
  font-size: .7em;
}
/*--------------------------------------
  NEW MISSION LOGO in section s10 France
--------------------------------------*/
.s10 h3 {
  position: relative;
}
.s10 h3:before {
  content: "";
  background-image: url(../images/new-mission.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 47px;
  width: 47px;
  position: absolute;
  right: 32px;
  bottom: 8px;
}
@media only screen and (min-width: 600px) {
  .s10 h3:before {
    right: 28px;
    bottom: 28px;
  }
}
@media only screen and (min-width: 770px) {
  .s10 h3:before {
    right: 105px;
    bottom: -25px;
    height: 65px;
    width: 65px;
  }
}
@media only screen and (min-width: 1700px) {
  .s10 h3:before {
    right: -18px;
    bottom: -49px;
    height: 90px;
    width: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .active-animation #fullpage .no-active:not(.s2) h3 {
    width: auto;
  }
}
/*--------------------------------------
  New mission anchor point target
--------------------------------------*/
.s10 {
  position: relative;
}
.s10 #anchor-france {
  position: absolute;
  top: -250px;
}
#home-popup .modal-dialog {
  width: 95%;
  margin: 50px auto 0;
}
@media only screen and (min-width: 1140px) {
  #home-popup .modal-dialog {
    width: 75%;
  }
}
@media only screen and (min-width: 1600px) {
  #home-popup .modal-dialog {
    width: 45%;
    max-width: 900px;
    min-width: 828px;
  }
}
#home-popup .modal-content {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 40px 0;
}
@media only screen and (min-width: 992px) {
  #home-popup .modal-content {
    background-color: #000000;
  }
}
#home-popup .modal-content .close {
  font-size: 50px;
  font-family: 'Futura PT Light';
  left: unset;
  right: 20px;
  color: #ba006f;
  text-shadow: none;
}
#home-popup .modal-content .close span {
  color: #ba006f;
}
#home-popup .modal-content .home-popup-video-block {
  text-align: center;
}
#home-popup .modal-content .home-popup-video-block h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 50px;
  line-height: 35px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  #home-popup .modal-content .home-popup-video-block h1 {
    font-size: 75px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 992px) {
  #home-popup .modal-content .home-popup-video-block h1 {
    font-size: 109px;
    line-height: 50px;
  }
}
#home-popup .modal-content .home-popup-video-block h1 span {
  font-size: .5em;
}
#home-popup .modal-content .home-popup-video-block .home-popup-video {
  display: flex;
  justify-content: center;
}
#home-popup .modal-content .home-popup-video-block .btn-popup-video {
  text-align: center;
  margin-top: 30px;
  background-color: #ba006f;
  border-radius: 24px;
  padding: 10px 10px;
  display: inline-block;
  transition: .5s ease;
}
#home-popup .modal-content .home-popup-video-block .btn-popup-video:hover {
  background-color: #950057;
  text-decoration: none;
}
#home-popup .modal-content .home-popup-video-block .btn-popup-video a {
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
}
#home-popup .modal-content .home-popup-video-block .btn-popup-video a:hover {
  text-decoration: none;
}
#section-s1-override {
  position: relative;
  height: 100%;
  background-image: none !important;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override {
    min-height: 670px;
  }
}
@media screen and (max-width: 992px) {
  #section-s1-override {
    height: auto;
    padding-top: 86px;
  }
}
#section-s1-override .ticker-wrap {
  position: absolute !important;
  z-index: 6;
  top: 92px;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .ticker-wrap {
    top: 75px;
  }
  #section-s1-override .ticker-wrap * {
    font-size: 10px;
  }
}
@media screen and (max-width: 992px) {
  #section-s1-override .ticker-wrap {
    position: absolute;
    top: auto;
  }
}
#section-s1-override .illustration {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  #section-s1-override .illustration {
    width: 100% !important;
    position: relative;
    height: 400px;
  }
}
@media screen and (max-width: 576px) {
  #section-s1-override .illustration {
    width: 100% !important;
    position: relative;
    height: 260px;
  }
}
#section-s1-override .illustration .img {
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/2022/bg_section1@2x.jpg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 576px) {
  #section-s1-override .illustration .img {
    background-image: url(../images/2022/bg_section1_responsive@2x.jpg);
    background-position: center;
  }
}
#section-s1-override .illustration .img a {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
#section-s1-override .illustration .img a:before {
  content: "";
  background-image: url(../images/2022/play-button2.svg);
  background-size: contain;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  margin-top: -30px;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 2;
  display: none;
  opacity: 0.5;
}
@media screen and (max-width: 992px) {
  #section-s1-override .illustration .img a:before {
    display: inline-block;
  }
}
#section-s1-override .illustration .img a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 1;
  background-color: #000000;
}
@media screen and (max-width: 992px) {
  #section-s1-override .illustration .img a:after {
    opacity: 0.2;
  }
}
#section-s1-override .illustration .img img {
  position: absolute;
  height: 0;
  opacity: 0;
}
#section-s1-override .section-princ {
  padding: 0px;
}
@media screen and (max-width: 992px) {
  #section-s1-override .section-princ {
    height: auto;
    margin-bottom: -210px;
  }
}
#section-s1-override .container {
  max-width: 1140px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 992px) {
  #section-s1-override .container {
    height: auto;
    bottom: auto !important;
    position: relative;
    top: -90px;
    padding-bottom: 230px !important;
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #section-s1-override .container {
    padding-bottom: 160px !important;
  }
}
#section-s1-override .row {
  justify-content: flex-star !important;
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  #section-s1-override .row {
    height: auto;
  }
}
#section-s1-override .row .col-content {
  margin-top: 50px;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content {
    margin-top: 0px;
  }
}
@media screen and (max-width: 992px) {
  #section-s1-override .row .col-content {
    margin-top: 0px;
  }
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }
}
#section-s1-override .row .col-content .content-inside {
  text-align: center;
}
#section-s1-override .row .col-content .new_macaron {
  max-width: 139px;
  display: inline-block;
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content .new_macaron {
    max-width: 109px;
  }
}
#section-s1-override .row .col-content .new_macaron img {
  max-width: 100%;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content .new_macaron img {
    max-width: 60%;
  }
}
#section-s1-override .row .col-content .text-section1 {
  text-align: center;
}
#section-s1-override .row .col-content .text-section1 h1 {
  font-size: 86px;
  line-height: 38px;
  text-transform: uppercase;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content .text-section1 h1 {
    font-size: 46px;
    line-height: 27px;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 992px) {
  #section-s1-override .row .col-content .text-section1 h1 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  #section-s1-override .row .col-content .text-section1 h1 {
    font-size: 74px;
    line-height: 30px;
    letter-spacing: -6px;
  }
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content .text-section1 h1 {
    font-size: 34px;
    line-height: 23px;
    letter-spacing: 0px;
    margin-bottom: 10px !important;
  }
}
#section-s1-override .row .col-content .text-section1 h1 span {
  font-size: 34px;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content .text-section1 h1 span {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content .text-section1 h1 span {
    font-size: 20px;
  }
}
#section-s1-override .row .col-content .text-section1 p {
  font-family: 'Futura PT Book';
  font-size: 18px;
  max-width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  position: relative;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content .text-section1 p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #section-s1-override .row .col-content .text-section1 p {
    font-size: 15px;
    max-width: 100%;
    line-height: 17px;
  }
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content .text-section1 p {
    font-size: 14px;
    max-width: 100%;
    line-height: initial;
  }
}
#section-s1-override .row .col-content .text-section1 p span {
  font-weight: bold;
  font-family: 'Futura PT Bold';
}
#section-s1-override .row .col-content .text-section1 p.first-paragraph {
  padding-bottom: 30px;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content .text-section1 p.first-paragraph {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content .text-section1 p.first-paragraph {
    padding-bottom: 10px;
  }
}
#section-s1-override .row .col-content .text-section1 p.first-paragraph:after {
  content: "";
  width: 130px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -65px;
  background-color: #ffffff;
  height: 1px;
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content .text-section1 p.first-paragraph:after {
    display: none;
  }
}
#section-s1-override .row .col-content .text-section1 p.second-paragraph {
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content .text-section1 p.second-paragraph {
    margin-bottom: 15px;
  }
}
#section-s1-override .row .col-content .text-section1 .btn-prn {
  background-color: #ffffff;
  height: auto;
  border-radius: 20px;
  text-align: center;
  transition: .6s ease;
  color: #000000;
  text-transform: uppercase;
  font-size: 17px;
  line-height: initial;
  letter-spacing: 0.6px;
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px;
  width: auto;
  margin-bottom: 10px;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content .text-section1 .btn-prn {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #section-s1-override .row .col-content .text-section1 .btn-prn {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content .text-section1 .btn-prn {
    display: none;
  }
}
#section-s1-override .row .col-content .text-section1 .btn-prn:hover {
  background-color: #ba006f;
  color: #ffffff;
}
#section-s1-override .row .col-content .text-section1 .btn-prn:hover a {
  color: #ffffff;
}
#section-s1-override .row .col-content .text-section1 .btn-prn.responsive {
  display: none;
}
@media screen and (max-width: 576px) {
  #section-s1-override .row .col-content .text-section1 .btn-prn.responsive {
    display: inline-block !important;
    font-size: 14px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 360px) {
  #section-s1-override .row .col-content .text-section1 .btn-prn.responsive {
    display: inline-block !important;
    font-size: 12px;
    padding: 5px 10px;
  }
}
#section-s1-override .row .col-content .text-section1 .btn-video-trigger {
  background-color: #ba006d;
  height: 44px;
  border-radius: 20px;
  text-align: center;
  transition: .6s ease;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 44px;
  letter-spacing: 0.6px;
  text-decoration: none;
  padding: 0 15px 0 44px;
  width: auto;
  position: relative;
}
@media screen and (max-height: 700px) and (min-width: 1000px) {
  #section-s1-override .row .col-content .text-section1 .btn-video-trigger {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  #section-s1-override .row .col-content .text-section1 .btn-video-trigger {
    display: none;
  }
}
#section-s1-override .row .col-content .text-section1 .btn-video-trigger:hover {
  cursor: pointer;
  background-color: #86006d;
}
#section-s1-override .row .col-content .text-section1 .btn-video-trigger:before {
  content: "";
  height: 28px;
  width: 28px;
  background-image: url("../images/2022/play-button2.svg");
  background-size: contain;
  display: inline-block;
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -14px;
}
.modal-backdrop.in {
  opacity: 0.8;
  background-color: #000000;
}
.modal.video-iframe .modal-dialog {
  max-width: 800px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
}
.modal.video-iframe .modal-content {
  padding: 1rem 4rem;
  background-color: transparent !important;
  border: none;
  color: #ffffff;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 992px) {
  .modal.video-iframe .modal-content {
    padding: 0;
  }
}
.modal.video-iframe .modal-content .modal-header {
  border: none;
}
.modal.video-iframe .modal-content .modal-header .close {
  position: relative;
  top: auto;
  left: auto;
}
@media screen and (min-width: 992px) {
  .modal.video-iframe .modal-content .modal-header .close {
    margin: -2rem -5rem -3rem auto;
  }
}
.modal.video-iframe .modal-content .modal-header .close .icon-cross {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
}
.modal.video-iframe .modal-content .modal-header .close .icon-cross:after {
  content: "";
  background: url(../images/2022/close.svg);
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: contain;
}
@media screen and (max-width: 991px) {
  .modal.video-iframe .modal-content .modal-body {
    padding: 2rem;
  }
}
@media screen and (max-width: 400px) {
  .modal.video-iframe .modal-content .modal-body {
    padding: 1rem;
  }
}
