:root {
  /* Variables pour les tailles de texte */
  --texte1: 1rem;
  /* Taille pour le texte standard */
  --texte2: 1.2rem;
  /* Taille pour un texte légèrement plus grand */

  /* Variables pour les sous-textes */
  --sous-texte: 0.85rem;
  /* Taille pour le sous-texte, plus petit */

  /* Variables pour les titres */
  --titre1: 2.5rem;
  /* Taille pour le titre principal (h1) */
  --titre2: 2rem;
  /* Taille pour les sous-titres (h2) */
  --titre3: 1.5rem;
  /* Taille pour les titres de section (h3) */

  /* Variables pour les styles de police */
  --font-style1: 'Montserrat', sans-serif;
  /* Style de police principal pour les titres */
  --font-style2: 'Roboto', sans-serif;
  /* Style de police pour les paragraphes */
  --font-style3: 'Arial', sans-serif;
  /* Police alternative pour des usages spécifiques */

  /* Variables pour les couleurs */
  --couleur1: #F95203;
  /* Couleur principale (orange) */
  --couleur2: #0076FF;
  /* Couleur secondaire (bleu) */
  --couleur3: #333333;
  /* Couleur pour le texte principal (gris foncé) */
  --couleur4: #666666;
  /* Couleur pour le sous-texte (gris moyen) */
  --coulBlanche: #FFFFFF;
  /* Couleur blanche */
  --couleur6: #EEEEEE;
  /* Couleur pour les arrière-plans clairs (gris très clair) */
  --global-animation-easing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
  --global-staggered-translate-y-duration: 0.7;
  --global-staggered-opacity-duration: 0.9;
  --global-staggered-delay: 0.15;
}


*{
  padding: 0px;
  margin: 0px;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}




/* Style du loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* Fond blanc */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 1s linear, visibility 1s linear;
}

/* Style des cercles */
.circle {
  width: 50px;
  height: 50px;
  border: 3px solid var(--couleur1); /* Bordure orange pour correspondre à l'image */
  border-radius: 50%;
  position: absolute;
  animation: ripple 2.3s linear 1;
  opacity: 0;
  transform: scale(0);
}

.circle:nth-child(1) {
  animation-delay: 0s;
}

.circle:nth-child(2) {
  animation-delay: 0.7s;
}

.circle:nth-child(3) {
  animation-delay: 1.4s;
}

.circle:nth-child(4) {
  animation-delay: 2.1s;
}

/* Animation de l'effet de cercles qui se dilatent */
@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(2);
  }
  75% {
    transform: scale(3);
  }
  100% {
    opacity: 0;
    transform: scale(4);
  }
}

/* Effet pour masquer le loader après l'animation */
body.loaded #loader {
  opacity: 0;
  visibility: hidden;
  transition: 1s linear;
}






  /* les style et les épaisseurs des caracteres ont été modifié */
/* Style général du header */
.header {
  background-color: transparent;
  width: 100%;
  height: 50vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

}

/* Style initial pour le header */
.header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  width: 100%;
  height: 40vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.4s linear;
}

/* Style initial pour la navbar */
.navbar {
  background-color: transparent;
  height: 3.75rem;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.4s linear, border-bottom 0.4s linear;
}

.navbar .navbar-brand {
  margin-left: 1.25rem;
}


.navbar.scrolled .navbar-brand img {
  opacity: 1;
  transform: scale(1.1);
}


.navbar .navbar-nav {
  gap: 1.25rem;
}


/*modifié recemment*/
.navbar .navbar-nav .nav-link {
  color: var(--coulBlanche);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: 0.4s linear;
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--couleur1);
}


/*modifié recemment*/
.globe-icon {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--coulBlanche);
  transition: color 0.4s ease;
  margin-left: 2rem;

}

.globe-icon:hover {
  color: var(--couleur1);
}

.navbar-toggler, .navbar-toggler-icon{
  color: var(--coulBlanche);
}


/* Style de la navbar et du header après scroll */
.header.scrolled {
  background: none;
  height: 4rem;
  transition: 0.4s linear;
}

