: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;
}



/* Appliquer Montserrat pour les titres et Roboto pour le texte */
body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--coulBlanche);
}



/* 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;
}





/* 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.5s 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.5s linear, border-bottom 0.5s 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;
}

.navbar .navbar-nav .nav-link {
  color: var(--coulBlanche);
  font-weight: 500;
  font-size: 1rem;
  transition: 0.6s linear;
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--couleur1);
}

.globe-icon {
  background: none;
  color: var(--coulBlanche);
  transition: color 0.4s ease;
  text-decoration: none;
  margin-left: 2rem;
}

.globe-icon:hover {
  color: var(--couleur1);
}


/* Style de la navbar et du header après scroll */
.header.scrolled {
  background: none;
  height: 4rem;
  transition: 0.5s linear;
}

.navbar.scrolled {
  background-color: var(--coulBlanche);
  /* border-bottom: 1px solid #ddd; */
}

.navbar-brand img {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.navbar.scrolled .navbar-nav .nav-link,
.navbar.scrolled .globe-icon {
  color: rgba(7, 35, 53, 1);
  transition: 0.6s 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;
}

.navbar .dropdown-menu .dropdown-item {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 50px;
  transition: 0.6s linear;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: var(--couleur1);
  color: var(--coulBlanche);
}

/* hero-section */
.hero-section {
  background-color: #f4f4f4;
  position: relative;
  height: 107vh;
  left: 0%;
  top: 0%;
  width: 100%;
}

.image-adn-heros {
  background-color: transparent;
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 51;
}

.oval-vide-blanc-bor-orange-left {
  background-color: transparent;
  position: absolute;
  height: 66%;
  left: 0%;
  top: 40%;
  width: 25.2%;
  z-index: 52;
}

.oval-vide-blanc-bor-orange-bas {
  background-color: transparent;
  position: absolute;
  height: 61%;
  left: 18%;
  top: -6%;
  width: 56.2%;
  z-index: 52;
}


.oval-vide-blanc-bor-orange-dr {
  background-color: transparent;
  position: absolute;
  height: 407px;
  right: 0px;
  top: 390px;
  width: 232px;
  z-index: 52;
}

.hero-text-container {
  background-color: transparent;
  position: absolute;
  color: white;
  font-family: 'Montserrat', sans-serif;
  height: auto;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0px;
  line-height: normal;
  text-align: center;
  top: 60%;
  width: 382px;
  z-index: 52;
}

.hero-text {
  font-size: 3.25rem;
  font-weight: 700;
}

.hero-text-bold {
  font-size: 3.35rem;
  font-weight: 900;
}



/* About Section */

.about-section {
  background-color: transparent;
  position: relative;
  width: 100%;
  height: 123vh;
}

.vague-gris-blanc {
  background-color: transparent;
  position: absolute;
  height: 165%;
  top: -40%;
  width: 100%;
  z-index: 50;
}

/* Grands écrans (1400px et plus) */
@media (min-width: 1400px) {
  .vague-gris-blanc {

    height: 135%;
  }
}
/* Grands écrans (1273px et 1399px) */
@media(max-width: 1281px) and (min-width: 1399px){
  .vague-gris-blanc {

    height: 150%;
  }
}



.about-texte-container {
  background-color: transparent;
  position: absolute;
  height: auto;
  width: 75%;
  top: 37%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  z-index: 52;
  margin-bottom: 50px;
}

/* Grands écrans (1273px et plus) */
@media (min-width: 1281px) {
  .about-texte-container {
    top: 30%;
  }
}

.about-section-title-c{
  position: relative;
  width: auto;
  height: auto;
}

.about-title {
  background-color: transparent;
  font-family: 'Montserrat', sans-serif;
  line-height: 93px;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  color: #ff6600;
  margin-bottom: 40px;
}

/* Grands écrans (1273px et plus) */
@media (min-width: 1281px) {
  .about-title {
    /* background-color: transparent;
      font-family: 'Montserrat', sans-serif;
      line-height: 93px; */
    font-size: clamp(3rem, 1vw, 8rem);
    /* Dynamique et adaptative */
    /* font-weight: bold;
      text-align: center;
      white-space: nowrap;
      color: #ff6600;
      margin-bottom: 40px; */
  }
}

.about-title::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 11%;
  width: 10.7rem;
  height: 11%;
  background-color: #072335;
}

