/*FONT*/
@font-face {
    font-family: Kufam;
    src: url("../font/Kufam/static/Kufam-SemiBold.ttf") format("woff");
}

@font-face {
    font-family: JetBrains;
    src: url("../font/JetBrains_Mono/JetBrainsMono-VariableFont_wght.ttf") format("woff");
}

@font-face {
    font-family: Imprima;
    src: url("../font/Imprima/Imprima-Regular.ttf") format("woff");
}

@font-face {
    font-family: Jost;
    src: url("../font/Jost/static/Jost-SemiBold.ttf") format("woff");
}

/*Div principales*/

a{
    text-decoration: none !important;
}
a:hover{
    color: #464646 !important;
}

body {
    background-color: #F1FAF8;
    background-attachment: scroll, local;
    background-size: cover;
    height: auto;
    margin: 0;
    transition:all .2s ease !important;
}

/*BARRE MENU*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
nav{
  position: fixed;
  z-index: 99;
  width: 100%;
  font-family: "Jost";
  background: #ffffff;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #3A3B3C;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
  padding-top: 12px;
}
.nav-links li a{
  color: #303A3E;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #71DAC1;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #ffffff;
  width: 300px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
background-color: transparent;
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #303A3E;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #303A3E;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #dbeeea;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  .drop-menu li a{
    color: #595e61;
  }
  .nav-links .drop-menu{
    background-color: #f6fcfa;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #46494b;
  }
  ::-webkit-scrollbar-thumb {
    background: #bbbdc0;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  #showDropExpertise:checked ~ .drop-menu,
  #showDropRejoindre:checked ~ .drop-menu{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #303A3E;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
    color: white;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

/*container des éléments de l'accueil*/
.mainContainer {
    position: relative;
    display: flex;
    flex-direction: column;

    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

/*IMAGE BACKGROUND*/
.imgBg {
    position: relative;
    top: 0;
    left: 0;
    object-fit: contain;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/fond/bg_fonce.png);
}

.txtAnim {
    position: relative;
    font-size: 4em;
    display: flex;
    flex-direction: column;
  }
  
  .txtAnim .text-wrapper {
    padding-top: 0.2em;
    padding-right: 0.05em;
    overflow: hidden;
    margin-left: 3%;
  }

  .txtAnim .text-wrapper-mini {
    padding-top: 0.5em;
    padding-right: 0.05em;
    overflow: hidden;
    font-weight: 20;
  }
  
  .txtAnim .letter {
    display: inline-block;
    line-height: 1em;
    transform-origin: 0 0;
  }

  .txtAnim .letter-mini {
    display: inline-block;
    transform-origin: 0 0;
  }

#wrapperNoPadding{
    padding-top: 0;
}

#txt1 {
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
    margin-top: 10px;
    font-family: "Kufam";
    color: white;
    font-size: 80px;
    transform-origin: 0 0;
    white-space: nowrap;
    display: inline-block

}


@media screen and (max-width: 970px) {
    #txt1{
       font-size: 47px;
    }
}

#txt2 {
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
    font-family: "Kufam";
    color: white;
    font-size: 42px;
    transform-origin: 0 0;
}

@media screen and (max-width: 970px) {
    #txt2{
        font-size: 18px;
        filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
    }
}

#txt3 {
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
    margin-left: 3.5%;
    margin-top: 10px;
    font-family: "JetBrains";
    color: white;
    font-size: 20px;
    font-weight: 500;
}

@media screen and (max-width: 970px) {
    #txt3{
        filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
        font-size: 13px;
    }
}

/*Boutons haut page en dessous slogan*/
/*SLOGAN*/
.sloganContainer {
  overflow: hidden;
    position: relative;
    margin-top: 10%;
    padding: 0px;
    width: 100%;
}

@media screen and (max-width: 970px) {
    .sloganContainer{
        margin-top: 90px;
    }
}

.sloganBtnContainer {
    margin-top: 10%;
    margin-left: 2%;
    margin-bottom: 10%;
    display: flex;
    gap: 15px;
}

@media screen and (max-width: 970px) {
    .sloganBtnContainer{
      margin-top: 25%;
        flex-wrap: wrap; /* Permet aux blocs de passer à la ligne */
        gap: 20px; /* Espace entre les blocs */
    }
}

.sloganBtn {
    opacity: 0;
    filter: blur(10px);
    text-decoration: none;
    background-color: white;
    border-radius: 90px;
    height: 70px;
    width: 250px;
    font-family: "Jost";
    color: #303A3E;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, color 0.3s, background-color 0.3s;
    cursor: pointer;
}



@media screen and (max-width: 970px) {
    .sloganBtn{
        width: 140px;
        height: 45px;
        font-size: 12px;
    }
}

.sloganBtn:hover{
    color: #03BED4 !important;
    transform: scale(0.95);
}

.selnhhelpimg{
  padding-left: 10px;
  width: 55px;
}

#selnhelp:hover{
  color: #e09900 !important;
  background-color: #0f3875;
  transform: scale(0.95);
  .selnhhelpimg{
    filter: invert(1);
  }
}