.navbar.scrolled {
  background-color: var(--coulBlanche);
  /* border-bottom: 1px solid #ddd; */
}
.navbar-brand img {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.navbar.scrolled .navbar-nav .nav-link,
.navbar.scrolled .globe-icon {
  color: rgba(7, 35, 53, 1);
  transition: 0.4s linear;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .globe-icon:hover {
  color: var(--couleur1);
}

/* Supprimer la flèche par défaut de Bootstrap pour les dropdowns */
.navbar .dropdown-toggle::after {
  display: none;
}

.navbar .dropdown-toggle i.bx {
  font-size: 1rem;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.navbar .dropdown-toggle[aria-expanded="true"] i.bx {
  transform: rotate(180deg);
}

.navbar .dropdown-menu {
  background-color: var(--coulBlanche);
  border: 1px solid #ddd;
  margin-top: 0;
}


/*modifié recemment*/
.navbar .dropdown-menu .dropdown-item {
  color: #333;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 10px 50px;
  transition: 0.4s linear;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: var(--couleur1);
  color: var(--coulBlanche);
}





/* hero-section */
.hero-section {
  position: relative;
  background-color: rgb(241, 241, 241);
  position: relative;
  height: 165vh;
  left: 0rem;
  top: 0rem;
  width: 100%;

}

.hero-section .hero1 {
  background-color: transparent;
  position: absolute;
  object-fit: cover;
  height: 90%;
  top: 0rem;
  width: 100%;
  z-index: 50;
}

.hero-section .hero2 {
  background-color: transparent;
  height: 15.38rem;
  left: 0;
  position: absolute;
  top: 5.81rem;
  width: 23.69rem;
  z-index: 51;
}

.hero-section .hero3 {
  background-color: transparent;
  height: 16.88rem;
  left: 28rem;
  position: absolute;
  /* top: 37rem; */
  bottom: 6rem;
  width: 423px;
  z-index: 51;

}

.hero-section .hero4 {
  background-color: transparent;
  height: 26.5rem;
  left: 1.88rem;
  position: absolute;
  /* top: 36.875rem; */
  bottom: 0rem;
  width: 19.313rem;
}


.hero-text-container {
  background-color: transparent;
  position: absolute;
  height: 8.5rem;
  width: 42rem;
  left: 4.5rem;
  color: white;
  font-weight: 700;
  /* text-align: center; */
  top: 25rem;
  z-index: 52;

}

/*modifié recemment*/
.hero-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.9rem;
  line-height: 4rem;
  letter-spacing: 0.00px;
}

.hero-text-orange {
  color: var(--couleur1);
}

/*modifié recemment*/
.hero-text-container span {
  font-weight: 800;
  font-size: 3.25rem;

}




/* Style général de la section 2 */
.sec2 {
  position: relative;
  height: 65vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Grand conteneur */
.grand-div-1 {
  position: relative;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  z-index: 2;
}

/* Partie 1 */
.sec2 .partie-1 {
  position: relative;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  height: 11.56rem;
  width: 50.5rem;
  opacity: 0;
}


/* Texte principal */
.sec2 .para1 {
  color: #072335; /*rgba(7, 35, 53, 1)*/
  font-family: 'Montserrat', sans-serif;
  line-height: 3.05rem;
  font-weight: 700;
  font-size: 2.5rem;
  width: 73%;
}

.sec2 .para1::after { /*Modifier recemment */
  content: "";
  position: absolute;
  bottom: 20%;
  left: 27%;
  width: 25%;
  height: 0.63rem;
  background-color: #ff4500;
  opacity: 0;
}

/* modifié recemment */
.sec2 p {
  background-color: transparent;
  color: #072335;
  text-align: left;
}


/*Modifier recemment */
/* Liens */
.sec2 a {
  background-color: transparent;
  position: absolute;
  left: 11.5rem;
  bottom: -3rem;
  color: #ff712e;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #ff712e;
  border-radius: 15px;
  padding: 0.3rem 1rem;
  transition: 0.5s;
  opacity: 0;
}

.sec2 a:hover {
  color: var(--coulBlanche);
  background-color: var(--couleur1);
}

/* Partie 2 */
.partie-2 {
  background-color: transparent;
  height: 4.88rem;
  width: 60rem;
  margin: 1.5rem 0rem;
  text-align: justify;
  letter-spacing: 0.7px;
  opacity: 0;
}


/* Ajouter recemment */
.partie-2 p{
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1.625rem;
}

/* Vague et ruche */
.vague-sec2 {
  background-color: #ffffff;
  position: absolute;
  bottom: -35rem;
  width: 100%;
  left: 0px;
  z-index: -1;
}

.ruche-top {
  position: absolute;
  width: 78%;
  height: 90rem;
  right: 0;
  top: -49rem;
}

/* Animations pour la section 2 */
.grand-div-1.enhanced .partie-1, .grand-div-1.enhanced .partie-2, .grand-div-1.enhanced a{
  animation-name: welcomeFadeIn,welcomeMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both;
  animation-delay: calc(var(--global-staggered-delay)*0.7s);
}

/* Délais spécifiques pour les parties */
/* .sec2 .partie-1 {
  animation-delay: calc(var(--global-staggered-delay)*1s)
} */

.grand-div-1.enhanced .partie-2 {
  animation-delay: calc(var(--global-staggered-delay)*1.5s);
}

.grand-div-1.enhanced a {
  animation-delay: calc(var(--global-staggered-delay)*3.2s);
}

@keyframes welcomeFadeIn {
  0% {
      opacity: 0
  }

  100% {
      opacity: 1
  }
}

@keyframes welcomeMoveIn {
  0% {
      transform: translateY(65px)
  }

  100% {
      transform: translateY(0)
  }
}

.grand-div-1.enhanced .para1::after{ /*Modifier recemment */
  animation-name: h1AfterFadeIn,h1AfterMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both; 
  animation-delay: calc(var(--global-staggered-delay)*5s); /*Modifier recemment */
}







/* Style général de la section 3 */
.sec3 {
  position: relative;
  height: auto;
  width: 90%;
  margin: 0rem auto;
  margin-top: 10rem;
  z-index: 2;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.sec3 a {
  text-decoration: none;
}

.contenu2-photo {
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, auto));
  grid-gap: 4rem;
  align-items: center;
  text-align: center;
}

.sec3 .block-22, .sec3 .block-23 {
  position: relative;
  cursor: pointer;
  opacity: 0;
}


/* Animations pour la section 3 */
.block-2.enhanced{
  animation-name: welcomeFadeIn,welcomeMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.8s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both;
  animation-delay: calc(var(--global-staggered-delay)*2s);
}


/*Ajouter recemment */
.sec3 .oval-bisard.enhanced{ 
  animation-name: h1AfterFadeIn2,h1AfterMoveIn2;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both; 
  animation-delay: calc(var(--global-staggered-delay)*5s);
}


.block-2 img {
  max-width: 100%;
  width: 42rem;
  height: auto;
  border-radius: 5px;
}

.titre2 {
  background: transparent;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  border-radius: 5px;
  top: 0;
  left: 0;
  transition: all .35s;
  z-index: 2;
}

.titre2:hover {
  background: linear-gradient(rgba(18, 17, 17, 0.06) 0%, #1a1c1a 100%);
}

.titre2 h4 {
  position: absolute;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--coulBlanche);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all .35s;
}

.titre2:hover h4 {
  bottom: 49%;
  opacity: 1;
}

/*modifier recemment*/
.sec3 .oval-bisard{
  position: absolute;
  bottom: 2%;
  right: -0.5%;
  width: 50%;
  height: 20%;
  opacity: 0;

}

/*modifier recemment*/
.sec3 .oval-bisard .oval-bisard-image {
  width: 100%;
  height: 85%;
  position: absolute;
  z-index: 3;
}

/*modifier recemment*/
.sec3 .sec3-OB-text-container{
  position: absolute;
  top: 25%;
  right: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 75%;
  height: 7%;
  z-index: 5;
}



.sec3 .oval-bisard p {
  color: var(--coulBlanche);
  font-family: "Roboto", sans-serif;/*modifier recemment*/
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  /* Taille du titre légèrement augmentée */
}





/* Style général de la section 4 */
.sec4 {
  position: relative;
  height: 60vh;
  width: 100%;
  justify-content: center;
}

.sec4 .one {
  background-color: transparent;
  height: 4.07rem;
  right: 13.8rem;
  object-fit: cover;
  position: absolute;
  top: 1rem;
  width: 4.08rem;
}

.sec4 .two {
  background-color: transparent;
  height: 18.25rem;
  right: 0.8rem;
  position: absolute;
  /* top: 6rem; */
  bottom: 1rem;
  width: 14rem;
}





/* Style général de la section 5 */
.sec5 {
  position: relative;
  height: 155vh;
  width: 100%;
  display: flex;
  justify-content: center;
  /* top: 425px; */
}

.sec5-1 {
  background-color: transparent;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  top: 0rem;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec5 .sec5-h1 {

  color: #072335; /*rgba(7, 35, 53, 1)*/
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  height: auto;
  /* left: 27.8rem; */
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 0rem;
  width: auto;
  font-size: 3rem;
  opacity: 0;

}

.sec5 .sec5-h1::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: -5px;
  width: 11.25rem;
  height: 0.63rem;
  background-color: #ff4500;
  opacity: 0;
}

.sec5 .opter_pour{
  color: var(--couleur1);
}

.sec5 .para4 {
  background-color: transparent;
  font-size: 1rem;
  color: #072335;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  height: auto;
  /* left: 15.75rem; */
  line-height: 1.63rem;
  position: absolute;
  text-align: justify;
  top: 7rem;
  width: 58.5rem;
  opacity: 0;
}

.sec5 .frame {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 4.38rem 6.25rem;
  justify-content: center;
  position: absolute;
  width: 75.75rem;
  top: 15rem;
}

.sec5 .frame .arti {
  background-color: transparent;
  height: 19.63rem;
  position: relative;
  width: 30.13rem;
  opacity: 0;
}

.sec5 .frame .arti .rectanglea {
  background-color: #FFFFFF;
  border-radius: 1.38rem;
  box-shadow: 0rem 0rem 0.82rem #234492d9;
  height: 19.63rem;
  left: 0rem;
  position: absolute;
  top: 0rem;
  width: 30.13rem;
}

.sec5 .frame .arti .nbrea {
  background-color: transparent;
  height: 2.94rem;
  left: 1.25rem;
  object-fit: cover;
  position: absolute;
  top: 1.7rem;
  width: 3rem;
}

.sec5 .frame .arti .paraa {

  background-color: transparent;
  font-style: normal;
  font-weight: 500;
  height: auto;
  left: 5.38rem;
  line-height: 1.63rem;
  position: absolute;
  text-align: left;
  top: 6.25rem;
  width: 21.82rem;
}

.sec5 .frame .arti .expertisea {
  background-color: transparent;
  font-style: normal;
  font-weight: 600;
  height: auto;
  left: 5.38rem;
  line-height: normal;
  position: absolute;
  text-align: left;
  top: 2.13rem;
  width: 22.563rem;
  color: #072335;
}

/* Animations pour la section 3 */
.sec5 .enhanced.sec5-1 .sec5-h1, .sec5 .enhanced.sec5-1 .para4{
  animation-name: welcomeFadeIn,welcomeMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both;
}

.sec5 .frame .arti1.enhanced, .sec5 .frame .arti3.enhanced{
  animation-name: h1AfterFadeIn,h1AfterMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both;
  animation-delay: calc(var(--global-staggered-delay)*3s);
}

.sec5 .frame .arti2.enhanced, .sec5 .frame .arti4.enhanced{
  animation-name: h1AfterFadeIn2,h1AfterMoveIn2;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both;
  animation-delay: calc(var(--global-staggered-delay)*3s);
}

/* Délais spécifiques pour les parties */
/* .sec5.enhanced .sec5-h1 {
  animation-delay: calc(var(--global-staggered-delay)*1s)
} */


.sec5 .enhanced.sec5-1 .sec5-h1::after{
  animation-name: h1AfterFadeIn,h1AfterMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both; 
  animation-delay: calc(var(--global-staggered-delay)*4s);
}



@keyframes h1AfterFadeIn {
  0% {
      opacity: 0
  }

  100% {
      opacity: 1
  }
}

@keyframes h1AfterMoveIn {
  0% {
      transform: translateX(-65px)
  }

  100% {
      transform: translateX(0)
  }
}


@keyframes h1AfterFadeIn2 {
  0% {
      opacity: 0
  }

  100% {
      opacity: 1
  }
}

@keyframes h1AfterMoveIn2 {
  0% {
      transform: translateX(65px)
  }

  100% {
      transform: translateX(0)
  }
}






/* Style général de la section 6 */
.sec6 {
  position: relative;
  height: 370vh;
  width: 100%;
  /* display: flex; */
  /* justify-content: center; */
  /* top: 425px; */
}

.sec6 .img6 {
  background-color: transparent;
  height: 33.94rem;
  left: 0rem;
  position: absolute;
  top: 9.13rem;
  width: 18.31rem;
  z-index: 4;
}

.sec6 .img7 {
  background-color: transparent;
  height: 25.25rem;
  left: 0rem;
  position: absolute;
  top: 15.5rem;
  width: 100%;
}

.sec6 .divsec6 {
  background-color: #f95203;
  height: 10rem;
  border-radius: 50%;
  left: 3.44rem;
  width: 10rem;
  position: absolute;
  top: 21.69rem;
  z-index: 6;
}

.sec6 .img8 {
  background-color: transparent;
  height: 20rem;
  left: 0rem;
  position: absolute;
  top: 20.7rem;
  width: 27rem;
  z-index: 5;
}

/* Conteneur principal */
.sec6-text-container1 {
  background-color: transparent;
  position: absolute;
  left: 3rem;
  top: 58rem;
  width: 45rem;
  height: 6.88rem;
  z-index: 4;
  opacity: 0; /* Commence invisible */
  transform: translateY(30px); /* Départ légèrement plus bas */
}

/* Texte */
.sec6-text1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--coulBlanche);
  line-height: 3.05rem;
}

