
body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  color: #707070;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  z-index: 8;
}

body.offcanvas {
  overflow: hidden;
}

body.offcanvas:before {
  visibility: visible;
  opacity: 1;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: "Montserrat", sans-serif;
  color: #000;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a, a:hover {
  text-decoration: none !important;
}
/* Texte : traits en haut à droite et en bas à gauche */
.line-top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 2px;
  background-color: #d56d10;
}

.line-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #d56d10;
}

/* Bouton Play */
.play-icon {
  width: 50px;
  height: 50px;
  background-color: #d56d10;
  border-radius: 50%;
  position: relative;
  animation: pulse 1.5s infinite;
 align-items: center;
}

.play-icon i {
  font-size: 24px;
}

/* Animation Pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(213, 109, 16, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(213, 109, 16, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(213, 109, 16, 0.5);
  }
}

/* Image avec zoom au survol */
.image-container img {
  transition: transform 0.5s ease;
  width: 100%;
}

.image-container:hover img {
  transform: scale(1.1);
}

/* CSS pour la section des slides (carrousel) */
.carde-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carde-container {
  display: flex;
  width: 300%; /* Largeur des cartes multipliée par 3 pour défilement infini */
  transition: transform 0.5s ease-in-out;
}

.carde {
  flex: 1 0 33.333%; /* Chaque carte prend 33% de la largeur */
  padding: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-right: 20px; /* Espacement entre les cartes */
}

.carde h3 {
  margin-bottom: 15px;
  color: #333;
}

.carde ul {
  list-style: none;
  padding: 0;
}

.carde ul li {
  margin-bottom: 10px;
}

.card-hover-effect {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-hover-effect:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.arrow-prev, .arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d56d10;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 20px;
  border-radius: 50%;
  z-index: 10;
}

.arrow-prev {
  left: 10px;
}

.arrow-next {
  right: 10px;
}

.arrow-prev:hover, .arrow-next:hover {
  background-color: #e07a28;
}

/* RESPONSIVE DESIGN */

/* Écrans moyens (tablettes) */
@media (max-width: 768px) {
  .content {
    margin-left: 20px; /* Réduit la marge à gauche */
  }

  .content h1 {
    font-size: 2.5rem; /* Taille réduite du titre */
  }

  .content h3 {
    font-size: 1.3rem; /* Taille réduite du sous-titre */
  }

  .btn {
    font-size: 0.9rem; /* Taille du bouton réduite */
  }
}

/* Petits écrans (mobiles) */
@media (max-width: 576px) {
  .hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    padding: 20px; /* Espacement pour petits écrans */
  }
  
  .content {
    margin-left: 10px;
    max-width: 90%; /* Contenu s'adapte à la largeur de l'écran */
  }

  .content h1 {
    font-size: 2.5rem; /* Taille encore plus réduite */
  }

  .content h3 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
}


.hero-heading {
  font-size: 2.1rem;
  font-weight: bold;
}