@media screen and (max-width: 970px) {
  #selnhelp{
      height: 60px;
      border-radius: 25px;
  }
}

/*NOTRE EXPERTISE*/
.pBlanche {
    position: relative;
    background-color: #F1FAF8;
}

.pBContainerTxt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pBTxt1 {
    font-family: "Kufam";
    color: #303A3E;
    font-size: 60px;
    margin-top: 60px;
    text-transform: uppercase;
    text-align: center;
}

.pbTxt1 .pBTxt1Letter{
  display: inline-block;
}

@media screen and (max-width: 970px) {
    .pBTxt1{
        margin-top: 40px;
        font-size: 30px;
    }
}

.pBTxt2{
    font-family: "JetBrains";
    color: #303A3E;
    font-size: 20px;
    text-align: center;
}

@media screen and (max-width: 970px) {
    .pBTxt2{
        font-size: 13px;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 5%;
    }
}

.pBExpertisesContainer{
    overflow: hidden;
    margin-top: 5%;
    padding-top: 2%;
    padding-bottom: 6%;
    background-color: white;
    border-radius: 90px;
    padding-right: var(--bs-gutter-x, 0.75rem); /* Application d'une marge intérieure à droite et à gauche */
    padding-left: var(--bs-gutter-x, 0.75rem); /* Application d'une marge intérieure à droite et à gauche */
    margin-right: auto;
    margin-left: auto;
    width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10% 0%;
    justify-items: center;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1600px) {
    .pBExpertisesContainer{
        border-radius: 70px;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        height: 480px;
    }
}

@media screen and (max-width: 1100px) {
    .pBExpertisesContainer{
        border-radius: 30px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap:6%;
        width: 90%;
    }
}

@media screen and (max-width: 600px) {
  .pBExpertisesContainer{
      border-radius: 30px;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap:6%;
      width: 90%;
  }
}

.pBExpertises{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.pBExpertises:hover{
    transform: scale(1.15);
}

.pBExpertisesImg{
    height: 80px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1500px){
  .pBExpertisesImg{
    height: 70px;
  }
}

@media screen and (max-width: 1100px) {
    .pBExpertisesImg{
        height: 55px;
        width: auto;
    }
}

@media screen and (max-width: 600px) {
  .pBExpertisesImg{
      height: 45px;
      width: auto;
  }
}


.pBExpertisesTxt{
    font-family: "Jost";
    color: #464646;
    text-align: center;
    font-size: 13PX;
}

@media screen and (max-width: 600px) {
    .pBExpertisesTxt{
        font-size: 10px;
    }
}

/*PASSEZ A L'ETAPE SUIVANTE*/

.bgEtape{
    position: relative;
    margin-top: 100px;
    padding-bottom: 100px;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/fond/bg_sec.png);
}

@media screen and (max-width: 970px) {
    .bgEtape{
        padding-bottom: 50px;
    }
}