/* Aucun effet supplémentaire ici, GSAP gère tout */


/* Classe ajoutée par GSAP lors de l'animation */
.sec6-text-container1.gsap-animated {
  opacity: 1; /* Élément devient visible */
  transform: translateY(0); /* Reprend sa position normale */
}


.sec6 .img9 {
  background-color: transparent;
  height: 67.71rem;
  left: 0rem;
  object-fit: cover;
  position: absolute;
  top: 25.5rem;
  width: 100%;
  z-index: 1;

}

.partic-1 {
  background-color: transparent;
  height:46rem;
  left: 0rem;
  position: absolute;
  top: 38.5rem;
  width: 100%;
  z-index: 2;
}

.sec6 .img10 {
  background-color: transparent;
  height: 13.44rem;
  /* left: 50rem; */
  right: 15rem;
  position: absolute;
  /* top: 82.25rem; */
  bottom: 54rem;
  width: 15rem;
}

.sec6 .img11 {
  background-color: transparent;
  height: 1244px;
  position: absolute;
  top: 494px;
  width: 100%;
}

.sec6 .img12 {
  background-color: transparent;
  height: 13.813rem;
  left: 5.5rem;
  position: absolute;
  /* top: 106.25rem; */
  bottom: 21.5rem;
  width: 13.75rem;
  opacity: 0;
}

