/* ======= ARTBAORD ===== */

.artboard1 {
  left: -30px;
  top: 0;
  z-index: -999;
  background: #e00000;
  height: 90%;
  width: 30vw;
  border-radius: 0 0 500px 500px;
  -moz-border-radius: 0 0 500px 500px;
  -webkit-border-radius: 0 0 500px 500px;
}

.artboard1 svg {
  height: 100%;
}

.artboard2 {
  right: 0;
  top: 0;
  left: auto;
  bottom: auto;
  z-index: -1;
}
.artboardmobile2 {
  display: none;
}

#logo
{
	width: 175px;
}

/* ======= STYTLE 2 ===== */

/* ======= COMMON STYLE ===== */

h1,
h2 {
  color: #e00000;
}
.BannerHomePage h1 {
  font-weight: 400;
}
.BannerHomePage .subbanner {
  font-size: 20px;
  color: #4e4e4e;
}

.section1 .grey {
  color: #4e4e4e;
  font-size: 20px;
}

.red {
  color: #e00000!important;
}

.border-none {
  border: none !important;
}

.radius-none {
  border-radius: unset !important;
}

.box-shadow {
  box-shadow: 0px 4px 20px 10px rgba(0, 0, 0, 0.05);
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.red {
  color: #e00000 !important;
}

.mont_serrat {
  font-family: "Montserrat", sans-serif !important;
}

.pointer {
  cursor: pointer;
}

.slick-initialized .slick-slide {
  outline: none;
}

.container_priv_state .descr a {
  color: #fff;
  text-decoration: underline;
}
.close_priv a {
  text-decoration: none;
  color: black;
}

/* ======= BANNER ===== */

.BHPImg .blanc1 {
  top: 40px;
  left: -120px;
}

.BHPImg .rightText {
  color: #fff;
  font-size: 9em;
  right: 10%;
  letter-spacing: 1px;
}

.blanc1 {
  height: 40px;
  width: 225px;
  border-radius: 25px;
  background: #fff;
}

.bannerDroite svg,
.bannerGauche svg,
.bannerDroite svg g,
.bannerGauche svg g {
  height: 100%;
  width: 100%;
}

.bannerDroite {
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
  height: 60px;
  width: 100px;
  background: #e00000;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
}

.bannerGauche {
  top: auto;
  bottom: 0;
  right: 100px;
  left: auto;
  height: 60px;
  width: 100px;
  background: #e00000;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
  border-radius: 50px 0 0 0;
}
.bannerGauche:before {
  position: absolute;
  content: "";
  height: 40px;
  bottom: 10px;
  left: 99px;
  top: auto;
  right: auto;
  width: 2px;
  background: #fff;
  z-index: 1;
}

/* ===== MENU ===== */

menu {
  top: 0;
  z-index: 999;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-top: 0;
  margin-bottom: 0;
  transition: all 0.2s;
}

menu.menu_scrolled {
  background: #e00000;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 10px 10px rgba(0,0,0,.2);
}

#burger {
  right: 50px;
  top: 0;
}
.numMenu {
  position: absolute;
  top: -70px;
  z-index: -1;
  left: 0;
  bottom: 0;
  font-size: 7em;
  color: #8d8d8d36;
  font-weight: bolder;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1024px) {
  /* === BANNER === */

  .container-fluid.BannerHomePage {
    height: 100vh;
  }

  .container-fluid.BannerHomePage > .row {
    height: 90%;
  }

  .sectionBannerHomepage .BHPImg {
    height: 80%;
    
  }

  nav.navMenu {
    height: 100vh;
    width: 100vw;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
    display: flex;
  }
  nav.navMenu.open {
    opacity: 1;
    transform: scale(1);
    z-index: 99;
  }
  .navBlur {
    background: #fff;
    display: none;
    height: 100vh;
    width: 100vw;
    z-index: -1;
    transition: all 0.5s;
  }
  .navBlur.open {
    display: block;
    z-index: 99;

    animation-name: navBlur;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    transform: translateX(0);
    opacity: 1;
  }
  @keyframes navBlur {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  .navBlur.open:after {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    background: #e00000;

    animation-name: navBlurAfter;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    width: 0;
  }
  @keyframes navBlurAfter {
    0% {
      width: 50px;
    }
    25% {
      width: 100px;
    }
    50% {
      width: 50px;
    }
    100% {
      width: 0;
    }
  }

  #logo.open {
    display: none;
  }
  .navMenu ul {
    list-style: none;
    width: 100%;
    display: flex;
    margin: auto;
    justify-content: center;
    padding: 0;
  }
  .navMenu ul.open {
    animation-name: AnimMenuUl;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    transform: translateX(0px);
    opacity: 1;
  }

  .navMenu li {
    padding: 0;
    margin: auto;
  }

  .navMenu li a {
    transition: all 0.2s;
    font-size: 30px;
    color: #030303;
    text-decoration: none;
    padding-bottom: 20px;
    transition: all 0.2s ease-in-out;
  }

  .navMenu li:hover a {
    border-bottom: 6px solid #e00000;

  }
  .navMenu li:hover {

  }
  
  .navMenu li:hover .numMenu {
    color: #e000009d;
  }

  @keyframes AnimMenuUl {
    0% {
      transform: translateX(-10%);
      opacity: 0;
    }
    50% {
      transform: translateX(-10%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  #logoMenu {
    display: none;
    width: 175px;
    transform: translateX(0);
  }
  #logoMenu.open {
    display: block;
    animation-name: AnimLogoMenu;
    animation-duration: 1.5s;
    animation-timing-function: ease;
  }
  @keyframes AnimLogoMenu {
    0% {
      transform: translateX(-10%);
      opacity: 0;
    }
    50% {
      transform: translateX(-10%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
}
@media screen and (max-width: 1023px) {
  nav.navMenu {
    height: 100vh;
    width: 100vw;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
    transform: scale(0.95);
  }

  nav.navMenu ul {
    text-align: right;
    margin: 0;
    padding-top: 10vh;
    padding-bottom: 10vh;
    list-style: none;
    padding-right: 75px;
  }

  nav.navMenu.open {
    opacity: 1;
    transform: scale(1);
    z-index: 99;
  }

  .navBlur {
    background: rgba(255, 0, 39, 0.8);
    opacity: 0;
    height: 100vh;
    width: 100vw;
    z-index: -1;
    transition: all 0.5s;
  }

  .navBlur.open {
    opacity: 1;
    z-index: 10;
  }

  .navMenu li {
    margin: 20px 0;
    width: fit-content;
    margin-left: auto;
  }

  .navMenu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25em;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    padding: 5px;
    padding-left: 2em;
    transition: all 0.2s;
  }

  .navMenu li:hover a {
    padding-right: 1em;
    opacity: 0.5;
  }

  #logoMenu {
    display: none;
  }
}

/* Icon 1 */

#nav-icon3 {
  width: 50px;
  /*   height: 45px; */
  height: 30px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  /*   height: 9px; */
  height: 6px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  padding: 0;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  /*   top: 18px; */
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  /*   top: 36px; */
  top: 24px;
}

#nav-icon3.open span:nth-child(1) {
  /*   top: 18px; */
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  /*   top: 18px; */
  top: 12px;
  width: 0%;
  left: 50%;
}