/* Grands écrans (1273px et plus) */
@media (min-width: 3195px) {
  .about-title::after {
    left: 25.9%;
  }
}

/* Grands écrans (1273px et plus) */
@media (max-width: 2000px) and (min-width:  1440px) {
  .about-title::after {
    left: 16%;
  }
}

/* Grands écrans (1273px et plus) */
@media (max-width: 1437px) and (min-width: 1282px) {
  .about-title::after {
    left: 14%;
  }
}

/* Grands écrans (1273px et plus) */
@media (max-width: 2500px) and (min-width:  2000px) {
  .about-title::after {
    left: 27%;
  }
}

/* Grands écrans (1273px et plus) */
@media (max-width: 3195px) and (min-width:  2500px) {
  .about-title::after {
    left: 31%;
  }
}
/* Grands écrans (1273px et plus) */
@media (max-width: 3700px) and (min-width: 3198px) {
  .about-title::after {
    left: 35%;
  }
}
/* Grands écrans (1273px et plus) */
@media (max-width: 3900px) and (min-width: 3705px) {
  .about-title::after {
    left: 37%;
  }
}

.about-text {
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  text-align: justify;
  color: rgba(7, 35, 53, 1);
  font-size: 1rem;
  font-weight: 500;
  height: auto;
  line-height: normal;
}

/* Grands écrans (1273px et plus) */
@media (min-width: 1281px) {
  .about-text {
    /* background-color: transparent;
      font-family: 'Roboto', sans-serif;
      text-align: justify;
      color: rgba(7, 35, 53, 1); */
    font-size: clamp(1rem, 1vw, 4rem);
    /* Dynamique et adaptative */
    /* font-weight: 500;
      height: auto;
      line-height: normal; */
  }
}

.about-section .avion-traie-contaimer{
  position: absolute;
  height: 13.5rem;
  width: 7.5rem;
  right: 16.5%;
  bottom: 2%;
  z-index: 52;
}


@media (min-width: 2100px) {
  .plane-icon {
    height: 7rem;
    width: 7rem;
  }
  .traieApropos1 {
    height: 13.63rem;
    width: 6.13rem;
  }

  .about-section .avion-traie-contaimer{
    bottom: 27%;

  }
}
@media (max-width: 2099px) and (min-width: 1440px) {
  .about-section .avion-traie-contaimer{
    bottom: 27%;

  }
}

/* @media (max-width: 1437px) and (min-width: 1282px) {
  .about-title::after {
    left: 14%;
  }
} */
@media (max-width: 1437px) and (min-width: 1280px) {
  .about-section .avion-traie-contaimer{
    bottom: 12%;

  }
}


.plane-icon {
  background-color: transparent;
  position: absolute;
  height: 4rem;
  width: 4rem;
  top: 0%;
  object-fit: cover;
}

.traieApropos1 {
  background-color: transparent;
  height: 10.63rem;
  width: 3.13rem;
  right: 5%;
  position: absolute;
  bottom: -40px;
}

/* mission vision et valeur */
.miss-vis-val-section {
  background-color: transparent;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.13rem;
  margin: 4rem auto 0px auto;
}

@media (max-width: 1437px) and (min-width: 1280px) {
  .miss-vis-val-section {

    margin: 3vh auto 0px auto;
  }
}

@media (min-width: 1440px) {
  .miss-vis-val-section {

    margin: -13vh auto 0px auto;
  }
}

.mission,
.vision {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 95%;
  margin: 200px auto;
  /* Augmentation de la marge verticale pour plus d'espace */
}

@media (min-width: 1440px) and (max-width: 2040px) {
  .mission,
  .vision,.valeur {
    width: 80%;
    max-width: 85%;
  }
  
}