.coll-image {
  background-color: transparent;
  position: absolute;
  /* top: 110.25rem; */
  bottom: 25.4rem;
  left: 9.3rem;
  width: 6.31rem;
  height: 6.31rem;
  opacity: 0;
}

.sec6 .nos {
  background-color: transparent;
  color: #072335;
  font-style: normal;
  font-weight: 900;
  height: auto;
  left: 26.88rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  /* top: 1790px; */
  bottom: 26rem;
  width: auto;
  font-size: 3.5em;
  opacity: 0;
}

.sec6 .partenaire {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 2rem;
  width: 100%;
  height: auto;
  /* margin-left: 320px; */
  /* right: 170px; */
  /* left: 50%;
  right: 50%; */
  margin:0 auto;
  opacity: 0;

}

.sec6 .partenaire .partenaire-content{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec6 .partenaire .partenaire-content .splide__list{
  width: 90%;
  height: 100%;
}


.sec6 .partenaire .imgp {
  max-width: 20%;
  height: auto;
  margin: 0 5rem;
}

/* Animations pour la section 6 */
.sec6 .enhanced.img12, .sec6 .enhanced.nos, .sec6 .enhanced.partenaire{
  animation-name: welcomeFadeIn,welcomeMoveIn;
  animation-duration: 1s,1.5s;
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both;
  animation-delay: 0.5s;
}

/* Délais spécifiques pour les parties */
/* .sec5.enhanced .sec5-h1 {
  animation-delay: calc(var(--global-staggered-delay)*1s)
} */

.sec6 .enhanced.img12 {
  /* animation-delay: calc(var(--global-staggered-delay)*1s); */
  animation-delay: calc(0.5*1s);
}

.sec5 .enhanced.partenaire {
  animation-delay: calc(0.253s);
}

.sec6 .enhanced.coll-image{
  animation-name: h1AfterFadeIn,h1AfterMoveIn;
  animation-duration: 1s, 1.5s;
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both; 
  animation-delay: calc(0.25*2s);
}






/* Style général de la section 7 */
.sec7 {
  position: relative;
  height: 120vh;
  width: 100%;

}

.sec7-containter {
  background-color: transparent;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.sec7-left {
  background-color: transparent;
  position: relative;
  margin: auto 0rem;
  right: 3rem;
  width: 30%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.sec7-right {
  background-color: transparent;
  position: relative;
  left: 5rem;
  width: 40%;
  height: 80%;
  opacity: 0;
}

.sec7 .divsec7 {
  position: relative;
  color: transparent;
  font-style: normal;
  font-weight: 900;
  height: auto;
  line-height: normal;
  text-align: left;
  width: 26.19rem;
  margin-bottom: 3rem;

}

.sec7 span {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.25px;
  padding: 1rem 0rem;
}

.sec7 .divsec7 .span0 {
  color: #0c2d60;
}

.sec7 .divsec7 .span1 {
  color: #e75114;

}

.sec7 .divsec7 .span2 {
  color: #f95203;
}

.divsec7::after {
  content: "";
  position: absolute;
  top: 7.7rem;
  left: 0rem;
  width: 11rem;
  height: 0.7rem;
  background-color: #072335;
  opacity: 0;
}

.nous {
  background-color: transparent;
  font-family: "Roboto", Helvetica;
  color: #072335;
  font-style: normal;
  font-weight: 500;
  height: auto;
  text-align: justify;
  width: 27.25rem;
}

.sec7 .img8 {
  background-color: transparent;
  position: absolute;
  height: 37.38rem;
  /* left: 698px; */
  /* object-fit: cover; */
  /* top: -155px; */
  width: 37.88rem;
}

.sec7 .img9 {
  position: absolute;
  border-radius: 82px / 82px;
  height: 165px;
  bottom: 0rem;
  /* left: 703px; */
  /* top: 301px; */
  width: 164px;
  z-index: 1;
}

.sec7 .img11 {
  background-color: transparent;
  height: 776px;
  object-fit: cover;
  position: absolute;
  left: 0px;
  /* top: 150px; */
  bottom: -24rem;
  width: 804px;
}

/* Animations pour la section 2 */
.sec7 .sec7-containter .sec7-left.enhanced, .sec7 .sec7-containter .sec7-right.enhanced{
  animation-name: welcomeFadeIn,welcomeMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both;
  animation-delay: .6s;
}

.sec7 .sec7-containter .sec7-left.enhanced .divsec7::after{
  animation-name: h1AfterFadeIn,h1AfterMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both; 
  animation-delay: calc(var(--global-staggered-delay)*3s);
}




/* Style général de la section 8 */
.sec8 {
  position: relative;
  height: 200vh;
  width: 100%;
}

.sec8-container {
  background-color: transparent;
  position: relative;
  top: 10rem;
  width: 100%;
  height: 95%;
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: center;
  z-index: 2;

}

.rectangle-ombre {
  position: relative;
  background-color: #ffffff;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-color: #072335;
  border-left-style: none;
  border-radius: 18px;
  border-right-style: none;
  border-top-style: none;
  box-shadow: 0px 4px 39px #d37014b0;
  height: 14rem;
  width: 90%;
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.container-containt {
  background-color: transparent;
  position: relative;
  /* margin: auto; */
  width: 95%;
  height: 95%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: start;
  transition: transfor .4s var(--global-animation-easing-function);
  
}



.para {
  color: #072335;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-align: justify;
  font-family: "Roboto", Helvetica;
  font-size: 16px;

}


.h {
  background-color: transparent;
  letter-spacing: 0.00px;
  line-height: normal;
  text-align: justify;
  color: #072335;
  font-family: "Montserrat", Helvetica;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
}


.sec8 .h82 {
  position: relative;
  left: 75%;
}

.sec8-a1 {
  background-color: transparent;
  position: relative;
  text-decoration: none;
  left: 75%;
  bottom: 1rem;
  /* padding: 0.4rem 0.7rem; */
  width: 9rem;
  height: 1.38rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}


.sec8-a1 div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec8-a1-p {
  position: absolute;
  left: 5%;
  top: -0.1rem;
  color: rgba(120, 120, 120, 1);
  font-size: 1rem;
  transition: transform 0.4s ease;
}

.arrow2 {
  position: absolute;
  color: rgba(120, 120, 120, 1);
  right: 5%;
  width: 5%;
  height: 70%;
  transition: transform 0.4s ease;
}


.sec8-a1:hover .arrow2 {
  transform: scale(1.3);
}

.sec8-a1:hover .sec8-a1-p {
  transform: scale(1.05);
}

.ruche-solution1{
  position: absolute;
  height: 60rem;
  width: 80%;
  right: 0rem;
  top: 10rem;
}

/* Animations pour la section 2 */
.sec8 .sec8-container .rectangle-ombre1.enhanced, .sec8 .sec8-container .rectangle-ombre2.enhanced,
 .sec8 .sec8-container .rectangle-ombre3.enhanced{
  animation-name: welcomeFadeIn,welcomeMoveIn;
  animation-duration: calc(var(--global-staggered-opacity-duration)*1s),calc(var(--global-staggered-translate-y-duration)*1.5s);
  animation-timing-function: var(--global-animation-easing-function);
  animation-fill-mode: both;
  animation-delay: .4s;
}







/* Style général de la section 9 */

.sec9 {
  background-color: transparent;
  position: relative;
  height: 180vh;
  margin-bottom: 10rem;
}

.sec9 .home {
  background-color: transparent;
  position: absolute;
  height: 92%;
  width: 100%;
  z-index: 1;
}

.sec9 .partic-2 {
  background-color: transparent;
  height: 64%;
  left: 0rem;
  position: absolute;
  top: 10.5rem;
  width: 100%;
  z-index: 2;
}

.sec9-containt {
  background-color: transparent;
  position: absolute;
  top: 23%;
  left: 5%;
  width: 40rem;
  height: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.sec9-containt .div1 {
  background-color: transparent;
  position: relative;
  width: 100%;
  height: 14.14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.sec9-containt .div1-h1{
  color: var(--coulBlanche);
  font-family: 'Montserrat', sans-serif;
  font-size: 3.13rem;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.sec9-containt .div1-text{
  width: 100%;
  height: 5.64rem;
  font-weight: 500;
  justify-content: start;
  align-items: center;
}


.sec9-containt .div1-text p{
  color: var(--coulBlanche);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.25px;

}

.sec9-containt .div1 .buttons-container {
  display: flex;
  justify-content: start;
  align-items: start;

}

.sec9-containt .div1 .button-1 {
  width: 13rem;
  height: 2.5rem;
  background-color: transparent;
  color: var(--couleur1);
  font-size: 1.2rem;
  font-weight: bold;
  border: solid 1px var(--couleur1);
  border-radius: 0.7rem;
  cursor: pointer;
  transition: 0.4s;
}

.sec9-containt .div1 .button-1:hover{
  background-color: var(--couleur1);
  color: var(--coulBlanche);
}


.sec9-containt .div2 {
  background-color: transparent;
  position: relative;
  width: 31.20rem;
  height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.sec9-containt .div2-h3{
  color: var(--coulBlanche);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.88rem;
  font-weight: 600;
  line-height: 2.29rem;
}
.sec9-containt .div2-text{
  width: 90%;
  height: 4rem;
  justify-content: start;
  align-items: center;
}
.sec9-containt .div2-text p{
  color: var(--coulBlanche);
  font-family: "Roboto", Helvetica;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 1.63rem;
}

.sec9-containt .div2 .laste-form-container {
  background-color: var(--coulBlanche);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.7rem;
  width: 23.56rem;
  height: 2.5rem;
  max-width: 100%;
}

.sec9-containt .div2 .button-2 {
  width: 40%;
  height: 100%;
  background-color: var(--coulBlanche);
  color: var(--couleur1);
  font-size: 1.2rem;
  font-weight: bold;
  border: solid 1px var(--couleur1);
  border-radius: 0.7rem;
  cursor: pointer;
  transition: 0.4s;
}
.sec9-containt .div2 input{
  padding: 0.6rem 1rem;
  width: 60%;
  height: 90%;
  border-radius: 0.7rem;
  border: none;
  outline: none;
}

.sec9-containt .div2 input::placeholder {
  text-align: center; /* Centre le placeholder horizontalement */
  color: gray; /* Personnalisation de la couleur */
  font-style: italic; /* Exemple de style */
}

.sec9-containt .div2 .button-2:hover{
  background-color: var(--couleur1);
  color: var(--coulBlanche);
}




/* Scroll Btn */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #ff4500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: #ff5722;
  transform: translateY(-3px);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
  }

  .scroll-top-btn svg {
    width: 16px;
    height: 16px;
  }
}




/* Style général du footer */
.footer-section {
  position: relative;
  width: 90%;
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
  margin: 0px auto;
  background-color: #fff;
  color: #072335;
}


/* Partie gauche */
.footer-left {
  width: 50%;
}

.footer-title {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 2.5rem;
  width: 80%;
}

.footer-highlight-1 {
  background-color: transparent;
  font-family: "Montserrat", sans-serif;
  color: var(--couleur1);
  font-size: 1.9rem;
  font-weight: 600;
  /* Diminution de l'épaisseur du texte */
  letter-spacing: 0px;
  line-height: normal;
}

.footer-highlight-2 {
  background-color: transparent;
  color: #072335;
  font-size: 1.5rem;
  font-weight: 600;
  /* Diminution de l'épaisseur du texte */
  letter-spacing: 0px;
  line-height: normal;
  text-align: left;
}

.nav-adr-social {
  height: 335px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.footer-nav li {
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.footer-nav a {
  color: #333;
  font-weight: 500; /* Diminution de l'épaisseur du lien */
  font-size: 1rem;
  transition: 0.4s;
  text-decoration: none; /* Retire le soulignement des liens */
}

.footer-nav a:hover {
  color: var(--couleur1);
  text-decoration: none; /* Assure que le lien ne soit pas souligné au survol */
}

.footer-nav li::after {
  content: "";
  display: block;
  width: 14.5rem;
  height: 0.5px;
  background-color: #072335;
  margin-top: 5px;
}

.footer-address p {
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-social img {
  width: 45px;
  height: 45px;
  transition: all 0.4s;
}

.footer-social img:hover {
  transform: translateY(-5px);
}

.footer-copyright {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  margin-top: 40px;
  color: #666;
}




/* Partie droite du footer */
.footer-right {
  height: 24rem;
  width: 34rem;
  position: relative;
  display: flex;
  flex-direction: row;
  margin-top: 6.24rem;
}


/* Les images */
.overlay-images {
  position: relative;
  height: 100%;
  width: 100%;
}

.overlay-image {
  background-color: var(--coulBlanche);
  position: absolute;
  top: 0;
  width: 5.5rem;
  height: 24.44rem;
}

.image1 {
  left: -1rem;
  z-index: 6;
}

.image2 {
  left: 2.3rem;
  z-index: 7;
}

.image3 {
  left: 5.1rem;
  z-index: 8;
}

.image4 {
  left: 9.25rem;
  z-index: 9;
}

.image5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.image6 {
  right: 9.25rem;
  z-index: 9;
}

.image7 {
  right: 6rem;
  z-index: 8;
}

.image8 {
  right: 2.8rem;
  z-index: 7;
}

.image9 {
  right: 0;
  z-index: 6;
}


/* Les bandes */
.bande {
  background-color: var(--coulBlanche);
  position: absolute;
  height: 100%;
  z-index: 50;
}

.bande0 {
  width: 1.3rem;
  left: -1.6rem;
}

.bande1 {
  width: 0.8rem;
  left: 1.5rem;
}

.bande2 {
  width: 0.8rem;
  left: 4.4rem;
}

.bande3 {
  width: 1.3rem;
  left: 8rem;
}

.bande4 {
  width: 1.3rem;
  left: 13.03rem;
}

.bande5 {
  width: 1.3rem;
  right: 13.03rem;
}

.bande6 {
  width: 1.3rem;
  right: 8rem;
}

.bande7 {
  width: 1.3rem;
  right: 4.8rem;
}

.bande8 {
  width: 0.8rem;
  right: 2rem;
}


/* Les rectangles */
.rectangle {
  background-color: var(--coulBlanche);
  position: absolute;
  z-index: 50;
}

.rectangle-1-1 {
  height: 8rem;
  width: 2rem;
  top: 1.6rem;
  left: -0.4rem;
}

.rectangle-1-2 {
  height: 4.9rem;
  width: 2rem;
  bottom: 5.85rem;
  left: -0.4rem;
}

.rectangle-2-1 {
  height: 4.75rem;
  width: 2.15rem;
  top: 1.6rem;
  left: 2.35rem;
}

.rectangle-2-2 {
  height: 3.85rem;
  width: 2.15rem;
  bottom: 1.6rem;
  left: 2.3rem;
}

.rectangle-3 {
  height: 3.2rem;
  width: 3.1rem;
  top: 10rem;
  left: 5.1rem;
}

.rectangle-4-1 {
  height: 4.85rem;
  width: 4.1rem;
  top: 1.6rem;
  left: 9.1rem;
}

.rectangle-4-2 {
  height: 4.1rem;
  width: 4.1rem;
  bottom: 1.6rem;
  left: 9.1rem;
}

.rectangle-6 {
  height: 4.6rem;
  width: 4.9rem;
  bottom: 5.9rem;
  right: 8.1rem;
}

.rectangle-7 {
  height: 3.2rem;
  width: 2rem;
  top: 6.3rem;
  right: 6.1rem;
}

.rectangle-9-1 {
  height: 3.2rem;
  width: 2rem;
  top: 6.3rem;
  right: 0.1rem;
}

.rectangle-9-2 {
  height: 8.4rem;
  width: 2rem;
  bottom: 2.2rem;
  right: 0.1rem;
}