/* ==== SECTION 1 ===== */

.section1 .leftText {
  font-size: 14em;
  left: 5%;
}
.section1 .rightText {
  font-size: 14em;
  right: 6%;
  top: 10%;
}

/* ===== ACTU ===== */

.imgActu {
  height: 150px;
  width: 100%;
}

.slickActuGauche {
  top: 20%;
  left: 0;
  right: auto;
  bottom: auto;
  height: 150px;
  width: 250px;
  background: #e00000;
  z-index: -1;
}

.slickActuDroite {
  bottom: 20%;
  left: auto;
  right: 0;
  top: auto;
  height: 150px;
  width: 250px;
  background: #e00000;
  z-index: -1;
}

/* ===== PARTENAIRES ===== */

.imgPartenaire {
  height: 150px;
}

.partenaireLeft {
  top: 0;
  bottom: 0;
  margin: auto;
  left: -50px;
  height: 70px;
  cursor: pointer;
}

.partenaireRight {
  top: 0;
  bottom: 0;
  margin: auto;
  right: -50px;
  height: 70px;
  cursor: pointer;
}

.partenaireLeft svg,
.partenaireRight svg {
  height: 100%;
}

/* ===== CHIFFRES ET RESULTATS ===== */

.celluleRegion {
  font-weight: 900;
  font-size: 2.75em;
}