.sub-text {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.untree_co--site-section {
  padding: 7rem 0;
  position: relative;
  clear: both;
  width: 100%;
}
.untree_co--site-section p{
  color: #000;
}

@media (max-width: 991.98px) {
  .untree_co--site-section {
    padding: 4rem 0;
  }
}
.alt-services {
  padding: 60px 0; /* Espace au-dessus et en dessous de la section */
  background-color: #f9f9f9; /* Arrière-plan léger pour un contraste doux */
}

.alt-services .container {
  text-align: justify; /* Alignement des textes pour une meilleure lisibilité */
  font-size: 16px; /* Taille de police légèrement plus grande pour plus de lisibilité */
  line-height: 1.8; /* Espacement entre les lignes pour un confort de lecture accru */
}

.alt-services h3 {
  font-size: 28px; /* Taille du titre plus grande pour un impact visuel */
  color: #333; /* Couleur sombre pour une meilleure lisibilité et contraste */
  margin-bottom: 20px; /* Espacement sous le titre pour aérer le contenu */
}

.alt-services p {
  color: #555; /* Couleur du texte légèrement atténuée pour éviter la fatigue visuelle */
  margin-bottom: 15px; /* Espacement entre les paragraphes pour un rendu propre */
}

.alt-services .lire {
  color: #d56d10; /* Couleur du lien pour attirer l’attention */
  text-decoration: none;
  font-weight: bold;
}

.alt-services .lire:hover {
  color: #ff7a00; /* Couleur de survol pour le lien */
}

.alt-services img {
  width: 100%; /* Image pleine largeur pour s’adapter à l’écran */
  border-radius: 8px; /* Bordure arrondie pour un style plus moderne */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère pour une apparence plus élégante */
}


 /* Section Mot du directeur */
 .director-message {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.director-message h2 {
  color: #2c3e50;
  font-size: 2.2em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.director-message h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #3498db;
}

.director-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.director-photo {
  width: 500px;
  height: 500px;
  border-radius: 5px;
  object-fit: cover;
  border: 5px solid #ecf0f1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-right: 30px;
}

.director-info {
  flex: 1;
  min-width: 250px;
}

.director-name {
  font-size: 1.5em;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.director-title {
  color: #7f8c8d;
  font-style: italic;
  margin: 0 0 15px 0;
}

.message-content {
  padding: 0 10px;
}

.message-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 2em;
  color: #2c3e50;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .director-header {
      flex-direction: column;
      text-align: center;
  }

  .director-photo {
      margin-right: 0;
      margin-bottom: 20px;
  }

  .director-message h2 {
      font-size: 1.8em;
  }
}
/*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/
  .clients .clients-wrap {
    border-top: 1px solid #03030334;
    border-left: 1px solid #00000034;
  }
  
  .clients .client-logo {
    padding: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #d56c1034;
    border-bottom: 2px solid #d56c1034;
    overflow: hidden;
    background: #ffffff;
    height: 230px;
    width: 100%;
    text-align: center;
  }
  
  .clients a{
    color: #111111;
   font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    padding-top: 10%;
  }
  .clients a:hover{
  color: #d56d10;
  }
  
  .clients .client-logo:hover img {
    filter: drop-shadow(1.9rem);
    transform: scale(1.5);
    transition: 0.5s;
  }
  

/* Section de localisation avec un fond élégant et des ombres subtiles */
.localisation-section {
  background: linear-gradient(135deg, #ffffff, #dad9d9c9); /* Dégradé de couleurs attractif */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Titre principal avec effet de texte animé */
.localisation-section h2 {
  color: #000000;
  font-size: 42px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

/* Sous-titres des cartes - avec une animation d’apparition */
.localisation-section h4, .localisation-section h5 {
  color: #000000 !important;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  animation: fadeInUp 1.5s ease-out;
  text-align: center;
}

.localisation-section small {
  color: #f1f1f1;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

/* Animation du texte et des cartes */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Contenu des cartes */
.localisation-section .card {
  border-radius: 15px;
  margin-right: 14px;
  background-color: rgba(182, 182, 182, 0.685); /* Fond sombre avec opacité */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Ombre plus profonde */
  transition: all 0.4s ease-out; /* Transition plus fluide */
  transform: scale(1); /* Commence au format normal */
}

/* Effet au survol des cartes avec échelle et changement de couleur */
.localisation-section .card:hover {
  transform: scale(1.05) translateY(-10px); /* Zoom léger et déplacement vers le haut */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Ombre plus marquée */
  background-color: rgba(0, 0, 0, 0.9); /* Changement de couleur au survol */
}

.localisation-section .card-body {
  padding: 25px;
  text-align: center;
}

/* Contenu des cartes - titres */
.card-body h4 {
  font-size: 1.5rem;
  color: #d56d10; /* Couleur lumineuse pour les titres */
  margin-bottom: 15px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.card-body h4:hover {
  color: #ffffff; /* Changement de couleur du titre au survol */
}

/* Effet pour les icônes de carte (ajouter des icônes comme des avions, ports, etc.) */
.card-body i {
  font-size: 40px;
  color: #d56d10;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.card-body i:hover {
  transform: rotate(15deg); /* Effet de rotation des icônes au survol */
}
.horizontal-slider {
  overflow-x: auto; /* Activer le défilement horizontal */
  white-space: nowrap; /* Éviter que les éléments ne passent à la ligne */
  padding-bottom: 10px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.horizontal-slider::-webkit-scrollbar {
  height: 8px; /* Taille de la scrollbar */
}

.horizontal-slider::-webkit-scrollbar-thumb {
  background-color: #d56d10; /* Couleur de la scrollbar */
  border-radius: 4px;
}

.slider-wrapper {
  display: flex; /* Permet l'alignement horizontal des cartes */
  gap: 15px; /* Espacement entre les cartes */
}

.slider-wrapper .card {
  flex-shrink: 0; /* Empêche les cartes de rétrécir */
  width: 200px; /* Largeur fixe pour chaque carte */
}

/* Responsivité pour les cartes */
@media (max-width: 768px) {
  .localisation-section h2 {
    font-size: 26px;
  }

  .localisation-section h4, 
  .localisation-section h5 {
    font-size: 18px;
  }

  .localisation-section .card {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .localisation-section .card-body h4 {
    font-size: 1.2rem;
  }
}

/* Container pour l'iframe responsive */
.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 20px;
  margin-top: 40px;
  animation: mapAppear 1s ease-out; /* Animation d'apparition pour la carte */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px; /* Coins arrondis pour l'iframe */
}

/* Animation de la carte */
@keyframes mapAppear {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/*** Project ***/
.project-carousel {
  position: relative;
  background-color: #d56d10;
  perspective: 1000px;
}

.project-item {
  position: relative;
  display: block;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}

.project-item img {
  width: 100%;
  height: 400px; /* Hauteur fixe pour toutes les images */
  object-fit: cover; /* Recadre l'image pour qu'elle remplisse le conteneur */
  transition: transform 0.5s ease, margin-top 0.5s ease;
}

.project-item:hover img {
  transform: scale(1.1) translateY(-20px);
  margin-top: -60px;
}

.project-item h5 {
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-item .project-title {
  position: absolute;
  padding: 15px;
  width: 100%;
  height: 120px;
  bottom: -100px; /* Position initiale cachée */
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(90deg, #145, #1b4857c4); /* Change le gradient */
  background-size: 200% 200%;
  animation: gradientAnimation 3s ease infinite;
  transition: bottom 0.5s ease;
  z-index: 2;
}
.project-item .project-title i {
 color: #ffffff;
 font-size: 27px;
}
.project-item .project-title h5 {
  color: #ffffff;
 }

/* Afficher le titre et l'icône lorsque l'élément est actif (au centre) */
.project-carousel .owl-item.center .project-title {
  bottom: 0; /* Affiche le titre */
}

.project-carousel .owl-item.center h5 {
  opacity: 1; /* Affiche le texte */
  transform: translateY(0);
}

.project-carousel .owl-item.center .project-title i {
  transform: rotate(0deg); /* Réinitialise la rotation de l'icône */
}

/* Animation au survol */
.project-item:hover .project-title {
  bottom: 0; /* Affiche le titre */
  background: linear-gradient(90deg, #d56d10, #d56c10d8); /* Change le gradient */
}

.project-item:hover h5 {
  opacity: 1; /* Affiche le texte */
  transform: translateY(0);
}

.project-item:hover .project-title i {
  transform: rotate(360deg); /* Fait tourner l'icône */
}

.project-item .project-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  top: -15px;
  left: 0;
  transform: skewY(-5deg);
  background: #ffffff;
  transition: 0.5s;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.project-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 1;
  
}

.project-carousel:hover .owl-nav {
  opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin: 0 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #145;
  border-radius: 45px;
  font-size: 22px;
  transition: background 0.5s ease;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
  background: #d56d10;
}

.container {
  overflow: hidden;
}


.slider {
  animation: slidein 30s linear infinite;
  white-space: nowrap;
}

.logos {
  width: 100%;
  display: inline-block;
  margin: 0;
}

.logo {
  width: calc(100% / 5); /* Adapte la largeur à 5 images par ligne */
  max-width: 140px; /* Taille maximale des logos */
  margin: 0 10px; /* Espacement entre les logos */
  display: inline-block;
  animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .logo {
    width: calc(100% / 3); /* Trois logos par ligne */
  }
}
@media (max-width: 480px) {
  .logo {
    width: calc(100% / 2); /* Deux logos par ligne */
  }
}

.accordion {
  margin: 0 auto;
  padding: 2rem;
  max-width: 800px; /* Largeur maximale pour une meilleure lisibilité */
  width: 100%;
  font-family: 'Arial', sans-serif; /* Police moderne */
}

.accordion .accordion-item {
  border-bottom: 1px solid #e0e0e0; /* Bordure plus subtile */
  margin-bottom: 0.5rem;
  border-radius: 8px; /* Coins arrondis */
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion .accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Effet d'ombre au survol */
}

.accordion button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333; /* Couleur de texte plus douce */
  background: #f9f9f9; /* Fond léger */
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.accordion button:hover,
.accordion button:focus {
  background: #f1f1f1; /* Fond plus clair au survol */
  color: #d56d10; /* Couleur d'accent au survol */
}

.accordion button[aria-expanded='true'] {
  background: #ffffff; /* Fond blanc lorsque ouvert */
  color: #d56d10; /* Couleur d'accent lorsque ouvert */
  border-bottom: 2px solid #d56d10; /* Bordure accentuée */
}

.accordion button .accordion-title {
  padding-right: 2rem; /* Espace pour l'icône */
}

.accordion button .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion button .icon::before,
.accordion button .icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}

.accordion button .icon::before {
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.accordion button .icon::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.accordion button[aria-expanded='true'] .icon::after {
  transform: translate(-50%, -50%) rotate(90deg); /* Rotation de l'icône */
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}

.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 500px; /* Hauteur maximale pour le contenu */
  padding: 1.5rem;
  background: #ffffff; /* Fond blanc pour le contenu */
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 400;
  color: #555; /* Couleur de texte plus douce */
  line-height: 1.6; /* Espacement des lignes pour une meilleure lisibilité */
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .accordion {
    padding: 1rem;
  }

  .accordion button {
    padding: 1rem;
    font-size: 1rem;
  }

  .accordion .accordion-content {
    padding: 0 1rem;
  }

  .accordion button[aria-expanded='true'] + .accordion-content {
    padding: 1rem;
  }
}
/* General Styles */
.offres {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.offres-item {
  margin-bottom: 60px;
}

.offre-title {
  font-size: 2rem;
  font-weight: 700;
  color: #145;
  margin-bottom: 20px;
  position: relative;
}

.offre-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #d56d10;
  margin: 10px 0 20px;
}

.offre-list {
  list-style: none;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 35px;
}

.offre-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.offre-list li i {
  color: #d56d10;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 6px;
}

/* Image Containers */
.image-container {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.shape-1 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-2 {
  border-radius: 50% 50% 20% 80% / 60% 40% 60% 40%;
}

.shape-3 {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 60%;
}

.shape-4 {
  border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
}

.shape-5 {
  border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.image-container img {
  animation: float 4s ease-in-out infinite;
}
/* General Styles */
.about {
  padding: 80px 0;
  background-color: #f8f9fa;
}


/* Couleurs */
:root {
  --orange: #d56d10;
  --blue: #1b4857;
  --white: #ffffff;
  --black: #000000;
  --light-gray: #f8f9fa;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
  from { transform: scale(0.95); }
  to { transform: scale(1); }
}

/* Effets au survol */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Animations spécifiques */
.logo-animation {
  animation: fadeIn 1s ease-in-out;
}

.plan-animation {
  animation: fadeIn 1.5s ease-in-out;
}

.card-animation {
  animation: fadeIn 1s ease-in-out;
}

.image-animation {
  animation: scaleUp 0.5s ease-in-out;
}




.card-header {
  font-size: 1.5rem;
  font-weight: 700;
}

.card-body {
  font-size: 1.1rem;
}

.bg-orange {
  background-color: var(--orange);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-light {
  background-color: var(--light-gray);
}

.shadow-sm {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .card {
    margin-bottom: 20px;
  }
}


.section-subtitle {
  font-size: 1.25rem;
  color: #145;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

/* List Styles */
.team-list, .culture-list, .objectives-list {
  list-style: none;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 35px;
}

.team-list li, .culture-list li, .objectives-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.team-list li::before, .culture-list li::before, .objectives-list li::before {
  content: "▹";
  color: #d56d10;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
}

.highlight {
  color: #d56d10;
  font-weight: bold;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
 font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.value-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(213, 109, 16, 0.1), transparent);
  transition: left 0.5s ease;
}

.value-item:hover::before {
  left: 100%;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Image Containers */
.image-container {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.shape-1 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite;
}

.shape-2 {
  border-radius: 50% 50% 20% 80% / 60% 40% 60% 40%;
  animation: morph 6s ease-in-out infinite;
}

.shape-3 {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 60%;
  animation: morph 10s ease-in-out infinite;
}

.shape-4 {
  border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
  animation: morph 7s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.image-container img {
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.1);
}

  
 

/* Section Réalisations */
.realisations-creatives {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #e0e0e0); /* Dégradé de fond */
}





/* Grille de Réalisations */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.realisation-item {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
  transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

.realisation-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.realisation-content {
  position: relative;
  height: 350px; /* Hauteur augmentée */
  overflow: hidden;
  border-radius: 15px;
}

.realisation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.realisation-item:hover .realisation-image {
  transform: scale(1.1);
}

.realisation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 31, 30, 0.384), rgba(255, 138, 66, 0.384)); /* Dégradé orange */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.realisation-item:hover .realisation-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.overlay-content h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.overlay-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.realisation-link {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}

.realisation-link:hover {
  background: #fff;
  color: #d56d10;
}
.titre-energique {
  
  font-size: 4rem;
  font-weight: 700;
  color: #145; /* Rose vif */
  background: linear-gradient(45deg, rgb(120, 121, 121), #145);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}


/* Section principale */
.trust-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1200px;
}

.trust-section h1 {
  font-size: 46px;
  color: #145;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Conteneur du slider */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Conteneur des logos */
.logo-container {
  display: flex;
  width: max-content; /* Permet au conteneur de s'étendre en fonction du contenu */
  animation: slide 20s linear infinite;
}

/* Animation du défilement */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Styles des logos */
.logo-item {
  width: 70px;
  height: auto;
  margin: 0 25px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.logo-item:hover {
  transform: scale(1.1);
  opacity: 1;
  cursor: pointer;
}

/* Duplication des logos pour l'effet de boucle */
.logo-container::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

/* Responsivité */
@media (max-width: 768px) {
  .trust-section h1 {
    font-size: 36px;
  }

  .logo-item {
    width: 60px;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .trust-section h1 {
    font-size: 28px;
  }

  .logo-item {
    width: 100px;
    margin: 0 10px;
  }
}
.search-wrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.search-wrap.active {
  z-index: 1001;
  opacity: 1;
  visibility: visible;
}

.search-wrap, .search-wrap > .container > .row {
  height: 100vh;
}

.search-wrap .close-search {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
  opacity: .3;
  -webkit-transition: .3s opacity ease;
  -o-transition: .3s opacity ease;
  transition: .3s opacity ease;
}

.search-wrap .close-search:hover {
  opacity: 1;
}

.search-wrap .close-search > span {
  display: inline-block;
  text-indent: -99999px;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.search-wrap .close-search > span:before, .search-wrap .close-search > span:after {
  content: "";
  width: 45px;
  height: 2px;
  position: absolute;
  background: #000;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.search-wrap .close-search > span:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.search-wrap .close-search > span:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.search-wrap input[type="search"], .search-wrap input[type="text"] {
  height: 70px;
  width: 100%;
  padding: 20px 40px;
  font-family: "Poppins", serif;
  font-size: 2rem;
  text-align: center;
  border: none;
  border-bottom: 1px solid #efefef;
}

.search-wrap input[type="search"]:active, .search-wrap input[type="search"]:focus, .search-wrap input[type="text"]:active, .search-wrap input[type="text"]:focus {
  outline: none;
}

.search-wrap input[type="search"]::-webkit-input-placeholder, .search-wrap input[type="text"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ccc;
  font-style: italic;
}

.search-wrap input[type="search"]::-moz-placeholder, .search-wrap input[type="text"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #ccc;
  font-style: italic;
}

.search-wrap input[type="search"]:-ms-input-placeholder, .search-wrap input[type="text"]:-ms-input-placeholder {
  /* IE 10+ */
  color: #ccc;
  font-style: italic;
}

.search-wrap input[type="search"]:-moz-placeholder, .search-wrap input[type="text"]:-moz-placeholder {
  /* Firefox 18- */
  color: #ccc;
  font-style: italic;
}

.search-wrap .heading {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  text-align: center;
}

.search-wrap.dark {
  background: #000;
}
.logo-wrap {
  display: flex;
  align-items: center;
}

.untree_co--site-logo {
  font-size: 1.5rem; /* Ajustez la taille si nécessaire */
  font-weight: bold;
  text-decoration: none;
  color: #d56d10; /* Votre couleur préférée */
}
.untree_co--site-hero  h2 {
  font-size: 1rem;
  color: #fff;
  line-height: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.untree_co--site-logo:hover {
  color: #ff8c42; /* Couleur au survol */
  transition: color 0.3s ease;
}

.untree_co--site-logo img {
  max-width: 100px; /* Taille de l'image */
  height: auto;
}
@media (max-width: 768px) {
  .untree_co--site-logo img {
    max-width: 120px; /* Réduisez la taille sur mobile */
  }
}

.untree_co--site-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.untree_co--site-hero, .untree_co--site-hero > .container > .row {
  height: 30vh;
  min-height: 400px;
}

.untree_co--site-hero.overlay {
  position: relative;
}

.untree_co--site-hero.overlay:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

.untree_co--site-hero .site-hero-contents {
  display: block;
}

.untree_co--site-hero .site-hero-contents .sub-text {
  font-size: 20px;
  color: #fff !important;
  font-size: 22px;
  font-weight: 300;
}

.untree_co--site-hero .site-hero-contents .hero-heading {
  font-size: 2rem;
  color: #fff;
  line-height: 0;
  font-family: "Poppins", serif;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .untree_co--site-hero .site-hero-contents .hero-heading {
    font-size: 3.5rem;
  }
}

.untree_co--site-hero .site-hero-contents .hero-heading > span {
  display: inline-block;
}

.untree_co--site-hero .site-hero-contents .hero-heading > span > span {
  display: inline-block;
}

.untree_co--site-hero .site-hero-contents .hero-heading > span > span > span {
  line-height: 1.2;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 0;
}

.untree_co--site-hero .site-hero-contents .hero-heading > span > span > span > span {
  display: inline-block;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.untree_co--site-hero.inner-page .site-hero-contents {
  display: block;
}

.untree_co--site-hero.inner-page .site-hero-contents .sub-text {
  font-size: 20px;
  color: #000 !important;
  font-size: 22px;
  font-weight: 300;
}

.untree_co--site-hero.inner-page .site-hero-contents .hero-heading {
  font-size: 5rem;
  color: #000;
  line-height: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .untree_co--site-hero.inner-page .site-hero-contents .hero-heading {
    font-size: 3.5rem;
  }
}

.untree_co--site-hero.inner-page .site-hero-contents .hero-heading > span {
  display: inline-block;
}

.untree_co--site-hero.inner-page .site-hero-contents .hero-heading > span > span {
  display: inline-block;
}

.untree_co--site-hero.inner-page .site-hero-contents .hero-heading > span > span > span {
  line-height: 1.2;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 0;
}

.untree_co--site-hero.inner-page .site-hero-contents .hero-heading > span > span > span > span {
  display: inline-block;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

@media (max-width: 991.98px) {
  .w-75 {
    width: 100% !important;
  }
}

@media (max-width: 991.98px) {
  .owl-hero .owl-nav {
    display: none;
  }
}

.owl-hero .owl-nav .owl-prev,
.owl-hero .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff !important;
}

.owl-hero .owl-nav .owl-prev span,
.owl-hero .owl-nav .owl-next span {
  font-size: 30px;
}

.owl-hero .owl-nav .owl-prev:hover,
.owl-hero .owl-nav .owl-next:hover {
  color: #fff;
}

.owl-hero .owl-nav .owl-prev:active, .owl-hero .owl-nav .owl-prev:focus,
.owl-hero .owl-nav .owl-next:active,
.owl-hero .owl-nav .owl-next:focus {
  outline: none;
}

.owl-hero .owl-nav .owl-prev {
  left: 20px;
}

.owl-hero .owl-nav .owl-next {
  right: 20px;
}

.owl-hero .owl-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 50px;
}

.owl-hero .owl-dots .owl-dot {
  display: inline-block;
}

.owl-hero .owl-dots .owl-dot > span {
  margin: 4px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.owl-hero .owl-dots .owl-dot.active > span {
  background: white;
}
.alt-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
}

.alt-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.alt-services h2 span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d56d10; /* Accent principal */
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 3px solid #d56d10;
  padding-bottom: 5px;
}

.alt-services .row {
margin-top: 12px;
}

.alt-services .img-bg {
  flex: 1;
  height: 350px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.alt-services .img-bg:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.alt-services .img-bg:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.alt-services .img-bg:hover:before {
  opacity: 1;
}

.alt-services .para {
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: justify;
  color: #555;
  margin-top: 20px;
}

.alt-services strong {
  color: #000000;
  font-weight: 600;
}

.alt-services p {
  margin-bottom: 20px;
}

.alt-services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

@media (max-width: 768px) {
  .alt-services .img-bg {
    height: 250px;
  }

  .alt-services h2 span {
    font-size: 2rem;
  }

  .alt-services .para {
    font-size: 0.9rem;
  }
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
/* Animation Keyframes */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

	
.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link span {
  color: #111111;
  display: block;
  text-align: left;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border: 0;
  border-left: 7px solid #02245B;
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 30px;
  padding: 30px;
  transition: all 0.3s ease-in-out;
}
.nav-tabs .nav-link h4{
  font-size: 18px;
  font-weight: 600;
  
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-left-color: #d1530b;
  background: #FFFFFF;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.nav-tabs .nav-link.active h3,
.nav-tabs .nav-link:focus h3, 
.nav-tabs .nav-link:hover h3 {
  color: #d1530b;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
      width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
      width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: #d56d10;
  font-size: 45px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #000000;
}

.testimonial-carousel .testimonial-img img {
  width: 160px;
  height: 160px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transform: scale(.8);
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/* Rooms/Suites */
.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.suite-wrap {
  width: 80%;
  margin: 0 auto;
  display: block;
  float: left;
  margin-bottom: 10rem;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767.98px) {
  .suite-wrap {
    width: 100%;
    margin-bottom: 5rem;
  }
}

.suite-wrap.overlap-image-1 .suite {
  width: 60%;
  float: left;
}

@media (max-width: 767.98px) {
  .suite-wrap.overlap-image-1 .suite {
    width: 100%;
  }
}

.suite-wrap.overlap-image-1 .suite img {
  max-width: 100% !important;
}

.suite-wrap.overlap-image-1 .suite .image-stack:after {
  content: "";
  display: table;
  clear: both;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item {
  overflow: hidden;
  position: relative;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item .overlay {
  z-index: 4;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  transform: scale(1.7);
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item img {
  position: relative;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item.image-stack-item-top {
  float: left;
  width: 55%;
  margin-top: -10%;
  margin-right: -100%;
  position: relative;
  z-index: 1;
}

.suite-wrap.overlap-image-1 .suite .image-stack .image-stack-item.image-stack-item-bottom {
  float: right;
  width: 75%;
}

.suite-wrap.overlap-image-1 .suite-contents {
  z-index: 10;
  width: 30%;
  margin-top: 5%;
  position: relative;
  float: left;
  margin-left: 50px;
}

@media (max-width: 767.98px) {
  .suite-wrap.overlap-image-1 .suite-contents {
    float: left;
    margin-left: 0;
    width: 100%;
  }
}

.suite-wrap.overlap-image-1 .suite-contents .suite-title {
  color: #000;
  font-size: 4rem;
  margin-bottom: 30px;
  line-height: 0;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.suite-wrap.overlap-image-1 .suite-contents .suite-title > span {
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 1.3;
  margin-bottom: 0;
}

.suite-wrap.overlap-image-1 .suite-contents .suite-title > span > span {
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.suite-wrap.overlap-image-1 .suite-contents .suite-excerpt {
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
}

.suite-wrap.overlap-image-2 .suite {
  float: right;
  width: 70%;
}

@media (max-width: 767.98px) {
  .suite-wrap.overlap-image-2 .suite {
    width: 100%;
  }
}

.suite-wrap.overlap-image-2 .suite .image-stack:after {
  content: "";
  display: table;
  clear: both;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item {
  overflow: hidden;
  position: relative;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item .overlay {
  z-index: 4;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  transform: scale(1.7);
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item img {
  position: relative;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item.image-stack-item-top {
  float: left;
  width: 75%;
  margin-top: 0%;
  margin-right: -100%;
  margin-left: 0%;
  position: relative;
  z-index: 1;
}

.suite-wrap.overlap-image-2 .suite .image-stack .image-stack-item.image-stack-item-bottom {
  float: right;
  width: 55%;
  position: relative;
  z-index: 2;
  margin-top: 30%;
}

.suite-wrap.overlap-image-2 .suite-contents {
  z-index: 3;
  position: relative;
  width: 28%;
  float: right;
  margin-top: 10%;
}

@media (max-width: 767.98px) {
  .suite-wrap.overlap-image-2 .suite-contents {
    width: 100%;
    margin-right: 0px;
  }
}

.suite-wrap.overlap-image-2 .suite-contents .suite-title {
  color: #000;
  font-size: 4rem;
  margin-bottom: 30px;
  line-height: 0;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.suite-wrap.overlap-image-2 .suite-contents .suite-title > span {
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 1.3;
  margin-bottom: 0;
}

.suite-wrap.overlap-image-2 .suite-contents .suite-title > span > span {
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.suite-wrap.overlap-image-2 .suite-contents .suite-excerpt {
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
}
/* Section générale */
.key-figures-section {
  background: #ffffff; /* Fond noir */
  color: #000000; /* Texte blanc */
  text-align: center;
  padding: 60px 20px;
font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.key-figures-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
}



/* Heading */
.section-heading h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #145;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Poppins", serif;
}

.section-heading h3:after {
  position: absolute;
  content: '';
  width: 100px;
  height: 1px;
  background: #145;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

.section-heading h3.text-left:after {
  left: 0;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.section-heading.dark h3 {
  color: #000;
}

.section-heading.dark h3:after {
  background: #000;
}

.section-heading.dark p {
  color: #aeaeae;
}

/* buttons */
.readmore {
  color: #000;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .2rem;
  padding: 10px 0;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.readmore:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
  bottom: 0;
  width: 0%;
  -webkit-transition: .3s width ease-in-out;
  -o-transition: .3s width ease-in-out;
  transition: .3s width ease-in-out;
}

.readmore:hover {
  color: #000;
}

.readmore:hover:before {
  width: 100%;
}

.readmore.dark {
  color: #000;
}

.readmore.dark:before {
  background: #000;
}

.readmore.dark:hover {
  color: #000;
}

.readmore.primary {
  color: #ff896b;
}

.readmore.primary:before {
  background: #ff896b;
}

.readmore.primary:hover {
  color: #ff896b;
}

.readmore.reverse:before {
  width: 100%;
}

.readmore.reverse:hover:before {
  width: 0;
}

/* Icons */
.icons-top {
  position: relative;
}

.icons-top, .icons-top li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.icons-top li {
  display: inline-block;
}

.icons-top li a {
  border-radius: 50%;
  background: #fff;
  color: #394f4b;
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  opacity: .8;
}

.icons-top li a > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.icons-top li a > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.icons-top li a:hover {
  opacity: 1;
}

.icons-top.icons-dark li a {
  color: #fff;
  background: #000;
  width: 40px;
  height: 40px;
  opacity: 1;
}

.icons-top.icons-dark li a:hover {
  background: #d56d10;
}
/* After pour l'effet de bordure */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; /* Positionner en bas du lien */
  left: 50%;
  transform: translateX(-50%) scaleX(0); /* Réduire à zéro pour l'animation */
  width: 80%; /* Largeur de la bordure */
  height: 2px; /* Épaisseur de la bordure */
  background: #d56d10; /* Couleur de la bordure */
  transition: transform 0.3s ease; /* Transition fluide */
  transform-origin: center; /* Origine de l'animation */
}

/* Animation sur survol */
.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1); /* Développer la bordure au survol */
}
/* Global styles */
/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0); /* Transparent par défaut */
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(1px); /* Effet de flou */
  transition: background-color 0.3s ease; /* Transition pour le changement de background */
}

/* Navbar white background when scrolling */
.navbar.scrolled {
  background-color: #fff; /* Fond blanc après le scroll */
  color: #000000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .nav-links a {
  color: #000000; /* Couleur des liens pour le fond blanc */
}
/* Logo */
.logo a {
  color: #d56d10;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Hamburger menu */
.hamburger {
  display: none; /* Caché par défaut */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 40px;
  height: 5px;
  background: #d56d10;
  transition: background 0.3s ease;
}

/* Change hamburger color when active */
.hamburger.active span {
  background: #d56d10;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.nav-links a {
  position: relative; /* Nécessaire pour positionner l'after */
  color: rgba(255, 255, 255, 0.795);
  font-weight: 400;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px; /* Ajuste l'espacement interne */
  border: none; /* Assure qu'il n'y a pas de bordure native */
  border-radius: 4px;
  transition: color 0.3s ease; /* Animation pour la couleur */
}



/* Sidebar styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px; /* Cacher la barre latérale hors écran */
  width: 300px;
  height: 100%;
  background: linear-gradient(to bottom, #d56d10, #ff7f50);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: left 0.3s ease; /* Transition fluide */
}

.sidebar.active {
  left: 0; /* Faire apparaître la barre latérale */
}

.sidebar-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-content ul li {
  margin-bottom: 15px;
}

.sidebar-content ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sidebar-content ul li a:hover {
  color: #333; /* Changer la couleur au survol */
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  display: none;
  flex-direction: column;
  width: 170px;
  padding: 10px 0;
  border-radius: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  
}

.dropdown-menu li {
  text-align: left;
}

.dropdown-menu a {
  padding: 10px 20px;
  display: block;
  color: #000;
  font-size: 12px;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Responsive design for hamburger and navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Cacher les liens de navigation */
  }

  .hamburger {
    display: flex; /* Afficher le hamburger */
  }
}

@media (min-width: 769px) {
  .sidebar {
    display: none; /* Cacher la barre latérale sur les écrans larges */
  }
}
/* Responsive design for hamburger and navigation */
@media (max-width: 1024px) {
  .nav-links {
    display: none; /* Cacher les liens de navigation */
  }

  .hamburger {
    display: flex; /* Afficher le hamburger */
  }
  .sidebar {
    display: block; /* Sidebar disponible pour tablette et mobile */
  }
}



.featured-rooms {
  background-color: #b4a9a8;
  background-color: #fff;
}

.jarallax-keep-img {
  position: relative;
  z-index: 0;
}

.jarallax-keep-img > .jarallax-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  z-index: -100;
}

span[data-jarallax-element] {
  display: inline-block;
}

.jarallax {
  position: relative;
  z-index: 0;
  height: 100vh;
  width: 100%;
}

.jarallax > .jarallax-img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.with-slider {
  position: relative;
}

.with-slider .swiper-custom-wrap {
  position: absolute;
  right: 0;
  margin-top: 7rem;
  top: 0;
  width: 70%;
}

/* Blog */
.post-entry .thumb {
  display: block;
  margin-bottom: 30px;
}

.post-entry .date {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
}

.post-entry h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.post-entry h3 a {
  color: #000;
}

.bg-body-darker {
  background: #e6e6e6;
}

.cta {
  padding: 7rem 0 !important;
}

.cta h3 {
  font-size: 2rem;
  color: #000;
 font-family: "Montserrat", sans-serif;
}

.cta h3 a {
  color: #000;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.cta h3 a:before {
  content: "";
  background: #d56d10;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  z-index: -1;
}

/* Carousel 4*/
.testimony-29101 .image {
  width: 40%;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 991.98px) {
  .testimony-29101 .image {
    height: 300px;
  }
}

.testimony-29101 .text {
  width: 60%;
  padding: 7rem 4rem;
  background: #ff896b;
}

.testimony-29101 .text blockquote {
  position: relative;
  padding-bottom: 50px;
  font-size: 20px;
}

.testimony-29101 .text blockquote p {
  color: #fff;
  line-height: 1.8;
}

.testimony-29101 .text blockquote .author {
  font-size: 16px;
  letter-spacing: .1rem;
  position: absolute;
  bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
  .testimony-29101 .image, .testimony-29101 .text {
    width: 100%;
    display: block !important;
  }
}

.slide-one-item {
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .slide-one-item .owl-nav {
    display: none;
  }
}

.slide-one-item .owl-nav .owl-prev,
.slide-one-item .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
}

.slide-one-item .owl-nav .owl-prev span,
.slide-one-item .owl-nav .owl-next span {
  font-size: 30px;
}

.slide-one-item .owl-nav .owl-prev:hover,
.slide-one-item .owl-nav .owl-next:hover {
  color: #000;
}

.slide-one-item .owl-nav .owl-prev:active, .slide-one-item .owl-nav .owl-prev:focus,
.slide-one-item .owl-nav .owl-next:active,
.slide-one-item .owl-nav .owl-next:focus {
  outline: none;
}

.slide-one-item .owl-nav .owl-prev {
  left: 20px;
}

.slide-one-item .owl-nav .owl-next {
  right: 20px;
}

.slide-one-item .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.slide-one-item .owl-dots .owl-dot {
  display: inline-block;
}

.slide-one-item .owl-dots .owl-dot > span {
  -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  display: inline-block;
  width: 15px;
  height: 3px;
  background: rgba(255, 137, 107, 0.4);
  margin: 3px;
}

.slide-one-item .owl-dots .owl-dot.active > span {
  width: 15px;
  background: #ff896b;
}

.thumbnail {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateY(50%) translateX(-50%);
  -ms-transform: translateY(50%) translateX(-50%);
  transform: translateY(50%) translateX(-50%);
  z-index: 99;
}

.thumbnail li {
  display: inline-block;
}

.thumbnail li a {
  display: block;
  margin: 4px;
}

.thumbnail li a img {
  width: 50px;
  border-radius: 50%;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.thumbnail li.active a img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

footer {
  padding: 7rem 0;
  font-size: 15px;
  background-color: #ffffff;
}

footer h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #000;
}

footer a {
  color: rgba(0, 0, 0, 0.7);
}

footer a:hover {
  color: #000;
}

footer ul li {
  margin-bottom: 10px;
}

footer .form-subscribe .form-control {
  background: none;
  border-radius: 0;
  border: 1px solid #ccc;
}

footer .form-subscribe .form-control:active, footer .form-subscribe .form-control:focus {
  color: #000;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control, .btn {
  height: 45px;
  border-radius: 0;
}

.btn {
  font-size: 16px;
  font-weight: 700;
}

.btn.btn-black {
  background: #000;
  color: #fff;
}

.form-control {
  background: none;
  border-radius: 0;
  border: 1px solid #ccc;
}

.form-control:active, .form-control:focus {
  color: #000;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000 !important;
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ccc;
  font-style: italic;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #ccc;
  font-style: italic;
}

.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #ccc;
  font-style: italic;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #ccc;
  font-style: italic;
}

.media-29191 {
  border: 1px solid #efefef;
  padding: 40px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  position: relative;
  top: 0;
}

.media-29191:hover {
  top: -2px;
  border-color: #000;
  -webkit-box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
}

.media-29191 .media-29191-icon img {
  width: 50px;
  margin-bottom: 30px;
}

.media-29191 h3 {
  font-size: 20px;
  font-weight: 700;
}

.custom-row-02192 {
  margin-left: -25px !important;
  margin-right: -25px !important;
}

.custom-row-02192 > .col,
.custom-row-02192 > [class*="col-"] {
  padding-right: 25px !important;
  padding-left: 25px !important;
}

.gutter-1 {
  margin-right: -1px !important;
  margin-left: -1px !important;
}

.gutter-1 > .col,
.gutter-1 > [class*="col-"] {
  padding-right: 1px !important;
  padding-left: 1px !important;
}

.gutter-2 {
  margin-right: -2px !important;
  margin-left: -2px !important;
}

.gutter-2 > .col,
.gutter-2 > [class*="col-"] {
  margin-bottom: 4px;
  padding-right: 2px !important;
  padding-left: 2px !important;
}

.ul-check li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 10px;
}

.ul-check li:before {
  font-family: 'icomoon';
  content: "\e5ca";
  position: absolute;
  left: 0;
  font-size: 22px;
  top: -4px;
  color: #000;
}

.room-animate .heading {
  line-height: 0;
}

.room-animate .heading > span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.2;
}

.room-animate .heading > span > span {
  display: inline-block;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.room-animate .room-price {
  font-size: 3rem;
  font-family: "Poppins", serif;
  color: #000;
  line-height: 1;
  margin-bottom: 30px;
  margin-top: 30px;
}

.room-animate .room-price .per {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}

.room-animate .img-wrap {
  position: relative;
  overflow: hidden;
}

.room-animate .img-wrap .bg-image {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .room-animate .img-wrap .bg-image {
    height: 300px !important;
  }
}

.slide-thumb {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.slide-thumb a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.owl-gallery-small {
  opacity: .2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 80%;
  position: relative;
  -webkit-transition: .3s opacity ease;
  -o-transition: .3s opacity ease;
  transition: .3s opacity ease;
}

.owl-gallery-small:hover {
  opacity: .4;
}

.owl-gallery-small a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 22;
}

.owl-gallery-small .owl-stage-outer {
  height: 100% !important;
}

.owl-gallery-small .owl-stage-outer .owl-stage {
  height: 100% !important;
}

.owl-gallery-small .owl-stage-outer .owl-stage .owl-item {
  height: 100% !important;
}

.owl-gallery-big {
  height: 100vh;
  min-height: 470px;
  position: relative;
}

.owl-gallery-big .owl-stage-outer {
  height: 100% !important;
}

.owl-gallery-big .owl-stage-outer .owl-stage {
  height: 100% !important;
}

.owl-gallery-big .owl-stage-outer .owl-stage .owl-item {
  height: 100% !important;
}

.owl-gallery-big .owl-nav {
  position: absolute;
  margin-top: -25px;
  z-index: 20;
  width: 100%;
  text-align: center;
}

.owl-gallery-big .owl-nav .owl-prev,
.owl-gallery-big .owl-nav .owl-next {
  margin-left: 2px;
  margin-right: 2px;
  width: 50px;
  height: 50px;
  background: #fff !important;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  position: relative;
}

.owl-gallery-big .owl-nav .owl-prev:active, .owl-gallery-big .owl-nav .owl-prev:focus,
.owl-gallery-big .owl-nav .owl-next:active,
.owl-gallery-big .owl-nav .owl-next:focus {
  outline: none;
}

.owl-gallery-big .owl-nav .owl-prev > span,
.owl-gallery-big .owl-nav .owl-next > span {
  position: absolute;
  font-size: 20px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider-counter {
  font-family: "Poppins", serif;
  font-size: 30px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 150px;
  padding: 20px 0;
  background: #fff;
  z-index: 19;
}

@media (max-width: 767.98px) {
  .slider-counter {
    width: auto !important;
    padding-left: 30px;
    padding-right: 20px;
  }
}

.relative {
  position: relative !important;
}

.media-29190 {
  margin-bottom: 40px;
}

.media-29190 .label {
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  color: #b3b3b3;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: .1rem;
}

.media-29190 p {
  font-size: 2rem;
  line-height: 1.5;
  font-family: "Poppins", serif;
}

.media-29190 p:last-child {
  margin-bottom: 0;
}

/*PRELOADING------------ */
#untree_co--overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.timeline-1 {
  border-left: 5px solid #1b4857;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: #8585811f;
  margin: 0 auto;
  position: relative;
  padding: 50px;
  list-style: none;
  text-align: left;
  max-width: 90%;
}


@media (max-width: 767px) {
  .timeline-1 {
    max-width: 98%;
    padding: 25px;
  }
}

.timeline-1 .event {
  border-bottom: 1px dashed #000;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}
.timeline h4 {
  color: #d56d10;
  font-family: "Poppins" sans-serif;
  font-size: 30px;
  font-weight: 600;
}
.timeline .histoire{
  text-align: center;
  color: #d56d10;

}
.timeline hr{
  color: #d56d10;
  margin-top: auto;
}

.timeline p{
  font-family: "Poppins" sans-serif;
  text-align: justify;
  font-size: 17px;
}
.timeline a{
  font-family: "Poppins" sans-serif;
  text-align: justify;
  font-size: 17px;
  color: #000000;
}
@media (max-width: 767px) {
  .timeline-1 .event {
    padding-top: 30px;
  }
}

.timeline-1 .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.timeline-1 .event:before,
.timeline-1 .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline-1 .event:before {
  left: -207px;
  content: attr(data-date);
  text-align: right;
  font-weight: 100;
  font-size: 18px;
  font-weight: 700;
  min-width: 120px;
  color: #d56d10;
}

@media (max-width: 767px) {
  .timeline-1 .event:before {
    left: 0px;
    text-align: left;
  }
}

.timeline-1 .event:after {
  -webkit-box-shadow: 0 0 0 3px #1b4857;
  box-shadow: 0 0 0 3px #1b4857;
  left: -55.8px;
  background: #fff;
  border-radius: 50%;
  height: 9px;
  width: 9px;
  content: "";
  top: 5px;
}
.horizontal-timeline .items {
  border-top: 3px solid #e9ecef;
}
.timeline2 .histoire{
  text-align: center;
  color: #d56d10;
margin-top: auto;
}
.timeline2 hr{
  color: #d56d10;
  margin-top: auto;
}
.horizontal-timeline .items .items-list {
  display: flexbox;
  position: relative;
  text-align: center;
  padding-top: 80px;
  margin-right: 0;
}

.horizontal-timeline .items .items-list:before {
  content: "";
  position: absolute;
  height: 36px;
  border-right: 2px dashed #1b4857;
  top: 0;
}

.horizontal-timeline .items .items-list .event-date {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
  font-size: 0.9rem;
  padding-top: 8px;
}

@media (min-width: 1140px) {
  .horizontal-timeline .items .items-list {
    display: inline-block;
    width: 24%;
    padding-top: 45px;
  }

  .horizontal-timeline .items .items-list .event-date {
    top: -40px;
  }
}
@media (max-width: 767px) {
  .timeline-1 .event:after {
    left: -31.8px;
  }
}