.etapeContainer{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.etapeTxt1{
    margin-top: 60px;
    font-family: "Kufam";
    color: #ffffff;
    text-decoration: underline #71DAC1;
    font-size: 55px;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
    text-align: center;
}

@media screen and (max-width: 970px) {
    .etapeTxt1{
        margin-top: 40px;
        font-size: 30px;
        filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
    }
}

.etapeContainerBox{
    display: flex; 
    padding-right: var(--bs-gutter-x, 0.75rem); /* Application d'une marge intérieure à droite et à gauche */
    padding-left: var(--bs-gutter-x, 0.75rem); /* Application d'une marge intérieure à droite et à gauche */
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap : 20px;
}

.etapeBox{
    margin-top: 5%;
    background-color: #ffffff;
    border-radius: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 250px;
    width: 600px;
    color:#464646;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1260px) {
  .etapeBox{
      border-radius: 50px;
      width: 450px;
      height: 200px;
  }
}

@media screen and (max-width: 970px) {
    .etapeBox{
        border-radius: 30px;
        width: 250px;
        height: 125px;
    }
}

.etapeBoxContainerTxt{
    display: flex;
    justify-content: left;
    flex-direction: column;
}

.etapeBoxTxt1{
    font-size: 30px;
    font-family: "Kufam";
}

@media screen and (max-width: 1260px) {
  .etapeBoxTxt1{
    font-size: 25px;
}
}

@media screen and (max-width: 970px) {
    .etapeBoxTxt1{
        font-size: 16px;
    }
}

.etapeBoxTxt2{
    font-size: 20px;
    font-family: "Imprima";
}

@media screen and (max-width: 1260px) {
  .etapeBoxTxt2{
      font-size: 17px;
  }
}

@media screen and (max-width: 970px) {
    .etapeBoxTxt2{
        font-size: 13px;
    }
}

.etapeBoxBtnV{
    text-decoration: none;
    margin-top: 4%;
    background-color: #71DAC1;
    border-radius: 90px;
    height: 80px;
    width: 300px;
    font-family: "Jost";
    font-size: 20px;
    color: #464646;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

@media screen and (max-width: 1260px) {
  .etapeBoxBtnV{
      width: 250px;
      height: 65px;
      font-size: 16px;
  }
}

@media screen and (max-width: 970px) {
    .etapeBoxBtnV{
        width: 180px;
        height: 40px;
        font-size: 13px;
    }
}


.etapeBoxBtnV:hover{
    background-color: #5DCAB0;
    transform: scale(0.95);
}

.etapeBoxBtnB{
    text-decoration: none;
    margin-top: 4%;
    background-color: #03BCD6;
    border-radius: 90px;
    height: 80px;
    width: 300px;
    font-family: "Jost";
    font-size: 20px;
    color: #464646;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

@media screen and (max-width: 1260px) {
  .etapeBoxBtnB{
      width: 250px;
      height: 65px;
      font-size: 16px;
  }
}

@media screen and (max-width: 970px) {
    .etapeBoxBtnB{
        width: 180px;
        height: 40px;
        font-size: 13px;
    }
}

.etapeBoxBtnB:hover{
    background-color: #00a1c6;
    transform: scale(0.95);
}

/*NOS PARTENAIRES*/

.partTxtContainer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.partTxt{
    font-family: "Kufam";
    font-size: 37px;
    color: #464646;
}

@media screen and (max-width: 970px) {
    .partTxt{
        font-size: 25px;
    }
}

.partBox{
    padding-top: 2%;
    padding-bottom: 2%;
    background-color: white;
}

.partBoxContainer{
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    width: 100%
}

.partLogo{
    width: 150px;
    height: auto;
    animation: scroll 10s linear infinite alternate;
}

@media screen and (max-width: 900px) {
    .partLogo{
        width: 100px;
        height: auto;
    }
}

@media screen and (max-width: 600px) {
  .partLogo{
      width: 75px;
      height: auto;
  }
}

@keyframes scroll {
    0% {
      transform: translateX(100%); /* Position de départ */
    }
    100% {
      transform: translateX(-100%); /* Position finale (une hauteur de div + la marge) */
    }
  }

/*FORMULAIRE CONTACTEZ NOUS*/

.contactContainer{
    display: flex;
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}

.contactImgBg{
    position: relative;
    top: 0;
    left: 0;
    object-fit: contain;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/fond/form.png);
}

.contactIconDiv{
    margin-top: 3%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 90px;
}

.contactIcon{
    width: 120px;
    height: 120px;
}

@media screen and (max-width: 1050px) {
    .contactIcon{
        width: 85px;
        height: 85px;
    }
}

@media screen and (max-width: 600px) {
    .contactIcon{
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 600px) {
    .contactIcon{
        width: 40px;
        height: 40px;
    }
}

.contactTxt1{
    margin-top: 2%;
    font-family: "Kufam";
    color: #464646;
    font-size: 50px;
    text-align: center;
}

@media screen and (max-width: 970px) {
    .contactTxt1{
        font-size: 30px;
    }
}

.contactTxt2{
    font-family: "JetBrains";
    color: #464646;
    font-size: 20px;
}

@media screen and (max-width: 970px) {
    .contactTxt2{
        font-size: 13px;
        padding-bottom: 20px;
    }
}

/*footer*/

.footer-clean {
    margin-top: 120px;
    padding:50px 0;
    background-color:#fff;
    color:#4b4c4d;
  }
  
  .footer-clean h3 {
    margin-top:0;
    margin-bottom:12px;
    font-weight:bold;
    font-size:16px;
  }
  
  .footer-clean ul {
    padding:0;
    list-style:none;
    line-height:1.6;
    font-size:14px;
    margin-bottom:0;
  }
  
  .footer-clean ul a {
    color:inherit;
    text-decoration:none;
    opacity:0.8;
  }
  
  .footer-clean ul a:hover {
    opacity:1;
  }
  
  .footer-clean .item.social {
    text-align:right;
  }
  
  @media (max-width:767px) {
    .footer-clean .item {
      text-align:center;
      padding-bottom:20px;
    }
  }
  
  @media (max-width: 768px) {
    .footer-clean .item.social {
      text-align:center;
    }
  }
  
  .footer-clean .item.social > a {
    font-size:24px;
    width:40px;
    height:40px;
    line-height:40px;
    padding-top: 7px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    border:1px solid #ccc;
    margin-left:10px;
    margin-top:22px;
    color:inherit;
    opacity:0.75;
  }
  
  .footer-clean .item.social > a:hover {
    opacity:0.9;
  }
  
  @media (max-width:991px) {
    .footer-clean .item.social > a {
      margin-top:40px;
    }
  }
  
  @media (max-width:767px) {
    .footer-clean .item.social > a {
      margin-top:10px;
    }
  }
  
  .footer-clean .copyright {
    margin-top:14px;
    margin-bottom:0;
    font-size:13px;
    opacity:0.6;
  }
  
/*BOUTON*/

.boutonFlotte {
    z-index: 1; 
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #71DAC1;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    animation: blink-animation 1s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes blink-animation {
    0% { opacity: 1; }
    50% { opacity: 0.75; }
    100% { opacity: 1; }
}

.boutonFlotte:hover {
    background-color: #5bc1a6;
}


@media screen and (max-width: 600px) {
    .boutonFlotte{
        width: 50px;
        height: 50px;
    }
}