.celluleNum {
  font-weight: 900;
  font-size: 5.5em;
}

.celluleList {
  border-top: 2px solid rgba(99, 107, 111, 0.5);
}

.celluleList .cellListReg {
  font-weight: bold;
  white-space: nowrap;
}
.celluleList .cellListNum {
  font-size: 1.5em;
  font-weight: 300;
}

.celluleVille {
  transition: all 0.2s;
}
.celluleVille:hover {
  transform: scale(1.05);
}

/* ==== MISSION ===== */

.missionContainer .card {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
.missionContainer .card .card-header {
  background: transparent;
  border-bottom: 2px solid #eb5d7b;
}
.missionContainer .card .card-header:before {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #eb5d7b;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  margin: auto;
  font-size: 14px;
  color: #fff;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.missionContainer .card .card-header:hover:before {
  background: #e00000;
  z-index: -999;
}
.missionContainer .card .card-header.open:before {
  content: "\f068";
}

.missionContainer .card .card-header .btn-link {
  color: #e00000;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1em;
  text-decoration: none;
}

@media screen and (max-width: 1490px) {
  .container-fluid.BannerHomePage > .row {
    height: 80%;
  }
}

@media screen and (max-width: 1300px) {
  #nav-icon3 {
    height: 20px;
    width: 35px;
  }
  #nav-icon3 span {
    height: 4px;
  }

  #nav-icon3 span:nth-child(1) {
    top: 0px;
  }

  #nav-icon3 span:nth-child(2),
  #nav-icon3 span:nth-child(3) {
    top: 8px;
  }

  #nav-icon3 span:nth-child(4) {
    top: 16px;
  }

  #nav-icon3.open span:nth-child(1) {
    top: 8px;
  }

  #nav-icon3.open span:nth-child(4) {
    top: 8px;
  }
}

@media screen and (max-width: 1250px) {
  .partenaireRight,
  .partenaireLeft {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .BannerHomePage {
    width: 80% !important;
  }
  .artboard2 {
    display: none;
  }
  .artboard1 {
    width: 40vw;
  }
  .menuContainer img {
    width: 150px;
  }
  .artboardmobile2 {
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
    z-index: -999;
    display: block;
    width: 40%;
  }
  .artboardmobile2 svg {
    height: 100%;
    width: 100%;
  }

  .sectionBannerHomepage {
    padding-bottom: 50px;
  }
  .container-fluid.BannerHomePage {
    height: auto;
  }
  .container-fluid.BannerHomePage > .row {
    margin-top: 150px;
    height: auto;
  }
  .BHPImg {
    height: 45vh;
    margin-bottom: 50px;
  }
  .artboard1 {
    height: 40%;
  }
  menu {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .py-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .artboard1 {
    width: 50vw;
  }
}

@media screen and (max-width: 666px) {
  menu {
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgba(255, 0, 39, 0.8);
  }
  .menuContainer img {
    width: 120px;
  }
  .container-fluid.BannerHomePage > .row {
    margin-top: 100px;
  }
}

@media screen and (max-width: 576px) {
  .BannerHomePage {
    width: 90% !important;
  }
  .BHPTxt {
    padding: 0;
  }
}

@media screen and (max-width: 415px) {
  .BHPImg .blanc1 {
    top: 9%;
    left: -7%;
    height: 25px;
    width: 140px;
  }
}

@media print{
	*[data-aos*=""] {
		display: inline-block !important
	}
}

@media print{
    [data-aos] {
        display: block !important;
        opacity: 1 !important;
        transform: translate(0) scale(1) !important;
    }
}
/* @media print {
  .mapWal {
    display: none !important;
  }
} */