@media (min-width: 2048px) and (max-width: 2995px) {
  .mission,
  .vision,.valeur {
    width: 70%;
    max-width: 75%;

  }
  
}

@media (min-width: 3000px) {
  .mission,
  .vision,.valeur {
    width: 60%;
    max-width: 65%;

  }
  
}


.mission .container-text-mission,
.vision .container-text-vision {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  margin-left: 1rem;
}

.valeur {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 95%;
  margin: 15.6rem auto 18rem auto;
  /* Augmentation de la marge verticale pour plus d'espace */
}

.triangle-vide-bord-orang-gras {
  position: absolute;
  left: 110px;
  top: 220px;
  height: 334px;
  width: 340px;
}

.valeur .container-text-valeur {
  width: 45%;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 20px;
}

@media (min-width: 1430px) and (max-width: 2000px) {
  .valeur .container-text-valeur {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-left: 1rem;
  }
  
}

@media (min-width: 2010px) and (max-width: 2900px) {
  .valeur .container-text-valeur {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-left: 10%;
  }
  
}

@media (min-width: 2901px) {
  .valeur .container-text-valeur {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-left: 15%;
  }
  
}

.miss-vis-val-section h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.title-mission,
.title-valeur {
  color: #ff6600;
}

.title-vision {
  color: #032af9;
}

.miss-vis-val-section p {
  font-family: "Roboto", sans-serif;
  color: #072335;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  font-weight: 500;
}

.h2-text-valeur-1 {
  font-size: var(--titre3);
  font-style: var(--font-style1);
  font-weight: 700;
  color: var(--couleur3);
  margin: 20px 0 10px 0;
}

.p2 {
  font-size: var(--texte1);
  color: var(--couleur3);
  text-align: center;
}

