: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) */
}


*{
  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: transparent;
  position: relative;
  height: 100vh;
  left: 0px;
  top: 0px;
  width: 100%;
  /* margin-bottom: 5rem; */
}

.image-adn-heros {
  background-color: transparent;
  position: relative;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 51;
}

.oval-vide-blanc-bor-orange-left {
  background-color: transparent;
  position: absolute;
  height: 423px;
  left: 0px;
  top: 437px;
  width: 319px;
  z-index: 52;
}

.oval-vide-blanc-bor-orange-bas {
  background-color: transparent;
  position: absolute;
  height: 387px;
  left: 270px;
  top: 25%;
  width: 712px;
  z-index: 52;
}

.oval-vide-blanc-bor-orange-dr {
  background-color: transparent;
  position: absolute;
  height: 407px;
  right: 0px;
  top: 460px;
  width: 232px;
  z-index: 52;
}

.hero-text-container {
  background-color: transparent;
  position: absolute;
  height: auto;
  left: 360px;
  letter-spacing: 0px;
  line-height: normal;
  text-align: center;
  bottom: 10rem;
  width: 582px;
  z-index: 52;
}

.hero-text {
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  font-size: 3.3rem;
  font-family: 'Montserrat', sans-serif;
  color: #072335;
}




/* section4 */
.sec4{
  position: relative;
  width: 90%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec4 .sec4-containt{
  position: relative;
  width: 80%;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.sec4 .coordonnee {
  position: relative;
  height: 30%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: start;
}

.sec4 .coordonnee h1 {
  font-family: 'Montserrat', sans-serif;
  color: rgba(7, 35, 53, 1);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.81rem;
  margin-bottom: 3rem;
}

.sec4 .coordonnee-1{
  position: relative;
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.coordonnee .barre{
  background-color: var(--couleur3);
  position: absolute;
  height: 68%;
  width: 2px;
  right: 45%;
}

.sec4 .coord-A{
  width: 21.18rem;
  height: 7.81rem;
}

.sec4 .coordonnee-1 p {
  font-family: 'Montserrat', sans-serif;
  color: rgba(7, 35, 53, 1);
  font-weight: 600;
  font-size: 1.57rem;
  line-height: 1.91rem;
}

.sec4 .coordonneeee {
  position: relative;
  height: 30%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: start;
}

.sec4 .coordonneeee h1 {
  font-family: 'Montserrat', sans-serif;
  color: rgba(7, 35, 53, 1);
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.81rem;
  margin-bottom: 3rem;
}

.sec4 .coordonneeee h1::after {
  content: "";
  position: absolute;
  top: 4rem;
  left: 0;
  width: 11.25rem;
  height: 0.63rem;
  background-color: #ff4500;
}

.sec4 .coordonnee-2{
  position: relative;
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.sec4 .coordonnee-2 p {
  font-family: 'Montserrat', sans-serif;
  color: rgba(7, 35, 53, 1);
  font-weight: 400;
  font-size: 1rem;
  line-height: auto;
}







/* nous-contacter-section */
.nous-contacter{
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;

}

.nous-contacter-containt{
  position: relative;
  height: 95%;
  width: 83%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.job-form {
  display: flex;
  flex-direction: column; /* Aligne les champs verticalement */
  gap: 15px; /* Espace entre les champs */
  width: 60%; /* Largeur maximale du formulaire */
  padding: 20px;
}

/* Champs de texte */
.job-form input,
.job-form textarea {
  padding: 12px 15px; /* Espacement intérieur */
  border: 1px solid #ccc; /* Bordure légère */
  border-radius: 10px; /* Coins arrondis */
  outline: none; /* Retire le contour par défaut */
  font-size: 1rem; /* Taille de police */
  resize: none; /* Empêche le redimensionnement du textarea */
}

.job-form .nom{
  width: 12rem;
  height: 2.85rem;

}

.job-form textarea {
  height: 10rem; /* Hauteur du message */
}

.nous-contacter-containt h1 {
  font-family: 'Montserrat', sans-serif;
  color: rgba(7, 35, 53, 1);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.81rem;
}

.nous-contacter-containt .nous-contacter-text-container p{
  color: rgba(7, 35, 53, 1);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.25px;
}
.submit-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 11rem;
  background: linear-gradient(to right, var(--couleur1), #3F60F8); /* Dégradé orange-violet */
  color: #fff; /* Couleur du texte */
  font-weight: bold;
  border: none; /* Retire la bordure */
  border-radius: 1.5rem; /* Coins arrondis */
  padding: 9px 2.5rem; /* Espacement intérieur */
  cursor: pointer;
  font-size: 16px;
  align-self: flex-end; /* Aligne le bouton à droite */
  transition: opacity 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.8;
}



/* section-map */
.section-map{
  position: relative;
  width: 100%;
  height: 120vh;
  display: flex;
  justify-content: center;
  align-items: start;
  margin-bottom: 10rem;
}
.section-map .section-map-container{
  position: relative;
  width: 80%;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: start;
}

.section-map .section-map-container h1 {
  font-family: 'Montserrat', sans-serif;
  color: rgba(7, 35, 53, 1);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.81rem;
}

.section-map .section-map-container .map {
  position: relative;
  height: 50%;
  width: 100%;
}
.section-map .section-map-container .map .map-content {
  position: relative;
  height: 90%;
}







/* 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: 1.25rem;
  height: 1.25rem;
  fill: white;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    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.7rem;
  font-weight: 300; /* Diminution de l'épaisseur du texte */
  letter-spacing: 0px;
  line-height: normal;
}

.footer-highlight-2 {
  background-color: transparent;
  color: #072335;
  font-size: 1.4rem;
  font-weight: 300; /* 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: 300; /* 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: 1.25rem;
}

.footer-address p {
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.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;
}