.mission .container-image-mission,
.vision .container-image-vision,
.valeur .container-image-valeur {
  position: relative;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-mission,
.image-vision {
  position: absolute;
  width: 400px;
  height: auto;
  z-index: 53;
  top: 50%;
  transform: translateY(-50%);
}

.oval-image-mission,
.oval-image-vision {
  position: absolute;
  width: 450px;
  height: auto;
  z-index: 52;
  top: 50%;
  transform: translateY(-50%);
}

.image-valeur {
  position: absolute;
  width: 400px;
  /* Ajuste la largeur légèrement pour la centrer mieux */
  height: auto;
  z-index: 53;
  top: 50%;
  left: 52%;
  /* Ajout de left pour forcer le centrage horizontal */
  transform: translate(-50%, -50%);
  /* Centrage horizontal et vertical */
}

.oval-image-valeur {
  position: absolute;
  width: 460px;
  /* Ajustement de la taille pour couvrir l'image */
  height: auto;
  z-index: 52;
  top: 50%;
  /* Alignement avec le centre vertical */
  left: 50%;
  /* Centrage horizontal */
  transform: translate(-50%, -50%);
  /* Centrage horizontal et vertical */
}

.trait-point-fleche {
  background-color: transparent;
  position: absolute;
  right: 0px;
  top: -1.5rem;
  height: 1488px;
  width: 1050px;
  z-index: 51;
}

.vague-haut-experience-client {
  background-color: transparent;
  position: absolute;
  bottom: -17rem;
  height: 454px;
  width: 100%;
  z-index: 1;
}




/* Style général pour la section contact-newsletter */
.contact-newsletter {
  position: relative;
  background-color: transparent;
  width: 100%;
  height: 140vh;
  color: var(--coulBlanche);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.contact-newsletter .back-temoi {
  position: absolute;
  width: 100%;
  height: 95%;
  z-index: 3;
}

.exp-temoignages {
  background-color: transparent;
  width: 100%;
  height: 40%;
  max-width: 75rem;
  /* Ajustement de la largeur pour mieux centrer */
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  top: 25%;
  z-index: 10;
}

.experiences h1.contenu {
  color: var(--couleur1);
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  /* Taille du titre légèrement augmentée */
}

.experiences h1.contenu::after {
  content: "";
  position: absolute;
  top: 4rem;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 11rem;
  height: 0.7rem;
  background-color: var(--coulBlanche);
}

.temoi-fleches {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}

.temoi-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.temoi-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.temoi-nom {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.temoi-nom p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--coulBlanche);
  width: 85%;
}

.contact-newsletter .temoi-nom-span3,
.contact-newsletter .temoi-nom-span2,
.contact-newsletter .temoi-nom-span1 {
  position: relative;
  font-size: 1.25;
  display: flex;
  justify-content: end;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.fleche {
  z-index: 10;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  transition: transform 0.3s ease;
}

.fleche:hover {
  transform: scale(1.2);
}

.indicateurs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.indicateurs .indic {
  width: 14px;
  height: 14px;
  background-color: #888;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.indicateurs .indic.active {
  background-color: var(--couleur1);
}

.contact-div {
  position: absolute;
  height: 12%;
  width: 80%;
  bottom: 10.63rem;
  left: -50px;
  text-align: left;
  max-width: 62.5rem;
  z-index: 10;
}

.text-contact {
  -webkit-text-stroke: 0.5px black;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
  font-size: 1rem;
  height: auto;
  color: var(--coulBlanche);
  /* Texte blanc */
  font-style: normal;
  /* Texte en italique */
  font-weight: 400;
  /* Réduire le poids de la police */
  line-height: 1.6;
  /* Espacement plus important entre les lignes */
  letter-spacing: 0.5px;
  /* Espacement entre les lettres */
  margin-bottom: 20px;
  /* Ajoute un espace en bas */
}

.btn-contact {
  position: absolute;
  left: 25%;
  bottom: 0%;
  background-color: var(--couleur1);
  border: 2px solid var(--couleur1);
  color: var(--coulBlanche);
  height: 34px;
  width: 125px;
  font-size: 1rem;
  /* Augmenter la taille de la police */
  font-family: "Montserrat", sans-serif;
  /* Police pour le bouton */
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-contact:hover {
  background-color: transparent;
  color: var(--couleur1);
}

/* Alignement plus précis pour la section Contact */
.contact-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin-left: 10%;
  /* Légèrement à gauche comme sur l'image */
}







/* foire aux questions */

.foire-aux-questions {
  position: relative;
  margin: 150px 100px;
  /* Pour centrer la section */
  width: 85%;
}

.title-fq {
  background-color: transparent;
  color: #072335;
  font-family: "Montserrat", sans-serif;
  /* Police pour le bouton */
  font-size: 3rem;
  font-weight: 700;
  height: 15%;
  text-align: center;
  width: 60%;
  margin-top: 53px;
  margin-bottom: 90px;
}

.text-fq {
  background-color: transparent;
  color: #072335;
  font-family: "Montserrat", sans-serif;
  /* Police pour le titre */
  font-size: 3rem;
  font-weight: 700;
  margin-left: -36px;
}

.line-fq {
  width: 182px;
  height: 11px;
  background-color: #ff6600;
  /* Couleur orange pour la ligne */
  margin-left: 10px;
  /* Centrer la ligne */
}

/* Style des questions et réponses */
.faq-item {
  width: 100%;
  margin-bottom: 50px;
  /* Espace entre chaque FAQ */
}

.faq-question {
  font-family: "Montserrat", sans-serif;
  /* Police pour les titres de question */
  font-size: 1.75rem;
  font-weight: 700;
  color: #072335;
  position: relative;
}

.faq-answer {
  font-family: "Roboto", sans-serif;
  /* Police pour les paragraphes de réponse */
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  border-bottom: 2px solid #072335;
  /* Augmente l'épaisseur de la ligne */
  padding-bottom: 15px;
  /* Espace sous la réponse */
}

/* 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 {
  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;
  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;
  font-family: "Montserrat", sans-serif;
  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;
  position: relative;
}

.footer-nav a {
  color: #333;
  font-family: "Roboto", sans-serif;
  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 {
  margin-top: 20px;
}

.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;
}