/*************************
    Text photo alt
*************************/
section.text-photo-alt{
  margin: 0;
  padding:   0;
}

/*************************
    Header slider
*************************/

#slider-widget {
  margin: 0;
  padding: 0;
  position: relative;
}

#slider-widget #header-carousel .carousel-inner {
  position: relative;
  overflow: hidden;
}
/*-----------------------------------
  Flèche clignotante “scroll down”
-----------------------------------*/
/*-----------------------------------
  Scroll-arrow compacte + ripple réduit
-----------------------------------*/
#slider-widget {
  position: relative;
}

.scroll-arrow.play-now-two {
  position: absolute;
  bottom: 10px;               /* espace réduit depuis le bas */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;                /* diamètre du cercle réduit */
  height: 50px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  overflow: visible;
}

/* Ripple circles réduits */
.scroll-arrow .ripple,
.scroll-arrow .ripple:before,
.scroll-arrow .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;                /* réduit de 70→40 */
  height: 30px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  animation: ripple 3s infinite;
  content: "";
}
.scroll-arrow .ripple:before {
  animation-delay: 0.9s;
}
.scroll-arrow .ripple:after {
  animation-delay: 0.6s;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(255,255,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/* Chevron centered without blink */
.scroll-arrow.play-now-two i.fa-chevron-down {
  position: relative;
  font-size: 1.5rem;
  color: #444444;
  z-index: 1;
  animation: none;
}


/*#slider-widget #header-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 150px);
  opacity: 0; /* Caché par défaut */
  /*z-index: 0; /* En arrière-plan par défaut */
 /* transition: none; /* Désactive les transitions Bootstrap */
  /*
}*/
#slider-widget #header-carousel  .carousel-item {
  height: calc(100vh - 150px);

  display: block; /* Garder les slides dans le flux */
  visibility: hidden; /* Masquer les slides non actives */
  opacity: 0; /* Rendre les slides invisibles */
  transition: none; /* Désactiver les transitions Bootstrap */
  z-index: 1; /* Mettre les slides en arrière-plan par défaut */
}
#slider-widget #header-carousel .carousel-item.active {
  opacity: 1; /* L'image active est visible */
  z-index: 1; /* Place l'image active au-dessus */
  position: relative;
}


#slider-widget #header-carousel .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Place l'image en arrière-plan */
}

/*** Boutons de Navigation ***/
#slider-widget .carousel-control-prev,
#slider-widget .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  border: none;
  border-radius: 50%; /* Boutons arrondis */
  position: absolute;
  top: 50%;
  z-index: 3;
  transition: none;
}

#slider-widget .carousel-control-prev:hover,
#slider-widget .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#slider-widget .carousel-control-prev {
  left: 20px;
}

#slider-widget .carousel-control-next {
  right: 20px;
}

#slider-widget .carousel-control-prev-icon,
#slider-widget .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100%;
}

#slider-widget #header-carousel .carousel-caption {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* Supprimez ou modifiez le background-color */
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
  #slider-widget #header-carousel  .carousel-caption .desc {
    position: relative;
    padding: 56px;
    overflow: hidden;
  }
#slider-widget #header-carousel  .carousel-item.active .desc .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
#slider-widget #header-carousel  .carousel-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#slider-widget #header-carousel  .carousel-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#slider-widget #header-carousel  .carousel-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
#slider-widget #header-carousel  .carousel-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
#slider-widget #header-carousel  .carousel-item.active .carousel-caption .desc .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

#slider-widget #header-carousel .carousel-item .description h2 {
  font-size: 1.5rem;
}

#slider-widget #header-carousel .carousel-item .description p {
  font-size: 1rem;
}
/* Bloc Description */
#slider-widget #header-carousel .carousel-item .description {
  position: relative;
  z-index: 2; /* Place la description au-dessus de l'image */
  text-align: center; /* Centre le texte */
  color: white;
  background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 80%; /* Limite la largeur de la description */
}

#slider-widget #header-carousel .title_effect {
  opacity: 0; /* Caché par défaut */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#slider-widget #header-carousel .title_effect.animate__animated {
  opacity: 1; /* Visible lors de l'animation */
}


/* Styles de base */
.carousel-caption .mainTitle {
  font-size: 5vw; /* Utilise une taille en viewport pour s'adapter */
  color: #FFF;
  margin: 0;
  padding: 0;
  text-align: left;
}

.carousel-caption .subtitle {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-left: 100px; /* Décalage par rapport au titre */
  font-size: 3vw; /* Taille responsive */
  text-align: left;
  opacity: 0.6;

}

.carousel-caption a {
  background-color: #f39ac1;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  margin-left: 100px; /* Aligne le bouton avec le subtitle */
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  float: left;

}

/* Ajustements pour les écrans moyens et petits */
@media (max-width: 768px) {
  .carousel-caption .mainTitle  {
      font-size: 12vw; /* Agrandissement relatif pour les petits écrans */
      text-align: center; /* Centre le titre */
  }
  .carousel-caption .subtitle {
      font-size: 6vw;
      margin-left: 0; /* Supprime le décalage pour centrer le texte */
      text-align: center;
  }
  .carousel-caption   a {
      margin-left: 0; /* Centre également le bouton */
      display: block;
      margin: 20px auto 0 auto;
  }
}

/*** Effets Alternatifs ***/
/* Effet de fondu */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


#slider-widget #header-carousel .carousel-caption {
  z-index: 2;
}

/*** Mobile ***/
@media (max-width: 768px) {
  #slider-widget #header-carousel .carousel-item {
    min-height: 450px;
  }

  #slider-widget .carousel-control-prev,
  #slider-widget .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}
/*================================================
    SECTION TITLE
=================================================*
/*section-title*/
.section-title-widget {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}
.section-title-widget span {
  color: #FF2D55;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}
.section-title-widget h2 {
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section-title-widget h2 b {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #FF2D55 80%);
  font-weight: unset;
  background-size: 100px 1.07em !important;
}
.section-title-widget .btn {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -18px;
}
.section-title-widget .bg-title {
  color: rgba(73, 57, 231, 0.05);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: -1;
  margin-top: -25px;
}
.section-title-widget .bar {
  position: relative;
  width: 20px;
  height: 4px;
  background: #FF2D55;
  display: block;
}
.section-title-widget .bar::after, .section-title-widget .bar::before {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  content: "";
}
.section-title-widget .bar::after {
  width: 25px;
  background: #00acee;
  right: -29px;
}
.section-title-widget .bar::before {
  background: #efa506;
  width: 30px;
  right: -63px;
}

/*================================================
MASKS SLIDERS
=================================================*
/* Masque noir semi-transparent */
.mask-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Ajuste l'opacité selon le besoin */
  z-index: 1;
}

/* Masque clair (au lieu de blanc/gris, on reste léger mais plus contrasté) */
.mask-light {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.18); /* + marqué mais discret */
  z-index: 1;
}

/* Dégradé haut -> bas (plus profond en haut) */
.mask-gradient-top-bottom {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0) 80%
  );
  z-index: 1;
}

/* Dégradé bas -> haut (plus profond en bas) */
.mask-gradient-bottom-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0) 80%
  );
  z-index: 1;
}

/* Masque flou (blur + noir plus présent) */
.mask-blur {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backdrop-filter: blur(7px);          /* un poil plus visible */
  -webkit-backdrop-filter: blur(7px);
  background: rgba(0, 0, 0, 0.45);     /* + noir */
  z-index: 1;
}

/* Lignes diagonales (noir plus net + un peu plus serré) */
.mask-striped {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55) 9px,
    rgba(0, 0, 0, 0) 9px,
    rgba(0, 0, 0, 0) 18px
  );
  z-index: 1;
}

/* Radial (vignette plus ciné, noir plus dense au centre) */
.mask-radial {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.05) 10%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 1;
}

/*================================================
INSTAGRAM
=================================================*/
#instagramCarousel h2{
  color: #aa956f;
  font-style: italic;
  font-weight:400;
}
#instagramCarousel .swiper {
  margin-top: 40px !important;
}
#instagramCarousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#instagramCarousel .thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* Square */
  overflow: hidden;
}

#instagramCarousel .thumbnail-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#instagramCarousel .hover-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#instagramCarousel .thumbnail-wrapper:hover .hover-caption {
  opacity: 1;
}

#instagramCarousel .like-count {
  position: absolute;
  bottom: 5px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

#instagramCarousel .like-count i {
  margin-right: 5px;
}

#instagramCarousel .video-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  padding: 5px;
  border-radius: 50%;
}

#instagramCarousel .swiper-button-prev,
#instagramCarousel .swiper-button-next {
  background: #aa956f;
  /* Couleur de fond */
  color: #fff;
  /* Couleur de la flèche */
  width: 50px;
  /* Taille du bouton */
  height: 50px;
  /* Taille du bouton */
  border-radius: 50%;
  /* Cercle parfait */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  /* Ombre */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  /* Taille des icônes */
  position: absolute;
  top: 50%;
  /* Centré verticalement */
  transform: translateY(-50%);
  /* Centrage parfait */
  z-index: 1000;
  /* Toujours visible */
  cursor: pointer;
  padding: 0;
  /* Supprime le padding */
  overflow: visible;
  /* Assure la visibilité */
}

/* Ajustement pour la flèche gauche */
#instagramCarousel .swiper-button-prev {
  left: -25px;
  /* Décalage vers la gauche */
}

/* Ajustement pour la flèche droite */
#instagramCarousel .swiper-button-next {
  right: -25px;
  /* Décalage vers la droite */
}

/* Effet au survol */
#instagramCarousel .swiper-button-prev:hover,
#instagramCarousel .swiper-button-next:hover {
  background: #99744d;
  /* Couleur plus foncée au survol */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  /* Accentuation de l'ombre */
}

/* Ajustement de la taille et de la visibilité des icônes */
#instagramCarousel .swiper-button-prev::after,
#instagramCarousel .swiper-button-next::after {
  font-size: 20px;
  /* Taille ajustée des flèches */
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  /* Assure un bon alignement */
}

#instagramCarousel .swiper-button-next::after {
  margin-right: 15px;
}

#instagramCarousel .swiper-button-prev::after {
  margin-left: 20px;
}

#feedModal .modal-body img,
#feedModal .modal-body video {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

#feedModal .modal-body .modal-caption {
  text-align: left;
  margin-bottom: 10px;
}

#feedModal .modal-body .modal-date-likes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6c757d;
}

#feedModal .modal-body .modal-date {
  font-size: 14px;
}

#feedModal .modal-footer .btn-instagram {
  background: #e1306c;
  color: #fff;
}

#feedModal .modal-footer .btn-instagram:hover {
  background: #c02d5e;
  color: #fff;
}

/*================================================
ALTERNANCE PHOTOS/TEXTE DROITE ET GAUCHE
=================================================*/
.text-column {
  max-width: 700px; /* Environ 50% de la colonne */
  margin: 0 auto;  /* Centrage horizontal dans la colonne */
  padding: 50px;   /* Padding par défaut */
}
.text-column.no-padding{
  padding: 0 50px 50px 50px;
}
.text-column h1,
.text-column h2,
.text-column h3,
.text-column h4,
.text-column h5,
.text-column h6,
.text-column p,
.text-column ul,
.text-column ol,
.text-column blockquote,
.text-column div {
  display: block; /* Forcer un affichage en bloc */
  margin-bottom: 15px; /* Ajouter un espacement inférieur */
  width: 100%;

}
/*.text-column {
flex-direction: column; /* Organise les enfants en colonne */
/*}*/

.text-column > * {
display: block; /* Chaque élément prend une ligne */
margin-bottom: 15px; /* Ajoute un espacement entre les éléments */
}
/* Facultatif : empêche le max-width d’empêcher le centrage vertical */
.col-md-6.d-flex {
  min-height: 100%;
}
/* Bloc texte aligné dynamiquement */


/* Alignement dynamique pour le bloc texte */
.text-column.text-left {
  margin-left: 0;

  margin-right: auto; /* Aligne le bloc à gauche */
}

.text-column.text-right {
  margin-left: auto;
  margin-right: 0; /* Aligne le bloc à droite */
  text-align: left;
  padding-left: 50px;
}
.image-column  {
  padding: 0 !important;
  margin: 0 !important;
}
.image-column img {
  width: 100%;     /* L'image occupe toute la largeur de la colonne */
  height: auto;    /* Hauteur ajustée automatiquement */
}
.text-photo-alt ul,.about-default ul{
  margin: 10px 0 10px 20px;
  list-style: none;
}
.text-photo-alt ul li::before,.about-default  ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  /*color: #f49ac1;*/
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
} 


/****** buttons ***/
.btn-cta  {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  color: var(--thm-black);
  padding: 25px 61.5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;
}

.btn-cta:hover {
  color: #FFF;
  background-color: #FFA724;
  border-color: #FFA724; 
}
.btn-cta {
  color: #FFF;
  border-color: #000; 
  background-color: #000;

}
.btn-cta:hover {
    color: #FFA724;
    background-color: #1d436f;
    border-color: #1d436f; 
}

.read-more-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  text-transform: uppercase;
  font-weight: bold;
  color: var(--thm-black);
  padding: 10px 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;

}
.read-more-btn:hover {
    color: #FFA724;
    background-color: #1d436f;
    border-color: #1d436f; 
}


/******** list *******/
section.content ul {
  margin: 10px 0 10px 20px;
  list-style: none;
}
section.content li {
  padding-left: 1.3em;
}
section.content li::before {
  content: "\f00c";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
}


/*================================================
gallery_masonry
=================================================*/

.gallery_masonry .gallery_masonry-item {
  margin-bottom: 30px;
}

.gallery_masonry #gallery_masonry-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.gallery_masonry #gallery_masonry-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.gallery_masonry #gallery_masonry-flters li:hover,
.gallery_masonry #gallery_masonry-flters li.filter-active {
  color: #2487ce;
}

.gallery_masonry #gallery_masonry-flters li:last-child {
  margin-right: 0;
}

.gallery_masonry .gallery_masonry-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gallery_masonry .gallery_masonry-wrap::before {
  content: "";
  background: rgba(36, 135, 206, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-links {
  text-align: center;
  z-index: 4;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.gallery_masonry .gallery_masonry-wrap .gallery_masonry-links a:hover {
  color: #fff;
}

.gallery_masonry .gallery_masonry-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.gallery_masonry .gallery_masonry-wrap:hover .gallery_masonry-info {
  opacity: 1;
}

.gallery_masonry .gallery_masonry-wrap:hover .gallery_masonry-info::before {
  top: 15px;
  left: 15px;
}

.gallery_masonry .gallery_masonry-wrap:hover .gallery_masonry-info::after {
  bottom: 15px;
  right: 15px;
}

/*================================================
GOOGLE MAP
=================================================*/
.contact-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden; /* Évite tout dépassement */
}

.contact-map .container-fluid,.contact-map .container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding: 0; /* Supprime les marges internes */
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* Supprime les bordures de l'iframe */
}

/*================================================
Alternace photos droite et gauche
=================================================*/
.text-column {
  max-width: 700px; /* Environ 50% de la colonne */
  margin: 0 auto;  /* Centrage horizontal dans la colonne */
  padding: 50px;   /* Padding par défaut */
}
.text-column h1,
.text-column h2,
.text-column h3,
.text-column h4,
.text-column h5,
.text-column h6,
.text-column p,
.text-column ul,
.text-column ol,
.text-column blockquote,
.text-column div {
  display: block; /* Forcer un affichage en bloc */
  margin-bottom: 15px; /* Ajouter un espacement inférieur */
  width: 100%;
}
/*
.text-column h2,
.text-column h3,
.text-column h4{
  font-weight:300;

}*/

.text-column {
flex-direction: column; /* Organise les enfants en colonne */
}

.text-column > * {
display: block; /* Chaque élément prend une ligne */
margin-bottom: 15px; /* Ajoute un espacement entre les éléments */
}

/* Bloc texte aligné dynamiquement */


/* Alignement dynamique pour le bloc texte */
.text-column.text-left {
  margin-left: 0;

  margin-right: auto; /* Aligne le bloc à gauche */
}

.text-column.text-right {
  margin-left: auto;
  margin-right: 0; /* Aligne le bloc à droite */
  text-align: left;
  padding-left: 50px;
}
.image-column img {
  width: 100%;     /* L'image occupe toute la largeur de la colonne */
  height: auto;    /* Hauteur ajustée automatiquement */
}
.text-photo-alt ul {
  margin: 10px 0 10px 20px;
  list-style: none;
}
.text-photo-alt ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  /*color: #f49ac1;*/
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
} 

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  /*border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;*/
  border-right:0;
  border-bottom: 0;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*================================================
Blog CSS
=================================================*/
.blog-area-widget {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.blog-area-widget.bg-image {
  background-image: url(../../assets/img/bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.blog-area-widget .single-blog-post {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.06);
}

.blog-area-widget .single-blog-post .blog-image {
  position: relative;
  overflow: hidden;
}

.blog-area-widget .single-blog-post .blog-image a {
  display: block;
}
.blog-area-widget .single-blog-post .blog-image img {
  max-width: 100%;
  min-height: 300px;
}
.blog-area-widget .single-blog-post .blog-image a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-area-widget .single-blog-post .blog-image .post-tag {
  position: absolute;
  right: 0;
  top: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-area-widget .single-blog-post .blog-image .post-tag a {
  background: #FF2D55;
  color: #ffffff;
  padding: 9px 28px;
}

.blog-area-widget .single-blog-post .blog-post-content {
  padding: 25px;
}

.blog-area-widget .single-blog-post .blog-post-content .date {
  color: #8dc63f;
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-area-widget .single-blog-post .blog-post-content h3 {
  margin-top: 13px;
  margin-bottom: 15px;
  line-height: 30px;
  font-size: 22px;
}

.blog-area-widget .single-blog-post .blog-post-content h3 a {
  color: #0d1028;
}

.blog-area-widget .blog-area-widget .single-blog-post .blog-post-content h3 a:hover, .single-blog-post .blog-post-content h3 a:focus {
  color: #FF2D55;
}

.single-blog-post .blog-post-content p {
  margin-bottom: 15px;
}

.blog-area-widget .single-blog-post .read-more-btn {
  position: relative;
  font-weight: 500;
  color: #FFF;
}

.blog-area-widget .single-blog-post .read-more-btn:hover {
  color: #00acee;
  letter-spacing: 1px;
}

.blog-area-widget .single-blog-post:hover .blog-image a img, .single-blog-post:focus .blog-image a img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.blog-area-widget .single-blog-post:hover .blog-image .post-tag, .single-blog-post:focus .blog-image .post-tag {
  top: 70px;
}

.blog-area-widget .single-blog-post:hover .blog-image .post-tag a, .single-blog-post:focus .blog-image .post-tag a {
  background: #8dc63f;
  color: #ffffff;
}

.blog-area-widget .blog-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px;
  line-height: .01;
}

/*section-title*/
.blog-area-widget .section-title {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}
.blog-area-widget .section-title span {
  color: #FF2D55;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}
.blog-area-widget .section-title h2 {
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-area-widget .section-title h2 b {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #FF2D55 80%);
  font-weight: unset;
  background-size: 100px 1.07em !important;
}
.blog-area-widget .section-title .btn {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -18px;
}
.blog-area-widget .section-title .bg-title {
  color: rgba(73, 57, 231, 0.05);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 120px;
  position: absolute;
  top: 0;
  right: 35%;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: -1;
  margin-top: -25px;
}
.blog-area-widget .section-title .bar {
  position: relative;
  width: 20px;
  height: 4px;
  background: #FF2D55;
  display: block;
}
.blog-area-widget .section-title .bar::after, .section-title .bar::before {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  content: "";
}
.blog-area-widget .section-title .bar::after {
  width: 25px;
  background: #00acee;
  right: -29px;
}
.blog-area-widget .section-title .bar::before {
  background: #efa506;
  width: 30px;
  right: -63px;
}



/*blog-style-two*/
.blog-section {
  padding-bottom: 90px;
}

.single-blog-card {
  position: relative;
  margin-bottom: 30px;
}

.single-blog-card::before {
  opacity: .60;
  background: #0d1028;
  content: "";
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  position: absolute;
  width: 100%;
}

.single-blog-card img {
  width: 100%;
}

.single-blog-card .post-tag {
  position: absolute;
  right: 0;
  top: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

.single-blog-card .post-tag a {
  background: #FF2D55;
  color: #ffffff;
  padding: 9px 28px;
}

.single-blog-card .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 30px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}

.single-blog-card .blog-post-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 28px;
}

.single-blog-card .blog-post-content h3 a {
  color: #ffffff;
}

.single-blog-card .blog-post-content h3 a:hover, .single-blog-card .blog-post-content h3 a:focus {
  color: #FF2D55;
}

.single-blog-card .blog-post-content p {
  color: #ffffff;
  opacity: .77;
}

.single-blog-card .blog-post-content .read-more-btn {
  position: relative;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  color: #FF2D55;
}

.single-blog-card .blog-post-content .read-more-btn:hover {
  color: #00acee;
  letter-spacing: 1px;
}

.single-blog-card:hover .post-tag, .single-blog-card:focus .post-tag {
  top: 40px;
}

.single-blog-card:hover .post-tag a, .single-blog-card:focus .post-tag a {
  background: #8dc63f;
  color: #ffffff;
}

.single-blog-card:hover .blog-post-content, .single-blog-card:focus .blog-post-content {
  padding-bottom: 30px;
}

.single-blog-card:hover .blog-post-content .read-more-btn, .single-blog-card:focus .blog-post-content .read-more-btn {
  opacity: 1;
  visibility: visible;
}

/*================================================
main title  Default CSS
=================================================*/
/* Main Title Section */
.main-title {
  padding: 0 20px;
  text-align: center;
}

.main-title .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Bloc titre principal */
.block-title {
  position: relative;
  /*max-width: 800px;*/
  text-align: center;
}

.block-title img {
  display: block;
  /*margin: 0 auto 15px;*/
  margin-top: 0;
  margin-bottom: 15px;
  max-width: 100px; /* Ajustable selon le design */
}

/* Sous-titre */
/*.block-title p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}*/

/* Titre principal */
.block-title h1, .block-title h2 {
  position: relative;
  margin-bottom: 20px;
}

/* Effet soulignement sous le titre */
/*.block-title h1::after, .block-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #007BFF; /* Couleur personnalisable */
 /* position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}*/

/* Responsivité */
@media (max-width: 768px) {
  .block-title h1, .block-title h2 {
      font-size: 2rem;
  }
  
  .block-title p {
      font-size: 1rem;
  }
}

/*================================================
About Default CSS
=================================================*/
/* Section About */
.about-default {
  margin: 0 auto;
  padding:  0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-default .content {
  flex: 1;
  text-align: left;
}

.about-default h2 {
  position: relative;
  margin-top: 30px !important;
}

/*.about-default h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #007BFF;
  position: absolute;
  bottom: -10px;
  left: 0;
}*/

.about-default p {
  margin-bottom: 10px;
}

.about-default .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-default img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about-default img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .about-default {
      flex-direction: column;
      text-align: center;
  }

  .about-default .content {
      text-align: center;
  }

  .about-default h2::after {
      left: 50%;
      transform: translateX(-50%);
  }
}
/* Cible tous les tableaux dans la section .about-default */
.about-default table {
  width: 100%;
  border-collapse: collapse; /* rendu propre des zébrures */
}

/* Tous les tableaux dans .about-default */
.about-default table,
.about-default .table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}

/* En-tête : orange + gras, sans bordure */
.about-default table thead th,
.about-default table thead td,
.about-default .table thead th,
.about-default .table thead td {
  color: #FF5D15;
  font-weight: 700;
  background: transparent;
  border: 0 !important;
}

/* Corps : texte noir dans les cellules classiques (td), sans bordure */
.about-default table tbody td,
.about-default .table tbody td {
  color: #000;
}

/* Padding confortable sur toutes les cellules, aucune bordure */
.about-default table th,
.about-default table td,
.about-default .table th,
.about-default .table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  border: 0 !important;
}

/* Zébrage des lignes du tbody */
.about-default table tbody tr:nth-of-type(odd) > *,
.about-default .table tbody tr:nth-of-type(odd) > * {
  background-color: #D7D7D7;
}
.about-default table tbody tr:nth-of-type(even) > *,
.about-default .table tbody tr:nth-of-type(even) > * {
  background-color: #F5F5F5;
}

/* Neutralise la bordure par défaut Bootstrap entre thead/tbody */
.about-default .table > :not(caption) > * > * {
  border: 0 !important;
}



/*================================================
About CSS
=================================================*/
.about-area-2pics-widget {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 80px 0;;
}

.about-area-2pics-widget.bg-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-area-2pics-widget .about-content span {
  color: #FF2D55;
  letter-spacing: 1px;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}

.about-area-2pics-widget .about-area-2pics-widget .about-content h2 {
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 25px;
}

.about-area-2pics-widget .about-content h2 b {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #FF2D55));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #FF2D55 80%);
  font-weight: unset;
  background-size: 100px 1.05em !important;
}

.about-area-2pics-widget .about-content .signature {
  margin-top: 35px;
  margin-bottom: 35px;
}

.about-area-2pics-widget .about-content .btn-primary {
  margin-right: 8px;
}

.about-area-2pics-widget .about-image {
  position: relative;
}

.about-area-2pics-widget .about-image .about-img1 {
  max-width: 750px;
  position: relative;
  right: -100px;
  top: -80px;
}

.about-area-2pics-widget .about-image .about-img2 {
  max-width: 310px;

  position: absolute;
  left: 20px;
  bottom: -80px;
}

.about-area-2pics-widget .about-image img.shape-img {
  max-width: 70px;
}
.about-area-2pics-widget .about-image .shape-img {
  position: absolute;
  top: -28px;
  left: 48%;
  -webkit-animation: movebounce 5s linear infinite;
          animation: movebounce 5s linear infinite;
}

.about-area-2pics-widget .about-image .btn {
  position: absolute;
  bottom: -20px;
  right: 0;
}
@keyframes movebounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes movebounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/*================================================
Education Speakers Area CSS
=================================================*/
.e-speakers-card {
  margin-bottom: 30px;
  text-align: center;
}

.e-speakers-card .speakers-image {
  position: relative;
}
.e-speakers-card .speakers-image img {

max-width: 100%;
}

.e-speakers-card .speakers-image img {
  border: 5px solid #efa506;
}

.e-speakers-card .speakers-image .color2 {
  border: 5px solid #FF2D55;
}

.e-speakers-card .speakers-image .color3 {
  border: 5px solid #292CDC;
}

.e-speakers-card .speakers-image .color4 {
  border: 5px solid #7E23CB;
}

.e-speakers-card .speakers-image .color5 {
  border: 5px solid #1EB1E9;
}

.e-speakers-card .speakers-image .color6 {
  border: 5px solid #C13584;
}

.e-speakers-card .speakers-image .color7 {
  border: 5px solid #62618D;
}

.e-speakers-card .speakers-image .color8 {
  border: 5px solid #0077B5;
}

.e-speakers-card .speakers-image .social {
  padding: 0;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.e-speakers-card .speakers-image .social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}

.e-speakers-card .speakers-image .social li:last-child {
  margin-right: 0;
}

.e-speakers-card .speakers-image .social li a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FF2D55;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50px;
}

.e-speakers-card .speakers-image .social li a i:hover {
  background-color: #efa506;
}

.e-speakers-card .speakers-content {
  margin-top: 30px;
}

.e-speakers-card .speakers-content h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
}
.e-speakers-card .speakers-content h3 {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.e-speakers-card .speakers-content h4 {
  color: #efa506;
  font-size: 16px;
  display: inline-block;
  margin-top: 5px;
  margin-top: 0;
  font-weight: 500;

}
.e-speakers-card .speakers-content h5 {
  color: #00acee;
  font-size: 14px;
  display: block;
  margin-top: -5px;
  margin-bottom: 0;
  font-weight: 400;

}
.e-speakers-card:hover .speakers-image .social {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
/*================================================
Carousel Speakers Area CSS
=================================================*/
.m-speakers-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../../assets/img/marketing/speakers/speakers-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 250px;
}
.m-speakers-area .section-title-with-center h2 {
  color: #ffffff;
}

.m-speakers-card {
  margin-bottom: 30px;
  text-align: center;
}
.m-speakers-card .speakers-image {
  position: relative;
}
.m-speakers-card .speakers-image img {
  border: 5px solid #efa506;
}
.m-speakers-card .speakers-image .color2 {
  border: 5px solid #FF2D55;
}
.m-speakers-card .speakers-image .color3 {
  border: 5px solid #8dc63f;
}
.m-speakers-card .speakers-image .color4 {
  border: 5px solid #ffffff;
}
.m-speakers-card .speakers-image .social {
  padding: 0;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.m-speakers-card .speakers-image .social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.m-speakers-card .speakers-image .social li:last-child {
  margin-right: 0;
}
.m-speakers-card .speakers-image .social li a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FF2D55;
  color: #ffffff;
  transition: 0.5s;
  border-radius: 50px;
}
.m-speakers-card .speakers-image .social li a i:hover {
  background-color: #efa506;
}
.m-speakers-card .speakers-content {
  margin-top: 30px;
}
.m-speakers-card .speakers-content h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
}
.m-speakers-card .speakers-content span {
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  margin-top: 12px;
}
.m-speakers-card:hover .speakers-image .social {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.m-speakers-slides.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: linear-gradient(93.54deg, #EFA506 0%, #FF2D55 100%);
  border: none;
  border-radius: 20px;
}
.m-speakers-slides.owl-theme .owl-dots .owl-dot:hover span, .m-speakers-slides.owl-theme .owl-dots .owl-dot:focus span {
  background: linear-gradient(93.54deg, #EFA506 0%, #FF2D55 100%);
}
.m-speakers-slides.owl-theme .owl-dots .owl-dot.active span {
  background: linear-gradient(93.54deg, #EFA506 0%, #FF2D55 100%);
  width: 30px;
}

/*Speakers-style-three*/
.speakers-area-two {
  padding-bottom: 90px;
}
.speakers-area-two img {
  max-width: 100%;
}
.single-speakers-box {
  margin-bottom: 30px;
  text-align: center;
  transition: 0.5s;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06);
}
.single-speakers-box .speakers-content {
  background: #ffffff;
  padding: 30px 0;
  position: relative;
  transition: 0.5s;
}
.single-speakers-box .speakers-content::before {
  content: "";
  width: 0;
  height: 20px;
  color: #ffffff;
  background: #FF2D55;
  position: absolute;
  top: -20px;
  right: 0;
  transition: 0.5s;
}
.single-speakers-box .speakers-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.single-speakers-box .speakers-content h3 a {
  color: #0d1028;
}
.single-speakers-box .speakers-content span {
  display: block;
  text-transform: uppercase;
  transition: 0.5s;
  font-family: "Oswald", sans-serif;
  color: #FF2D55;
}
.single-speakers-box .speakers-content .social {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: scale(0);
  transition: 0.5s;
}
.single-speakers-box .speakers-content .social li {
  display: inline-block;
}
.single-speakers-box .speakers-content .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  color: #a0a0a0;
  margin-right: 10px;
  position: relative;
  z-index: 1;
}
.single-speakers-box .speakers-content .social li a:hover {
  color: #ffffff;
}
.single-speakers-box .speakers-content .social li a:hover::before {
  background: #00acee;
  color: #ffffff;
  transform: rotate(-45deg);
}
.single-speakers-box .speakers-content .social li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  transform: rotate(45deg);
  z-index: -1;
  transition: 0.5s;
}
.single-speakers-box:hover {
  box-shadow: 0 0 28px 0 rgba(6, 74, 255, 0.22);
}
.single-speakers-box:hover::before, .single-speakers-box:hover::after {
  border-color: #FF2D55;
  transform: scale(1);
}
.single-speakers-box:hover .speakers-content {
  background: #FF2D55;
}
.single-speakers-box:hover .speakers-content::before {
  width: 100%;
}
.single-speakers-box:hover .speakers-content .social {
  transform: scale(1);
}
.single-speakers-box:hover .speakers-content h3 a, .single-speakers-box:hover .speakers-content span {
  color: #ffffff;
}

/*--------------------------------------------------------------
#speakers alt
---------------------------------------------------------------*/
.speakers-area img {
  max-width: 100%;
}
.single-speakers-widget {
  overflow: hidden;
  position: relative;
}
.single-speakers-widget::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(transparent 0%, transparent 40%, rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.8) 89%, rgba(0, 0, 0, 0.63) 100%);
  width: 100%;
  height: 100%;
}
.single-speakers-widget .speakers-content {
  position: absolute;
  bottom: 35px;
  left: 35px;
  transition: 0.5s;
}
.single-speakers-widget .speakers-content h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.single-speakers-widget .speakers-content h3 ,.single-speakers-widget .speakers-content h3 a {
  color: #FF2D55;
}
.single-speakers-widget .speakers-content h3 a:hover, .single-speakers-widget .speakers-content h3 a:focus {
  color: #8dc63f;
}
.single-speakers-widget .speakers-content span {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  transition: 0.5s;
}
.single-speakers-widget ul {
  padding: 15px 20px 10px;
  margin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  transition: 0.5s;
  position: absolute;
  right: -15px;
  top: 0;
  background-color: #ffffff;
}
.single-speakers-widget ul li {
  display: block;
  margin-bottom: 5px;
}
.single-speakers-widget ul li a {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px;
  text-align: center;
  background-color: #FF2D55;
  color: #ffffff;
  border-radius: 50%;
  display: block;
}
.single-speakers-widget ul li a.facebook {
  background-color: #4267b2;

}
.single-speakers-widget ul li a.twitter {
  background-color: #38A1F3;
}
.single-speakers-widget ul li a.instagram {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
.single-speakers-widget ul li a.linkedin {
  background-color: #0077B5;
}
.single-speakers-widget ul li a:hover, .single-speakers-widget ul li a:focus {
  background-color: #FF2D55;
  color: #ffffff;
}
.single-speakers-widget:hover .speakers-content, .single-speakers-widget:focus .speakers-content {
  bottom: 45px;
}
.single-speakers-widget:hover ul, .single-speakers-widget:focus ul {
  right: 0;
  opacity: 1;
  visibility: visible;
}


/*Speakers-Style-Two*/
.anagram-single-speakers {
  overflow: hidden;
  position: relative;
}
.anagram-single-speakers .speakers-content {
  position: absolute;
  bottom: -25px;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  height: auto;
  padding: 25px 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.anagram-single-speakers .speakers-content h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.anagram-single-speakers .speakers-content h3 a {
  color: #0d1028;
}
.anagram-single-speakers .speakers-content h3 a:hover, .anagram-single-speakers .speakers-content h3 a:focus {
  color: #FF2D55;
}
.anagram-single-speakers .speakers-content span {
  display: block;
  margin-top: 8px;
  color: #FF2D55;
  font-family: "Oswald", sans-serif;
  transition: 0.5s;
}
.anagram-single-speakers ul {
  padding: 15px 20px 10px;
  margin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  transition: 0.5s;
  position: absolute;
  right: -15px;
  top: 0;
  background-color: #ffffff;
}
.anagram-single-speakers ul li {
  display: block;
  margin-bottom: 5px;
}
.anagram-single-speakers ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FF2D55;
  color: #ffffff;
  border-radius: 50%;
}
.anagram-single-speakers ul li a.facebook {
  background-color: #4267b2;
}
.anagram-single-speakers ul li a.twitter {
  background-color: #38A1F3;
}
.anagram-single-speakers ul li a.instagram {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
.anagram-single-speakers ul li a.linkedin {
  background-color: #0077B5;
}
.anagram-single-speakers ul li a:hover, .anagram-single-speakers ul li a:focus {
  background-color: #FF2D55;
  color: #ffffff;
}
.anagram-single-speakers img {
  transition: 0.5s;
}
.anagram-single-speakers:hover .speakers-content, .anagram-single-speakers:focus .speakers-content {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.anagram-single-speakers:hover ul, .anagram-single-speakers:focus ul {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.anagram-single-speakers:hover img, .anagram-single-speakers:focus img {
  transform: scale(1.2);
  filter: grayscale(100%);
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-widget .portfolio-item {
  margin-bottom: 30px;
}

.portfolio-widget #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio-widget #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio-widget #portfolio-flters li:hover,
.portfolio-widget #portfolio-flters li.filter-active {
  color: #2487ce;
}

.portfolio-widget #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio-widget .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio-widget .portfolio-wrap::before {
  content: "";
  background: rgba(4, 157, 162, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio-widget .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio-widget .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio-widget .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio-widget .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio-widget .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio-widget .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio-widget .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
  line-height: 52px;
}

.portfolio-widget .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio-widget .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio-widget .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-widget .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio-widget .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*----------------------------------------*/
/*  04. About CSS
/*----------------------------------------*/
.about-section-widget .about-wrapper {
  margin-left: 0;
  margin-right: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-section-widget .about-wrapper>.col,
.about-section-widget .about-wrapper>[class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section-widget .about-wrapper {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-widget .about-wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }

  .about-section-widget .about-wrapper>.col,
  .about-section-widget .about-wrapper>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-widget .about-wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }

  .about-section-widget .about-wrapper>.col,
  .about-section-widget .about-wrapper>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*-- About Image --*/
.about-section-widget .about-image {
  position: relative;
  z-index: 1;
}

.about-section-widget .about-image.about-image-1 {
  margin-bottom: -50px;
}

.about-section-widget .about-image.about-image-2 {
  margin-top: -50px;
  border-top: 20px solid #FFF;
  border-right: 20px solid #FFF;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-widget .about-image {
    margin: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-widget .about-image {
    margin: 0 !important;
  }

}

@media only screen and (max-width: 575px) {
  .about-section-widget .about-image.about-image-2 {
    margin-top: 30px !important;
  }
}

.about-section-widget .about-image img {
  width: 100%;
}

/*-- About Content --*/
.about-section-widget .about-content.about-content-1 {
  margin-bottom: 50px;
}

.about-section-widget .about-content.about-content-2 {
  margin-top: 0px;
  padding-top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section-widget .about-content.about-content-2 {
    padding-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-widget .about-content.about-content-1 {
    margin-bottom: 0;
  }

  .about-section-widget .about-content.about-content-2 {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-widget .about-content.about-content-1 {
    margin-bottom: 0;
  }

  .about-section-widget .about-content.about-content-2 {
    margin-top: 15px;
  }
}

.about-section-widget .about-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;*/

}

.about-section-widget .about-content h4 {
  position: relative;
  font-size: 24px;
  margin-bottom: 15px;
  /*color: #f49ac1;*/

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section-widget .about-content h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-widget .about-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .about-section-widget .about-content h3 {
    font-size: 20px;
  }

  .about-section-widget .about-content h3 span {
    font-size: 36px;
  }
}

.about-section-widget .about-content p {
  margin-bottom: 20px;
}

.about-section-widget .about-content p:last-child {
  margin-bottom: 0;
}

.about-section-widget .about-content .btn {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# parallax
--------------------------------------------------------------*/
section.parallax-widget{
  margin-top:100px;
}

.parallax-widget{
  position:relative;
  padding-top:120px;
  padding-bottom:120px;
  background-color:#000;
  overflow:hidden;
}

/* couche image */
.parallax-widget .parallax_bg{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-repeat:no-repeat;
  background-position:center center;
  background-attachment:fixed;
  opacity:0.9;
}

/* ==========================================================
   MODES D'AFFICHAGE (choisis 1 classe sur <section>)
   - is-cover          : remplit, recadre (effet "zoom")
   - is-contain        : affiche tout, bandes possibles
   - is-fit-width      : ✅ tout en largeur, pas de zoom (reco)
   - is-fit-width-top  : idem mais ancré en haut
   - is-fit-width-soft : léger zoom contrôlé (105–120%)
   ========================================================== */

/* 1) COVER (actuel) */
.parallax-widget.is-cover .parallax_bg{
  background-size:cover;
}

/* 2) CONTAIN (aucun recadrage) */
.parallax-widget.is-contain .parallax_bg{
  background-size:contain;
  background-color:#000; /* fond derrière si bandes */
}

/* 3) ✅ FIT WIDTH : toute la largeur visible, hauteur auto */
.parallax-widget.is-fit-width .parallax_bg{
  background-size:100% auto;
  background-position:center center;
  background-color:#000;
}

/* 4) FIT WIDTH TOP : toute la largeur visible, ancré en haut */
.parallax-widget.is-fit-width-top .parallax_bg{
  background-size:100% auto;
  background-position:center top;
  background-color:#000;
}

/* 5) FIT WIDTH SOFT : léger zoom (à ajuster : 105% à 120%) */
.parallax-widget.is-fit-width-soft .parallax_bg{
  background-size:110% auto;
  background-position:center center;
  background-color:#000;
}

/* masque éventuel (si tu en as un dans .parallax_bg) */
.parallax-widget .parallax_bg .mask{
  position:absolute;
  inset:0;
  z-index:1;
}

/* contenu au-dessus */
.parallax-widget .container{
  position:relative;
  z-index:2;
}

.parallax-widget h2{
  font-weight:600;
  text-align:center;
  color:#ffffff;
  max-width:700px;

  /* ✅ centre le bloc dans la largeur */
  margin-left:auto;
  margin-right:auto;
}

.parallax-widget p{
  text-align:center;
  color:#fff;
  font-size:26px;
}

/* Mobile/tablette : background-attachment: fixed est souvent mal géré */
@media (max-width: 991.98px){
  .parallax-widget .parallax_bg{
    background-attachment:scroll;
  }
}

@media screen {
  html:not(.no-js) [data-aos="flip-down"].aos-animate {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
  }
}
@media screen {
  html:not(.no-js) [data-aos^="flip"][data-aos^="flip"] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
  }
}
@media screen {
  html:not(.no-js) [data-aos="flip-down"] {
    -webkit-transform: perspective(2500px) rotateX(100deg);
    transform: perspective(2500px) rotateX(100deg);
  }
}
[data-aos][data-aos][data-aos-easing="ease-in-out"], body[data-aos-easing="ease-in-out"] [data-aos] {
  transition-timing-function: ease-in-out;
}
[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
/*[data-aos] {
  pointer-events: none;
}*/
.parallax-widget .btn-cta {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color: var(--thm-black);
  padding: 25px 61.5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;
}
.parallax-widget  .btn-cta {
  color: #062B56;
  border-color: #FFF; 
  background-color: #FFF;

}
.parallax-widget  .btn-cta:hover {
    color: #FFF;
    background-color: #FFA724;
    border-color: #FFA724; 
}

/*--------------------------------------------------------------
# Activities
--------------------------------------------------------------*/
.activities-widget {
  position: relative;
}
.activities-widget .bg_line {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  -webkit-animation: movebounce 5s linear infinite;
  animation: movebounce 5s linear infinite;
  width: 400px;
}
.activities-widget .activity{
  margin-bottom: 30px;
  position: relative;
}
.activities-widget  .activity:hover{
  cursor: pointer;
}
.activities-widget .thumb{
  border-radius: 0%;
  overflow: hidden;
  position: relative;
}
.activities-widget .thumb img{
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.activity:hover .thumb img{
  -webkit-transform: scale(1.1) rotate(-1deg);
  -moz-transform: scale(1.1) rotate(-1deg);
  -o-transform: scale(1.1) rotate(-1deg);
  -ms-transform: scale(1.1) rotate(-1deg);
  transform: scale(1.1) rotate(-1deg);
}
.activities-widget .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0px;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.activities-widget .overlay .details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.activities-widget .overlay .details h4 {
  color: #ffffff !important;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}
.activities-widget .overlay .details a:hover h4   {
  color: #ffffff !important;

}
.activities-widget .overlay .details p {
  font-size: 14px;
  font-family: "Nunito";
  color: #ffffff;
  line-height: 1.2;
}

.activities-widget .btn-cta {
  color: #FFF;
  border-color: #000; 
  background-color: #000;

}
.activities-widget .btn-cta:hover {
    color: #FFA724;
    background-color: #1d436f;
    border-color: #1d436f; 
}

/*--------------------------------------------------------------
# post
--------------------------------------------------------------*/
#post {
  margin: 50px 0;
}

.post .post-detail {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  /*box-shadow: 0 48px 58px -29px rgba(0, 0, 0, 0.17);
  /*border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);*/
}
.post .post-detail.communes {
  box-shadow: 0 48px 58px -29px rgba(0, 0, 0, 0.17);
}

.post .post-detail .post-detail-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.post a .post-detail.communes .post-detail-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  height: 100%;
  width: auto;
  min-width: 100%;
  max-width: 100vw;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.post   a:hover .post-detail.communes .post-detail-img img {
  transform: translate(-50%, -50%) scale(1.025);
}





a .post-detail .post-detail-img .post-overlay-banner {
  background: rgba(60, 60, 59, 0.7);
  position: absolute;
  top: -100%;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
}
.post-detail .post-detail-img .post-overlay-banner ul {
  text-align: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  z-index: 99;
}

.post-detail .post-detail-img .post-overlay-banner ul li {
  display: inline-block;
  text-align: center;
}

a .post-detail .post-detail-img .post-overlay-banner ul li  {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
}

.post-detail .post-detail-img .post-overlay-banner .post-overlay-banner ul li a:hover {
  background: #ffffff;
  color: #000;
}

a:hover .post-detail  .post-overlay-banner {
  opacity: 1;
  top: 0;
}




.post-detail.gray-bg .post-content {
  background: #f6f6f6;
}


.post .post-detail .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.post .post-detail .post-detail-info {
  padding: 25px 15px;
  
}

.post .post-detail .post-detail-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 22px;
  color: #9A855C !important;
}



.post .post-detail .post-detail-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.post .post-detail .post-detail-info h4 {
  font-weight: 400;
  font-style: normal;
  margin-bottom: 5px;
  font-size: 20px;
  color: #00576f !important;
}
.post .post-detail:hover .social {
  opacity: 1;
}

/********************************
  10. TEAM
********************************/

.equipe{
  background: #fff;
  -webkit-transition: .5s;
  transition: .5s;
  margin-bottom: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
  box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);}

.equipe:hover{
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.equipe .photo {
  position: relative;
}

.equipe .photo img {
  width: 100%;
}

.equipe .photo .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(36, 135, 206, 0.6);
  padding: 8px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: all 500ms ease 0s;
}

.equipe .photo .overlay .border {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.equipe .photo .overlay .border .icon-holder {
  width: 50px;
  height: 50px;
  background: #fff;
  margin: 4px;
  border-radius: 50%;
  transition: all 500ms ease 0s;
}

.equipe .photo .overlay .border .icon-holder a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  color: #272727;
  border-radius: 50%;
  line-height: 50px;
  transition: all 500ms ease 0s;
  background: #fff;
}

.equipe .photo .overlay .border .icon-holder a i{
  line-height: 50px!important;
}

.equipe .content {
  margin-top: 15px;
  transition: .5s;
  padding: 15px;
  text-align: center;
}

.equipe .content h4 {
 margin-bottom: 3px;
}

.equipe .content h4 a{
  font-size: 21px;
  font-weight: 400;
}

.equipe .content p {
  font-size: 15px;
  margin-bottom: 0;
}

.equipe:hover .photo .overlay {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-bg: #ffffff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(25, 26, 28, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
  .modal.fade .modal-dialog {
      transition: none
  }
}

.modal.show .modal-dialog {
  transform: none
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02)
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #191A1C;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg)
}

.modal-backdrop.fade {
  opacity: 0
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity)
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height)
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding)
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

.modal-footer>* {
  margin: calc(var(--bs-modal-footer-gap) * .5)
}

@media (min-width:576px) {
  .modal {
      --bs-modal-margin: 1.75rem;
      --bs-modal-box-shadow: 0 0.5rem 1rem rgba(25, 26, 28, 0.15)
  }

  .modal-dialog {
      max-width: var(--bs-modal-width);
      margin-right: auto;
      margin-left: auto
  }

  .modal-sm {
      --bs-modal-width: 300px
  }
}

@media (min-width:992px) {

  .modal-lg,
  .modal-xl {
      --bs-modal-width: 800px
  }
}

@media (min-width:1200px) {
  .modal-xl {
      --bs-modal-width: 1140px
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0
}

.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
  border-radius: 0
}

.modal-fullscreen .modal-body {
  overflow-y: auto
}

@media (max-width:575.98px) {
  .modal-fullscreen-sm-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-sm-down .modal-footer,
  .modal-fullscreen-sm-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto
  }
}

@media (max-width:767.98px) {
  .modal-fullscreen-md-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-md-down .modal-footer,
  .modal-fullscreen-md-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-md-down .modal-body {
      overflow-y: auto
  }
}

@media (max-width:991.98px) {
  .modal-fullscreen-lg-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-lg-down .modal-footer,
  .modal-fullscreen-lg-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto
  }
}

@media (max-width:1199.98px) {
  .modal-fullscreen-xl-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-xl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-xl-down .modal-footer,
  .modal-fullscreen-xl-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-xl-down .modal-body {
      overflow-y: auto
  }
}

@media (max-width:1399.98px) {
  .modal-fullscreen-xxl-down {
      width: 100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-xxl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-xxl-down .modal-footer,
  .modal-fullscreen-xxl-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-xxl-down .modal-body {
      overflow-y: auto
  }
}

/********************************
  11. hr
********************************/
hr.widget {
    border: none;                 /* supprime le style par défaut */
    border-top: 1px solid #ddd;    /* gris clair */
     /* Ajoute un espacement vertical */
}

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.read_tcs {
  font-size: 10px;
}
/***
====================================================================
        Page Banner
====================================================================
***/

.page-banner{
    position:relative;
    padding: 0;
    color: #ffffff;
    background: #061138;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    overflow: hidden; /* nécessaire pour éviter les fuites visuelles */
}

/* Image de fond — PARALLAX CSS ACTIVÉ */
.page-banner .image-layer{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;

    /* --- PARALLAX CSS SANS JAVASCRIPT --- */
    background-attachment: fixed;
}

.page-banner .banner-inner{
    position: relative;
    display: block;
    text-align: center;
    z-index: 3; /* au-dessus du mask */
}

.page-banner .inner-container{
    position: relative;
    padding: 90px 0px;
    z-index: 3;
}

.page-banner h1{
    position:relative;
    font-size:48px;
    color:#ffffff;
    line-height: 1.2em;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    z-index: 3;
}

/* BREADCRUMB */
/*.page-banner .page-nav{
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
    padding-bottom: 15px;
    z-index: 3;
}*/

.page-banner .bread-crumb{
    position: relative;
    display: inline-block;
}

.page-banner .bread-crumb li{
    position: relative;
    float: left;
    font-size: 13px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    cursor: default;
    padding-right:  15px;
    margin-right: 15px;
}

.page-banner .bread-crumb li:before{
    position: absolute;
    right: -15px;
    width: 30px;
    text-align: center;
    font-size: 10px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 900;
  content:"\f105";              /* fa-chevron-right */
  font-family: "Font Awesome 6 Free";
}

.page-banner .bread-crumb li:last-child{
    padding-right: 0;
    margin-right: 0;
}

.page-banner .bread-crumb li:last-child:before{
    display: none;
}

.page-banner .bread-crumb li a{
    color:#ffffff;
    font-weight: 500;
    transition: all 300ms ease;
}

.page-banner .bread-crumb li a:hover{
    color:#d5ae82; 
}


/* ================================
   RESPONSIVE
   ================================ */

@media only screen and (max-width: 1139px){
    .page-banner h1{
        font-size: 40px;
    }

    .welcome-section .title-box h2,
    .team-section .title-box h2 {
        font-size: 32px;
    }

    .welcome-section .title-box h4,
    .team-section .title-box h4,
    .event-carousel-box .event-block h4{
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px){
    .page-banner h1{
        font-size: 36px;
    }
    .welcome-section{
        padding: 70px 0px;
    }
}

@media only screen and (max-width: 767px){
    .page-banner h1{
        font-size: 30px;
    }
    .page-banner .inner-container{
        padding-top: 100px;
    }
}

@media only screen and (max-width: 599px){
    .page-banner h1{
        font-size: 24px;
    }
}

/* ------------------------------

portfolio

------------------------------ */
/* ----- portfolio item ----- */
.widget-work-item {
  width: 100%;
  background-color: #28292c;
  position: relative;
  overflow: hidden; }
  .widget-work-item .widget-work-descr {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    background-color: #28292c;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
    .widget-work-item .widget-work-descr .widget-work-more {
      background-color: #D95A08;
      width: 35px;
      min-width: 35px;
      height: 35px;
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #28292c; }
  .widget-work-item .widget-work-cover-frame {
    display: block;
    position: relative;
    padding-bottom: 63%;
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
    .widget-work-item .widget-work-cover-frame img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center; }
    .widget-work-item .widget-work-cover-frame .widget-item-zoom {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
      width: 50px;
      height: 50px;
      position: absolute;
      top: 0;
      right: 0;
      background: #28292c;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: 0.4s ease-in-out 0.05s;
      transition: 0.4s ease-in-out 0.05s; }
      .widget-work-item .widget-work-cover-frame .widget-item-zoom i {
        text-align: center;
        width: 60px;
        font-size: 12px;
        color: white;
        line-height: 60px;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out; }
      .widget-work-item .widget-work-cover-frame .widget-item-zoom:hover {
        background-color: #28292c; }
        .widget-work-item .widget-work-cover-frame .widget-item-zoom:hover i {
          -webkit-transform: scale(1.1);
                  transform: scale(1.1); }
    .widget-work-item .widget-work-cover-frame .widget-work-category {
      background-color: #f7f8f8;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 5px 0 5px 10px;
      color: #28292c;
      position: absolute;
      top: 0;
      left: 0;
      font-size: 9px;
      display: inline-block;
      -webkit-transition: 0.4s ease-in-out;
      transition: 0.4s ease-in-out; }
      .widget-work-item .widget-work-cover-frame .widget-work-category span {
        margin-right: 10px; }
    .widget-work-item .widget-work-cover-frame:hover {
      -webkit-filter: brightness(110%);
              filter: brightness(110%); }
      .widget-work-item .widget-work-cover-frame:hover .widget-item-zoom {
        opacity: 1; }
  .widget-work-item:hover .widget-work-descr {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .widget-work-item:hover .widget-item-zoom {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .widget-work-item.widget-work-open .widget-work-descr {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: relative; }

/* ----- portfolio item (after 768px) ----- */
@media (max-width: 768px) {
  .widget-work-item .widget-work-descr {
    -webkit-transform: none;
            transform: none; } }
/* ----- portfolio grid sizes ----- */
.widget-masonry-grid-item-h-x-2 .widget-work-item .widget-work-cover-frame {
  padding-bottom: calc(126% + 20px); }

.widget-masonry-grid-item-50 .widget-work-item .widget-work-cover-frame {
  padding-bottom: calc(63% + 8px); }
.widget-masonry-grid-item-50.widget-masonry-grid-item-h-x-2 .widget-work-item .widget-work-cover-frame {
  padding-bottom: calc(126% + 36px); }

/* ----- masonry grid ----- */
.widget-masonry-grid {
  margin: -10px;
  min-height: 100vh !important; }

.widget-masonry-grid:after {
  content: '';
  display: block;
  clear: both; }

.widget-grid-sizer,
.widget-masonry-grid-item {
  width: 50%; }

.widget-3-col .widget-grid-sizer,
.widget-3-col .widget-masonry-grid-item {
  width: 33.333%; }

.widget-4-col .widget-grid-sizer,
.widget-4-col .widget-masonry-grid-item {
  width: 25%; }

.widget-masonry-grid-item {
  float: left;
  padding: 20px;
  overflow: hidden; }

.widget-masonry-grid-item-33 {
  width: 33%; }

.widget-masonry-grid-item-50 {
  width: 50%; }

.widget-masonry-grid-item-100 {
  width: 100%; }

/* ----- filter ----- */
.widget-filter-frame {
  padding: 20px; }


 #mainFilter::before{
    content: url(../img/coin_orange_title.png);
    position:absolute; 
    margin-left: -17px;
    margin-top: 3px;
  
  }
.widget-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
        margin: 50px 0 30px 0;}
  .widget-filter.widget-justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .widget-filter .widget-work-category {
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    display: block;
    letter-spacing: 1px;
    background-color: #EDE7E0;
    color: #444;
    height: 40px;
    margin-right: 10px;
    letter-spacing: 2px;
    line-height: 40px;
    padding: 2px 20px 0;
    margin-bottom: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }

    .widget-filter .widget-work-category:hover {
      background-color: #E1D8CC; }

    .widget-filter .widget-work-category.widget-filter-icon {
      padding-left: 20px; }
      .widget-filter .widget-work-category.widget-filter-icon i {
        text-align: center;
        line-height: 40px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #D95A08;
        margin-right: 0;
        height: 100%;
        width: 40px; }
    .widget-filter .widget-work-category.widget-current {
      background-color: #E1D8CC; }
      .widget-filter .widget-work-category.widget-current.widget-filter-icon i {
        color: #28292c; }

@media (max-width: 992px) {
  .widget-grid-sizer,
  .widget-masonry-grid-item {
    width: 50%; }

  .widget-masonry-grid-item-33 {
    width: 50%; }

  .widget-masonry-grid-item-50 {
    width: 50%; }

  .widget-masonry-grid-item-100 {
    width: 100%; }

  .widget-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .widget-filter .widget-work-category {
      margin-bottom: 10px; }
      .widget-filter .widget-work-category:last-child {
        margin-bottom: 0; } }
@media (max-width: 500px) {
  .widget-grid-sizer,
  .widget-masonry-grid-item {
    width: 100%; }

  .widget-masonry-grid-item-33 {
    width: 100%; }

  .widget-masonry-grid-item-50 {
    width: 100%; }

  .widget-masonry-grid-item-100 {
    width: 100%; } }

.limited-row {
    max-width: 1024px; /* ou 960px, 1024px, etc. selon ton besoin */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* google map  */
#map,
.page_map {
  min-height: 450px;
  display: flex;
  height: 100%;
  width: 100%;
}
.mapProperties #map{
  min-height: 650px;

}
#map img,
.page_map img {
  max-width: inherit;
}

#map p,
.page_map p {
  line-height: 1.3;
  margin-bottom: 0;
}

#map .map_marker_description,
.page_map .map_marker_description {
  padding: 10px 5px 5px;
}

#map .map_marker_icon,
.page_map .map_marker_icon {
  display: none;
}
.mapboxgl-popup {
  font-family: 'Open Sans', sans-serif;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  min-width: 300px !important;
  max-width: 600px !important;
}

.mapProperties .mapboxgl-popup-content {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  max-width: 00px !important;
  height: 300px;
  overflow-y: scroll;
  text
}
.mapProperties .mapboxgl-popup-content {
  text-align: left ;
}
.marker {
  background-image: url('../img/marker.webp');
  background-size: cover;
  width: 25px;
  height: 40px;
  border-radius: 0%;
  cursor: pointer;
}

.mapboxgl-popup-close-button {
  background-color: #0c5267 !important;
  color: #FFF;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}


.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}



/* =========================
   HERO vidéo / image plein écran
   ========================= */

/* Important pour que 100vh soit propre */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Section hero plein écran */
.hero {
  position: relative;
  overflow: hidden;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* aucun espace au-dessus / en dessous */
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  /* plein écran */
  min-height: 100vh;
  min-height: 100svh;
  background: #000;
}

/* Viewport dynamique encore plus fiable si dispo */
@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

/* Swiper occupe toute la zone hero */
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
}

.hero .swiper-slide {
  position: relative;
}

/* Fond image + fond vidéo + mask prennent 100% de la slide */
.hero .image-layer,
.hero .video-layer,
.hero .mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* IMAGE en fond */
.hero .image-layer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform-origin: center;
  will-change: transform;
}

/* Ken Burns sur les photos du HERO uniquement (slides marquées .has-image-only) */
.hero .swiper-slide.has-image-only .image-layer {
  transform-origin: center;
}

.hero .swiper-slide.has-image-only.swiper-slide-active .image-layer,
.hero .swiper-slide.has-image-only.swiper-slide-duplicate-active .image-layer {
  animation: kenburns 20s ease-out forwards;
}

.hero .swiper-slide.has-image-only:not(.swiper-slide-active):not(.swiper-slide-duplicate-active) .image-layer {
  animation: none;
}
/* Lissage fin d’anim + sortie plus douce */
.hero .swiper-slide.has-image-only .image-layer{
  transition: transform 1.2s ease-in-out, opacity .6s ease;
}

/* Ken Burns plus smooth (moins “coupé” en fin) */
.hero .swiper-slide.has-image-only.swiper-slide-active .image-layer,
.hero .swiper-slide.has-image-only.swiper-slide-duplicate-active .image-layer{
  animation: kenburns 20s cubic-bezier(.2,.8,.2,1) forwards;
}

/* Quand la slide devient “précédente” on adoucit la sortie */
.hero .swiper-slide.has-image-only.swiper-slide-prev .image-layer{
  opacity: .92;
  transform: scale(1.135); /* proche de la fin, évite le jump visuel */
}
/* Effet Ken Burns : zoom léger mais visible */
@keyframes kenburns {
  0%   { transform: scale(1.02); }
  78%  { transform: scale(1.12); }  /* montée principale */
  100% { transform: scale(1.14); }  /* petit “settle” en fin */
}

/* VIDÉO par-dessus l'image */
.hero .video-layer {
  z-index: 1;
  overflow: hidden;
  background: transparent;
}

/* IFRAME : plein écran type "background cover" + fade-in */
.hero .video-layer iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* centré, rogne ce qui dépasse */
  transform: translate(-50%, -50%);
  border: 0;
  display: block;
  background: #000;
  opacity: 0;                  /* caché au début, on laisse l'image derrière */
  transition: opacity .6s ease;

  /* plein écran */
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
}

/* MASK par-dessus image/vidéo */
/*.hero .mask {
  z-index: 2;
  background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.15));
}*/

/* CAPTION au-dessus de tout */
.hero .caption {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  text-align: center;
  margin-inline: auto;
}

.hero .caption h1 {
  color: #fff;
  margin: 0 0 .3em;
  line-height: 1.1;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 64px);
  text-shadow: 0 2px 16px rgba(0,0,0,.32);
}
.hero .caption h1,
.hero .caption h2,
.hero .caption h3,
.hero .caption h4 {
  color: #fff;
  font-weight: 500;
}
.hero .caption p {
  color: rgba(255,255,255,.95);
  font-size: clamp(16px, 2.2vw, 22px);
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
}

/* Bouton CTA */
.hero .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;                          /* bouton rectangulaire */
  border: 1px solid #E4C276;                 /* doré */
  background: transparent;
  color: #E4C276;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  transition: all 0.25s ease;
}

.hero .btn-cta:hover {
  background: #E4C276;
  color: #0A203E;
}

/* Animations d’apparition des éléments de la caption */
.hero .caption > * {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition:
    opacity .7s ease-out,
    transform .7s ease-out,
    filter .7s ease-out;
}

.hero .swiper-slide.swiper-slide-active .caption > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Délais pour effet de cascade */
.hero .swiper-slide.swiper-slide-active .caption h1 {
  transition-delay: .10s;
}

.hero .swiper-slide.swiper-slide-active .caption p {
  transition-delay: .30s;
}

.hero .swiper-slide.swiper-slide-active .caption .btn-cta {
  transition-delay: .55s;
}

/* Pagination */
.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: .6;
  background: #fff;
}

.hero .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Boutons prev / next */
.hero .swiper-button-prev,
.hero .swiper-button-next {
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .12s ease;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 32px;
  font-weight: 900;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.85);
  transform: translateY(-1px);
}

.hero .swiper-button-prev {
  left: 18px;
}

.hero .swiper-button-next {
  right: 18px;
}

/* Responsive pour les flèches */
@media (max-width: 576px) {
  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 52px;
    height: 52px;
  }

  .hero .swiper-button-prev::after,
  .hero .swiper-button-next::after {
    font-size: 26px;
  }
}

/* Bouton scroll bas */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  animation: pulse 1.6s ease-in-out infinite;
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}

.scroll-indicator i {
  font-size: 22px;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-1px);
  background: rgba(0,0,0,.55);
  border-color: #fff;
}

/* Petite anim pour le scroll-indicator */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
  70%  { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* PRELOADER vidéo dans le hero */
.hero .video-preloader {
  position: absolute;
  inset: 0;
  z-index: 2; /* au-dessus de la vidéo tant qu'elle est cachée */
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255,255,255,.12), rgba(0,0,0,.65));
  transition: opacity .35s ease;
}

.hero .video-preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Petit spinner circulaire */
.hero .video-preloader-spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.26);
  border-top-color: #ffffff;
  animation: hero-video-spinner 0.8s linear infinite;
}

@keyframes hero-video-spinner {
  to { transform: rotate(360deg); }
}
/* =========================
   Hauteur réduite sur tablette & mobile
   ========================= */

/* Tablette / petit laptop : ~80% de la hauteur */
@media (max-width: 991.98px) {
  .hero {
    max-height: 80vh;
  }
}

/* Smartphone : ~70% de la hauteur */
@media (max-width: 575.98px) {
  .hero {
    max-height: 70vh;
  }
}
.hero.hero-dynamic {
  height: 100vh; /* fallback correct */
  min-height: 100vh; /* pas svh, plus fiable */
}

/* Quand le JS applique la hauteur calculée, il écrase celui-ci */
.hero.hero-dynamic.js-active {
  height: auto;
  min-height: 0;
}

/* Lightweight widgets rendered inside the CMS layout builder. */
.cms-section {
  min-width: 0;
}

.cms-section--background-fixed {
  background-attachment: fixed !important;
}

@media (max-width: 991.98px), (hover: none) {
  .cms-section--background-fixed {
    background-attachment: scroll !important;
  }
}

.cms-layout-widget,
.cms-layout-widget-render,
.cms-widget {
  min-width: 0;
}

.cms-widget-text--inline {
  margin: 0;
  padding: 0;
}

.cms-widget-text--inline > :last-child,
.cms-widget-text__body > :last-child {
  margin-bottom: 0;
}

.cms-widget-divider--inline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cms-widget-divider--inline .widget {
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0;
  border-color: rgba(15, 23, 42, 0.16);
}

.cms-widget-image--inline {
  width: 100%;
}

.cms-widget-image--inline img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cms-widget-image--inline > :last-child {
  margin-bottom: 0;
}

.cms-element {
  max-width: 100%;
}

.cms-element > :last-child,
.cms-element-text > :last-child,
.cms-element-image-box > :last-child,
.cms-element-icon-box > :last-child,
.cms-element-team > :last-child,
.cms-element-form > :last-child,
.cms-element-document > :last-child,
.cms-element-advanced-heading > :last-child,
.cms-element-alert > :last-child {
  margin-bottom: 0;
}

.cms-element-heading {
  max-width: 100%;
}

.cms-layout-widget--element-heading[data-element-heading-color="custom"] .cms-element-heading {
  color: var(--cms-element-heading-main-color);
}

.cms-layout-widget--element-heading[data-element-heading-font-size="custom"] .cms-element-heading {
  font-size: var(--cms-element-font-size);
}

.cms-layout-widget--element-heading[data-element-heading-line-height="custom"] .cms-element-heading {
  line-height: var(--cms-element-line-height);
}

.cms-layout-widget--element-heading[data-element-font-weight] .cms-element-heading {
  font-weight: inherit;
}

.cms-layout-widget--element-heading[data-element-text-transform] .cms-element-heading {
  text-transform: inherit;
}

.cms-element-heading a {
  color: inherit;
  text-decoration: none;
}

.cms-element-heading a:hover,
.cms-element-heading a:focus {
  color: inherit;
  text-decoration: underline;
}

.cms-element-advanced-heading {
  position: relative;
  display: grid;
  min-height: 1.3em;
  align-items: center;
  overflow: hidden;
  padding: 0.25rem 0;
}

.cms-element-advanced-heading__background {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 0;
  color: var(--cms-element-heading-advanced-color);
  font-size: var(--cms-element-heading-advanced-font-size);
  font-weight: var(--cms-element-heading-advanced-font-weight);
  line-height: 0.9;
  opacity: var(--cms-element-heading-advanced-opacity);
  pointer-events: none;
  text-align: inherit;
  text-transform: uppercase;
  transform: translate(var(--cms-element-heading-advanced-x), calc(-50% + var(--cms-element-heading-advanced-y))) rotate(var(--cms-element-heading-advanced-rotate));
  transform-origin: center;
  white-space: nowrap;
}

.cms-element-advanced-heading__content {
  position: relative;
  z-index: 1;
}

.cms-element-advanced-heading__main {
  margin: 0;
  color: var(--cms-element-heading-main-color);
  font-size: var(--cms-element-font-size);
  font-weight: var(--cms-element-heading-main-font-weight);
  line-height: var(--cms-element-line-height);
}

.cms-element-advanced-heading__main a {
  color: inherit;
  text-decoration: none;
}

.cms-element-advanced-heading__main a:hover,
.cms-element-advanced-heading__main a:focus {
  color: var(--cms-element-accent);
}

.cms-element-advanced-heading__subtitle {
  margin-top: var(--cms-element-heading-subtitle-spacing);
  color: var(--cms-element-heading-subtitle-color);
  font-size: var(--cms-element-heading-subtitle-font-size);
  font-weight: var(--cms-element-heading-subtitle-font-weight);
  line-height: 1.35;
}

.cms-element-advanced-heading__subtitle > :last-child {
  margin-bottom: 0;
}

.cms-element-text {
  color: #344238;
  line-height: 1.65;
}

.cms-element-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.cms-element-media-placeholder,
.cms-element-map {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px dashed rgba(17, 93, 70, 0.24);
  border-radius: 14px;
  background: #f6fbf6;
  color: #108f74;
  font-weight: 700;
}

.cms-element-media-placeholder i,
.cms-element-map i {
  font-size: 1.6rem;
}

.cms-element-image figcaption {
  margin-top: 0.65rem;
  color: #6a766d;
  font-size: 0.95rem;
}

.cms-element-gallery__items {
  display: grid;
  grid-template-columns: repeat(var(--cms-element-gallery-columns-desktop), minmax(0, 1fr));
  gap: var(--cms-element-gallery-gap);
}

.cms-element-gallery__item {
  margin: 0;
}

.cms-element-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.cms-element-gallery__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cms-element-gallery__item figcaption {
  margin-top: 0.6rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.45;
}

.cms-element-gallery__item figcaption strong,
.cms-element-gallery__item figcaption span {
  display: block;
}

.cms-element-gallery__item figcaption span {
  margin-top: 4px;
  opacity: 0.78;
}

.cms-layout-widget--element[data-element-gallery-caption="none"] .cms-element-gallery__item figcaption {
  display: none;
}

.cms-layout-widget--element[data-element-gallery-layout="masonry"] .cms-element-gallery__items {
  display: block;
  column-count: var(--cms-element-gallery-columns-desktop);
  column-gap: var(--cms-element-gallery-gap);
}

.cms-layout-widget--element[data-element-gallery-layout="masonry"] .cms-element-gallery__item {
  display: inline-block;
  width: 100%;
  margin-bottom: var(--cms-element-gallery-gap);
  break-inside: avoid;
}

.cms-element-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.cms-element-gallery__grid span {
  min-height: 86px;
  border-radius: 10px;
  background: #edf7ee;
}

.cms-element-instagram {
  width: 100%;
  --cms-element-instagram-columns-current: var(--cms-element-instagram-columns-desktop, 3);
}

.cms-element-instagram__feed {
  display: grid;
  grid-template-columns: repeat(var(--cms-element-instagram-columns-current), minmax(0, 1fr));
  gap: var(--cms-element-instagram-gap, 16px);
}

.cms-element-instagram__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--cms-element-radius, 12px);
  background: #f3f5f7;
  color: inherit;
  text-decoration: none;
}

.cms-element-instagram__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.cms-element-instagram__item:hover img {
  transform: scale(1.04);
}

.cms-element-instagram__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 55%;
  overflow: hidden;
  padding: 0.75rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.35;
}

.cms-element-instagram--slider .cms-element-instagram__feed {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cms-element-instagram--slider .cms-element-instagram__feed::-webkit-scrollbar {
  display: none;
}

.cms-element-instagram--slider .cms-element-instagram__item {
  flex: 0 0 calc((100% - ((var(--cms-element-instagram-columns-current) - 1) * var(--cms-element-instagram-gap, 16px))) / var(--cms-element-instagram-columns-current));
  scroll-snap-align: start;
}

.cms-element-button-wrap {
  margin: 0;
}

.cms-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: var(--cms-element-button-padding-y, 12px) var(--cms-element-button-padding-x, 22px);
  border: 1px solid var(--cms-element-button-border-color, #ff8a18);
  border-radius: var(--cms-element-button-radius, 10px);
  background: var(--cms-element-button-bg, #ff8a18);
  color: var(--cms-element-button-color, #fff);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.cms-element-button__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--cms-element-button-icon-spacing, 8px);
}

.cms-element-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cms-element-button:hover,
.cms-element-button:focus {
  border-color: var(--cms-element-button-hover-border-color, var(--cms-element-button-border-color, #ff8a18));
  background: var(--cms-element-button-hover-bg, var(--cms-element-button-bg, #ff8a18));
  color: var(--cms-element-button-hover-color, var(--cms-element-button-color, #fff));
  text-decoration: none;
  filter: brightness(0.96);
}

.cms-element-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem;
  border: 1px solid rgba(17, 93, 70, 0.12);
  border-radius: var(--cms-element-radius, 14px);
  background: var(--cms-element-bg, #fff);
  box-shadow: 0 16px 38px rgba(18, 66, 58, 0.08);
}

.cms-layout-widget--element[data-element-cta-layout="stacked"] .cms-element-cta {
  flex-direction: column;
  align-items: flex-start;
}

.cms-layout-widget--element[data-element-cta-layout="inline"] .cms-element-cta {
  flex-direction: row;
}

.cms-layout-widget--element[data-element-cta-layout="inline"] .cms-element-cta__body {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.cms-element-cta__title {
  margin: 0;
  color: var(--cms-element-title-color, inherit);
  font-size: 1.8rem;
  line-height: 1.15;
}

.cms-element-cta__description {
  margin: 0.65rem 0 0;
  color: var(--cms-element-text-color, inherit);
  line-height: 1.55;
}

.cms-element-cta__action {
  margin: 0;
  flex: 0 0 auto;
}

.cms-element-icon,
.cms-element-icon-box,
.cms-element-image-box,
.cms-element-team,
.cms-element-counter,
.cms-element-testimonial,
.cms-element-form,
.cms-element-document,
.cms-element-alert {
  border: 1px solid rgba(17, 93, 70, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 66, 58, 0.08);
}

.cms-element-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: #49ad4c;
  font-size: 1.8rem;
}

.cms-element-icon-box,
.cms-element-image-box,
.cms-element-team,
.cms-element-counter,
.cms-element-testimonial,
.cms-element-form,
.cms-element-document {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.cms-element-icon-box i {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #f0fbef;
  color: #49ad4c;
  font-size: 1.35rem;
}

.cms-element-icon-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cms-element-icon-list li {
  position: relative;
  padding-left: 1.75rem;
}

.cms-element-icon-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #49ad4c;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}

.cms-element-icon-list__item {
  position: relative;
  padding-left: 0;
}

.cms-element-icon-list .cms-element-icon-list__item::before {
  display: none;
}

.cms-element-icon-list__link,
.cms-element-icon-list__item {
  display: flex;
  align-items: center;
  gap: var(--cms-element-list-text-indent);
  color: var(--cms-element-list-text-color);
  text-decoration: none;
}

.cms-element-icon-list__icon {
  display: inline-flex;
  flex: 0 0 var(--cms-element-icon-size);
  width: var(--cms-element-icon-size);
  align-items: center;
  justify-content: flex-start;
  color: var(--cms-element-list-icon-color);
  font-size: var(--cms-element-icon-size);
  line-height: 1;
}

.cms-element-icon-list__icon i {
  font-size: inherit;
  line-height: 1;
}

.cms-element-icon-list__text {
  min-width: 0;
  color: var(--cms-element-list-text-color);
}

.cms-element-icon-list__item:hover .cms-element-icon-list__icon {
  color: var(--cms-element-list-icon-hover-color);
}

.cms-element-icon-list__item:hover .cms-element-icon-list__text {
  color: var(--cms-element-list-text-hover-color);
}

.cms-element-spacer {
  min-height: 56px;
}

.cms-element-divider {
  display: block;
  height: 0;
  margin: var(--cms-element-divider-gap, 15px) 0;
  border: 0;
  border-top: var(--cms-element-divider-weight, 1px) solid var(--cms-element-divider-color, var(--cms-element-accent, #d7dee8));
  width: min(90px, 35%);
  background: transparent;
  opacity: 1;
}

.cms-element-stars {
  display: inline-flex;
  gap: 0.25rem;
  color: #ff8a18;
}

.cms-element-counter__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.cms-element-counter__icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cms-element-accent, currentColor) 12%, transparent);
  color: var(--cms-element-accent, var(--cms-element-color, currentColor));
  font-size: 1.35rem;
  line-height: 1;
}

.cms-element-counter__icon i {
  line-height: 1;
}

.cms-element-counter strong {
  display: block;
  color: var(--cms-element-accent, var(--cms-element-color, currentColor));
  font-size: var(--cms-element-counter-number-size, 4rem);
  line-height: 1;
}

.cms-element-counter__label {
  display: block;
  margin-top: 0.45rem;
  color: var(--cms-element-color, currentColor);
  font-weight: 700;
}

.cms-element-progress > span {
  display: block;
  margin-bottom: 0.45rem;
  color: #17202d;
  font-weight: 800;
}

.cms-element-progress > div {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: #edf2ee;
}

.cms-element-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #49ad4c;
}

.cms-element-testimonial {
  margin: 0;
  color: #fff;
  background: #49ad4c;
  text-align: center;
}

.cms-element-testimonial cite {
  display: block;
  margin-top: 1rem;
  color: #f8ff00;
  font-style: normal;
  font-weight: 800;
}

.cms-element-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}

.cms-element-tabs__tab,
.cms-element-tabs__nav span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: var(--cms-element-tabs-border-width) solid var(--cms-element-tabs-border-color);
  background: transparent;
  color: var(--cms-element-tabs-title-color);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.cms-element-tabs__tab.is-active,
.cms-element-tabs__tab[aria-selected="true"],
.cms-element-tabs__nav span:first-child {
  background: var(--cms-element-tabs-bg);
  color: var(--cms-element-tabs-active-color);
}

.cms-element-tabs__content {
  border: var(--cms-element-tabs-border-width) solid var(--cms-element-tabs-border-color);
  border-top: 0;
  background: var(--cms-element-tabs-bg);
}

.cms-element-tabs__panel {
  padding: 1rem;
  border: 1px solid rgba(17, 93, 70, 0.14);
  border-radius: 12px;
  background: #fff;
}

.cms-element-tabs__panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cms-element-tabs-content-color);
}

.cms-element-accordion {
  display: grid;
  gap: 0;
}

.cms-element-accordion__item {
  overflow: hidden;
  border: var(--cms-element-accordion-border-width) solid var(--cms-element-accordion-border-color);
  background: var(--cms-element-accordion-content-bg);
}

.cms-element-accordion__item + .cms-element-accordion__item {
  border-top: 0;
}

.cms-element-accordion__summary {
  display: flex;
  align-items: center;
  gap: var(--cms-element-accordion-icon-spacing);
  padding: var(--cms-element-accordion-title-padding);
  background: var(--cms-element-accordion-title-bg);
  color: var(--cms-element-accordion-title-color);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.cms-element-accordion__summary::-webkit-details-marker {
  display: none;
}

.cms-element-accordion__title {
  margin: 0;
  color: inherit;
  font: inherit;
}

.cms-element-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  color: var(--cms-element-accordion-icon-color);
}

.cms-element-accordion__icon-opened {
  display: none;
}

.cms-element-accordion__item[open] .cms-element-accordion__summary {
  color: var(--cms-element-accordion-active-color);
  border-bottom: var(--cms-element-accordion-border-width) solid var(--cms-element-accordion-border-color);
}

.cms-element-accordion__item[open] .cms-element-accordion__icon {
  color: var(--cms-element-accordion-icon-active-color);
}

.cms-element-accordion__item[open] .cms-element-accordion__icon-closed {
  display: none;
}

.cms-element-accordion__item[open] .cms-element-accordion__icon-opened {
  display: inline-block;
}

.cms-element-accordion__content {
  padding: var(--cms-element-accordion-content-padding);
  background: var(--cms-element-accordion-content-bg);
  color: var(--cms-element-accordion-content-color);
}

.cms-layout-widget--element[data-element-accordion-icon-align="right"] .cms-element-accordion__summary {
  justify-content: space-between;
}

.cms-layout-widget--element[data-element-accordion-icon-align="right"] .cms-element-accordion__icon {
  order: 2;
  margin-left: auto;
}

.cms-element-toggle {
  display: grid;
  gap: var(--cms-element-toggle-space-between);
}

.cms-element-toggle__item,
.cms-element-toggle details {
  overflow: hidden;
  border: var(--cms-element-toggle-border-width) solid var(--cms-element-toggle-border-color);
  background: var(--cms-element-toggle-content-bg);
}

.cms-element-toggle__item + .cms-element-toggle__item {
  border-top: var(--cms-element-toggle-border-width) solid var(--cms-element-toggle-border-color);
}

.cms-element-toggle__summary,
.cms-element-toggle summary {
  display: flex;
  align-items: center;
  gap: var(--cms-element-toggle-icon-spacing);
  padding: var(--cms-element-toggle-title-padding);
  background: var(--cms-element-toggle-title-bg);
  cursor: pointer;
  color: var(--cms-element-toggle-title-color);
  font-weight: 800;
  list-style: none;
}

.cms-element-toggle__summary::-webkit-details-marker,
.cms-element-toggle summary::-webkit-details-marker {
  display: none;
}

.cms-element-toggle__title {
  margin: 0;
  color: inherit;
  font: inherit;
}

.cms-element-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  color: var(--cms-element-toggle-icon-color);
}

.cms-element-toggle__icon-opened {
  display: none;
}

.cms-element-toggle__item[open] .cms-element-toggle__summary,
.cms-element-toggle details[open] summary {
  color: var(--cms-element-toggle-active-color);
  border-bottom: var(--cms-element-toggle-border-width) solid var(--cms-element-toggle-border-color);
}

.cms-element-toggle__item[open] .cms-element-toggle__icon {
  color: var(--cms-element-toggle-icon-active-color);
}

.cms-element-toggle__item[open] .cms-element-toggle__icon-closed {
  display: none;
}

.cms-element-toggle__item[open] .cms-element-toggle__icon-opened {
  display: inline-block;
}

.cms-element-toggle__content,
.cms-element-toggle details > :not(summary) {
  padding: var(--cms-element-toggle-content-padding);
  background: var(--cms-element-toggle-content-bg);
  color: var(--cms-element-toggle-content-color);
}

.cms-layout-widget--element[data-element-toggle-icon-align="right"] .cms-element-toggle__summary {
  justify-content: space-between;
}

.cms-layout-widget--element[data-element-toggle-icon-align="right"] .cms-element-toggle__icon {
  order: 2;
  margin-left: auto;
}

.cms-element-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cms-element-social-gap);
}

.cms-element-social a {
  display: inline-flex;
  width: var(--cms-element-social-size);
  height: var(--cms-element-social-size);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cms-element-social-bg);
  color: var(--cms-element-social-color);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cms-element-social a:hover,
.cms-element-social a:focus-visible {
  background: var(--cms-element-social-hover-bg);
  color: var(--cms-element-social-hover-color);
  transform: translateY(-1px);
}

.cms-element-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: var(--cms-element-alert-padding);
  border: 1px solid var(--cms-element-alert-border-color);
  border-left-width: var(--cms-element-alert-left-border-width);
  background: var(--cms-element-alert-bg);
  color: var(--cms-element-alert-description-color);
}

.cms-element-alert__icon {
  margin-top: 0.1rem;
  color: var(--cms-element-alert-title-color);
}

.cms-element-alert__body {
  min-width: 0;
}

.cms-element-alert__title {
  display: block;
  color: var(--cms-element-alert-title-color);
  font-weight: 800;
}

.cms-element-alert__description {
  color: var(--cms-element-alert-description-color);
}

.cms-element-alert__description > :last-child {
  margin-bottom: 0;
}

.cms-element-alert__dismiss {
  margin: -0.25rem -0.25rem 0 auto;
  border: 0;
  background: transparent;
  color: var(--cms-element-alert-title-color);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.75;
}

.cms-element-alert__dismiss:hover,
.cms-element-alert__dismiss:focus {
  opacity: 1;
}

.cms-element-alert i {
  margin-top: 0.2rem;
}

.cms-element-form {
  display: grid;
  gap: 0.85rem;
}

.cms-element-form .cms-element-media-placeholder {
  min-height: 110px;
}

.cms-element-document-list {
  display: grid;
  gap: 0.75rem;
}

.cms-element-document-list .cms-element-document {
  display: flex;
}

.cms-element-document {
  display: inline-flex;
  margin: 0;
}

.cms-element-document a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #17202d;
  font-weight: 800;
  text-decoration: none;
}

.cms-element-document a:hover,
.cms-element-document a:focus {
  color: #167e53;
}

.cms-element-anchor {
  display: block;
  height: 1px;
  scroll-margin-top: 120px;
}

.cms-layout-widget--element {
  --cms-element-accent: #49ad4c;
  --cms-element-bg: transparent;
  --cms-element-border-color: transparent;
  --cms-element-border-width: 0;
  --cms-element-button-bg: var(--cms-element-accent);
  --cms-element-button-border-color: var(--cms-element-button-bg);
  --cms-element-button-color: #fff;
  --cms-element-button-hover-bg: #17202d;
  --cms-element-button-hover-border-color: var(--cms-element-button-hover-bg);
  --cms-element-button-hover-color: #fff;
  --cms-element-button-icon-spacing: 8px;
  --cms-element-button-padding-x: 22px;
  --cms-element-button-padding-y: 12px;
  --cms-element-button-radius: 10px;
  --cms-element-color: inherit;
  --cms-element-divider-color: var(--cms-element-accent);
  --cms-element-divider-gap: 15px;
  --cms-element-divider-weight: 1px;
  --cms-element-divider-width: min(90px, 35%);
  --cms-element-font-size: inherit;
  --cms-element-gallery-columns-desktop: 3;
  --cms-element-gallery-columns-tablet: 2;
  --cms-element-gallery-columns-mobile: 1;
  --cms-element-gallery-gap: 16px;
  --cms-element-instagram-columns-desktop: 3;
  --cms-element-instagram-columns-tablet: 2;
  --cms-element-instagram-columns-mobile: 1;
  --cms-element-instagram-gap: 16px;
  --cms-element-heading-advanced-color: #f2f4f7;
  --cms-element-heading-advanced-font-size: 5rem;
  --cms-element-heading-advanced-font-weight: 900;
  --cms-element-heading-advanced-opacity: 0.7;
  --cms-element-heading-advanced-rotate: 0deg;
  --cms-element-heading-advanced-x: 0px;
  --cms-element-heading-advanced-y: 0px;
  --cms-element-heading-main-color: var(--cms-element-color);
  --cms-element-heading-main-font-weight: 800;
  --cms-element-heading-subtitle-color: var(--cms-element-color);
  --cms-element-heading-subtitle-font-size: 22px;
  --cms-element-heading-subtitle-font-weight: 400;
  --cms-element-heading-subtitle-spacing: 6px;
  --cms-element-margin-top: 0px;
  --cms-element-margin-right: 0px;
  --cms-element-margin-bottom: 0px;
  --cms-element-margin-left: 0px;
  --cms-element-padding-top: 0px;
  --cms-element-padding-right: 0px;
  --cms-element-padding-bottom: 0px;
  --cms-element-padding-left: 0px;
  --cms-element-icon-color: var(--cms-element-accent);
  --cms-element-icon-size: 24px;
  --cms-element-icon-box-description-color: inherit;
  --cms-element-icon-box-hover-color: var(--cms-element-icon-color);
  --cms-element-icon-box-hover-secondary-color: var(--cms-element-icon-box-secondary-color);
  --cms-element-icon-box-icon-padding: 0;
  --cms-element-icon-box-icon-spacing: 15px;
  --cms-element-icon-box-rotate: 0deg;
  --cms-element-icon-box-secondary-color: #fff;
  --cms-element-icon-box-title-color: inherit;
  --cms-element-icon-box-title-spacing: 8px;
  --cms-element-icon-box-transition: 300ms;
  --cms-element-social-bg: #f0fbef;
  --cms-element-social-color: #108f74;
  --cms-element-social-gap: 10px;
  --cms-element-social-hover-bg: #172033;
  --cms-element-social-hover-color: #fff;
  --cms-element-social-size: 42px;
  --cms-element-team-bio-color: inherit;
  --cms-element-team-image-size: 260px;
  --cms-element-team-name-color: inherit;
  --cms-element-team-role-color: var(--cms-element-accent);
  --cms-element-image-height: auto;
  --cms-element-image-box-description-color: inherit;
  --cms-element-image-box-hover-opacity: 1;
  --cms-element-image-box-image-spacing: 15px;
  --cms-element-image-box-image-width: 30%;
  --cms-element-image-box-opacity: 1;
  --cms-element-image-box-title-color: inherit;
  --cms-element-image-box-title-spacing: 8px;
  --cms-element-image-box-transition: 300ms;
  --cms-element-image-hover-opacity: 1;
  --cms-element-image-opacity: 1;
  --cms-element-image-radius: 0;
  --cms-element-image-width: 100%;
  --cms-element-line-height: inherit;
  --cms-element-list-icon-color: var(--cms-element-accent);
  --cms-element-list-icon-hover-color: var(--cms-element-list-icon-color);
  --cms-element-list-text-color: inherit;
  --cms-element-list-text-hover-color: var(--cms-element-list-text-color);
  --cms-element-list-spacing: 0.7rem;
  --cms-element-list-columns: 1;
  --cms-element-list-column-gap: 24px;
  --cms-element-list-divider-color: #ddd;
  --cms-element-list-divider-weight: 1px;
  --cms-element-list-divider-width: 100%;
  --cms-element-list-text-indent: 8px;
  --cms-element-map-height: 180px;
  --cms-element-map-filter: blur(0) brightness(100%) contrast(100%) saturate(100%) hue-rotate(0);
  --cms-element-map-hover-filter: blur(0) brightness(100%) contrast(100%) saturate(100%) hue-rotate(0);
  --cms-element-map-hover-transition: 0ms;
  --cms-element-map-marker-color: #49ad4c;
  --cms-element-object-position: center;
  --cms-element-progress-value: 70;
  --cms-element-radius: 0;
  --cms-element-spacer-height: 56px;
  --cms-element-accordion-active-color: var(--cms-element-accent);
  --cms-element-accordion-border-color: #ddd;
  --cms-element-accordion-border-width: 1px;
  --cms-element-accordion-content-bg: #fff;
  --cms-element-accordion-content-color: inherit;
  --cms-element-accordion-content-padding: 16px;
  --cms-element-accordion-icon-active-color: var(--cms-element-accordion-active-color);
  --cms-element-accordion-icon-color: var(--cms-element-accordion-title-color);
  --cms-element-accordion-icon-spacing: 10px;
  --cms-element-accordion-title-bg: #fff;
  --cms-element-accordion-title-color: #68c8ec;
  --cms-element-accordion-title-padding: 16px;
  --cms-element-toggle-active-color: var(--cms-element-accent);
  --cms-element-toggle-border-color: #ddd;
  --cms-element-toggle-border-width: 1px;
  --cms-element-toggle-content-bg: #fff;
  --cms-element-toggle-content-color: inherit;
  --cms-element-toggle-content-padding: 16px;
  --cms-element-toggle-icon-active-color: var(--cms-element-toggle-active-color);
  --cms-element-toggle-icon-color: var(--cms-element-toggle-title-color);
  --cms-element-toggle-icon-spacing: 10px;
  --cms-element-toggle-space-between: 0;
  --cms-element-toggle-title-bg: #fff;
  --cms-element-toggle-title-color: #68c8ec;
  --cms-element-toggle-title-padding: 16px;
  --cms-element-alert-bg: #d9edf7;
  --cms-element-alert-border-color: #68c8ec;
  --cms-element-alert-description-color: #2d6f8f;
  --cms-element-alert-left-border-width: 0;
  --cms-element-alert-padding: 16px;
  --cms-element-alert-title-color: #2d6f8f;
  --cms-element-tabs-active-color: var(--cms-element-accent);
  --cms-element-tabs-bg: #fff;
  --cms-element-tabs-border-color: #ddd;
  --cms-element-tabs-border-width: 1px;
  --cms-element-tabs-content-color: inherit;
  --cms-element-tabs-nav-width: 25%;
  --cms-element-tabs-title-color: #68c8ec;
  --cms-element-text-transform: none;
  max-width: var(--cms-element-max-width, 100%);
  margin: var(--cms-element-margin-top) var(--cms-element-margin-right) var(--cms-element-margin-bottom) var(--cms-element-margin-left);
  padding: var(--cms-element-padding-top) var(--cms-element-padding-right) var(--cms-element-padding-bottom) var(--cms-element-padding-left);
  border: var(--cms-element-border-width) solid var(--cms-element-border-color);
  color: var(--cms-element-color);
  background: var(--cms-element-bg);
  border-radius: var(--cms-element-radius);
  font-size: var(--cms-element-font-size);
  line-height: var(--cms-element-line-height);
  text-transform: var(--cms-element-text-transform);
}

.cms-layout-widget--element[data-element-align="center"] {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cms-layout-widget--element[data-element-align="left"] {
  margin-right: auto;
  text-align: left;
}

.cms-layout-widget--element[data-element-align="right"] {
  margin-left: auto;
  text-align: right;
}

.cms-layout-widget--element[data-element-align="justify"] {
  text-align: justify;
}

.cms-layout-widget--element[data-element-valign="top"] {
  align-self: flex-start;
  justify-self: stretch;
}

.cms-layout-widget--element[data-element-valign="middle"] {
  align-self: center;
  justify-self: stretch;
}

.cms-layout-widget--element[data-element-valign="bottom"] {
  align-self: flex-end;
  justify-self: stretch;
}

.cms-layout-widget--element[data-element-valign="stretch"] {
  align-self: stretch;
  justify-self: stretch;
  height: 100%;
}

.cms-layout-widget--element[data-element-valign="middle"],
.cms-layout-widget--element[data-element-valign="bottom"],
.cms-layout-widget--element[data-element-valign="stretch"] {
  display: flex;
  flex-direction: column;
}

.cms-layout-widget--element[data-element-valign="middle"] {
  justify-content: center;
}

.cms-layout-widget--element[data-element-valign="bottom"] {
  justify-content: flex-end;
}

.cms-layout-widget--element[data-element-valign="stretch"] {
  justify-content: stretch;
}

.cms-layout-widget--element[data-element-shadow="soft"],
.cms-layout-widget--element[data-element-shadow="medium"],
.cms-layout-widget--element[data-element-shadow="strong"] {
  padding: clamp(1rem, 2vw, 2rem);
}

.cms-layout-widget--element[data-element-shadow="soft"] {
  box-shadow: 0 16px 38px rgba(18, 66, 58, 0.08);
}

.cms-layout-widget--element[data-element-shadow="medium"] {
  box-shadow: 0 20px 50px rgba(18, 66, 58, 0.14);
}

.cms-layout-widget--element[data-element-shadow="strong"] {
  box-shadow: 0 28px 70px rgba(18, 66, 58, 0.2);
}

.cms-layout-widget--element-team_member {
  container-type: inline-size;
}

.cms-layout-widget--element[data-element-image-fit] img {
  width: 100%;
  object-fit: var(--cms-element-image-fit, cover);
  object-position: var(--cms-element-object-position);
}

.cms-layout-widget--element[data-element-image-fit="none"] img {
  width: auto;
  object-fit: initial;
}

.cms-layout-widget--element img,
.cms-layout-widget--element .cms-element-image img {
  border-radius: var(--cms-element-image-radius);
}

.cms-layout-widget--element .cms-element-image {
  margin: 0;
}

.cms-layout-widget--element .cms-element-image img {
  width: var(--cms-element-image-width);
  max-width: 100%;
  height: var(--cms-element-image-height);
  opacity: var(--cms-element-image-opacity);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.cms-layout-widget--element .cms-element-image:hover img {
  opacity: var(--cms-element-image-hover-opacity);
}

.cms-element-image__link {
  display: inline-block;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}

.cms-element-site-logo img {
  object-fit: contain;
}

.cms-element-site-logo__link {
  display: inline-block;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}

.cms-element-site-logo--empty {
  color: #64748b;
  font-size: .875rem;
}

.cms-layout-widget--element .cms-element-image-box {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cms-element-image-box__wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--cms-element-image-box-image-spacing);
  text-align: center;
}

.cms-element-image-box__image {
  flex: 0 0 var(--cms-element-image-box-image-width);
  width: var(--cms-element-image-box-image-width);
  margin: 0;
}

.cms-element-image-box__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: var(--cms-element-image-box-opacity);
  transition: opacity var(--cms-element-image-box-transition) ease, filter var(--cms-element-image-box-transition) ease, transform var(--cms-element-image-box-transition) ease;
}

.cms-element-image-box__image-link,
.cms-element-image-box__title a {
  color: inherit;
  text-decoration: none;
}

.cms-element-image-box__content {
  min-width: 0;
  flex: 1 1 auto;
}

.cms-element-image-box__title {
  margin: 0 0 var(--cms-element-image-box-title-spacing);
  color: var(--cms-element-image-box-title-color);
  font-weight: 800;
  line-height: 1.2;
}

.cms-element-image-box__description {
  margin: 0;
  color: var(--cms-element-image-box-description-color);
}

.cms-layout-widget--element[data-element-image-box-position="top"] .cms-element-image-box__wrapper {
  flex-direction: column;
  align-items: center;
}

.cms-layout-widget--element[data-element-image-box-position="top"] .cms-element-image-box__image {
  flex-basis: auto;
  width: var(--cms-element-image-box-image-width);
}

.cms-layout-widget--element[data-element-image-box-position="right"] .cms-element-image-box__wrapper {
  flex-direction: row-reverse;
}

.cms-layout-widget--element[data-element-image-box-align="left"] .cms-element-image-box__wrapper {
  text-align: left;
}

.cms-layout-widget--element[data-element-image-box-align="center"] .cms-element-image-box__wrapper {
  text-align: center;
}

.cms-layout-widget--element[data-element-image-box-align="right"] .cms-element-image-box__wrapper {
  text-align: right;
}

.cms-layout-widget--element[data-element-image-box-align="justify"] .cms-element-image-box__wrapper {
  text-align: justify;
}

.cms-layout-widget--element[data-element-image-box-vertical="middle"] .cms-element-image-box__wrapper {
  align-items: center;
}

.cms-layout-widget--element[data-element-image-box-vertical="bottom"] .cms-element-image-box__wrapper {
  align-items: flex-end;
}

.cms-layout-widget--element .cms-element-image-box:hover img {
  opacity: var(--cms-element-image-box-hover-opacity);
}

.cms-layout-widget--element[data-element-image-box-animation="grow"] .cms-element-image-box:hover img {
  transform: scale(1.04);
}

.cms-layout-widget--element[data-element-image-box-animation="shrink"] .cms-element-image-box:hover img {
  transform: scale(0.96);
}

.cms-layout-widget--element[data-element-image-box-animation="float"] .cms-element-image-box:hover img {
  transform: translateY(-6px);
}

.cms-layout-widget--element[data-element-image-box-animation="sink"] .cms-element-image-box:hover img {
  transform: translateY(6px);
}

.cms-layout-widget--element .cms-element-icon-box {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.cms-element-icon-box__wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--cms-element-icon-box-icon-spacing);
  text-align: center;
}

.cms-element-icon-box__icon {
  flex: 0 0 auto;
  line-height: 1;
}

.cms-layout-widget--element .cms-element-icon-box__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(var(--cms-element-icon-size) + (var(--cms-element-icon-box-icon-padding) * 2));
  min-height: calc(var(--cms-element-icon-size) + (var(--cms-element-icon-box-icon-padding) * 2));
  padding: var(--cms-element-icon-box-icon-padding);
  color: var(--cms-element-icon-color);
  font-size: var(--cms-element-icon-size);
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--cms-element-icon-box-transition) ease, border-color var(--cms-element-icon-box-transition) ease, color var(--cms-element-icon-box-transition) ease, transform var(--cms-element-icon-box-transition) ease;
}

.cms-layout-widget--element .cms-element-icon-box__icon-link i {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  transform: rotate(var(--cms-element-icon-box-rotate));
  transition: transform var(--cms-element-icon-box-transition) ease;
}

.cms-element-icon-box__content {
  min-width: 0;
  flex: 1 1 auto;
}

.cms-element-icon-box__title {
  margin: 0 0 var(--cms-element-icon-box-title-spacing);
  color: var(--cms-element-icon-box-title-color);
  font-weight: 800;
  line-height: 1.2;
}

.cms-element-icon-box__title a {
  color: inherit;
  text-decoration: none;
}

.cms-element-icon-box__description {
  margin: 0;
  color: var(--cms-element-icon-box-description-color);
}

.cms-layout-widget--element[data-element-icon-box-position="top"] .cms-element-icon-box__wrapper {
  flex-direction: column;
  align-items: center;
}

.cms-layout-widget--element[data-element-icon-box-position="right"] .cms-element-icon-box__wrapper {
  flex-direction: row-reverse;
}

.cms-layout-widget--element[data-element-icon-box-align="left"] .cms-element-icon-box__wrapper {
  text-align: left;
}

.cms-layout-widget--element[data-element-icon-box-align="center"] .cms-element-icon-box__wrapper {
  text-align: center;
}

.cms-layout-widget--element[data-element-icon-box-align="right"] .cms-element-icon-box__wrapper {
  text-align: right;
}

.cms-layout-widget--element[data-element-icon-box-align="justify"] .cms-element-icon-box__wrapper {
  text-align: justify;
}

.cms-layout-widget--element[data-element-icon-box-vertical="middle"] .cms-element-icon-box__wrapper {
  align-items: center;
}

.cms-layout-widget--element[data-element-icon-box-vertical="bottom"] .cms-element-icon-box__wrapper {
  align-items: flex-end;
}

.cms-layout-widget--element[data-element-icon-box-view="stacked"] .cms-element-icon-box__icon-link {
  background: var(--cms-element-icon-color);
  color: var(--cms-element-icon-box-secondary-color);
}

.cms-layout-widget--element[data-element-icon-box-view="framed"] .cms-element-icon-box__icon-link {
  border: 2px solid var(--cms-element-icon-color);
  background: var(--cms-element-icon-box-secondary-color);
  color: var(--cms-element-icon-color);
}

.cms-layout-widget--element[data-element-icon-box-shape="circle"] .cms-element-icon-box__icon-link {
  border-radius: 999px;
}

.cms-layout-widget--element[data-element-icon-box-shape="square"] .cms-element-icon-box__icon-link {
  border-radius: 0;
}

.cms-layout-widget--element .cms-element-icon-box:hover .cms-element-icon-box__icon-link {
  color: var(--cms-element-icon-box-hover-color);
}

.cms-layout-widget--element[data-element-icon-box-view="stacked"] .cms-element-icon-box:hover .cms-element-icon-box__icon-link {
  background: var(--cms-element-icon-box-hover-color);
  color: var(--cms-element-icon-box-hover-secondary-color);
}

.cms-layout-widget--element[data-element-icon-box-view="framed"] .cms-element-icon-box:hover .cms-element-icon-box__icon-link {
  border-color: var(--cms-element-icon-box-hover-color);
  background: var(--cms-element-icon-box-hover-secondary-color);
  color: var(--cms-element-icon-box-hover-color);
}

.cms-layout-widget--element[data-element-icon-box-animation="grow"] .cms-element-icon-box:hover .cms-element-icon-box__icon-link {
  transform: scale(1.08);
}

.cms-layout-widget--element[data-element-icon-box-animation="shrink"] .cms-element-icon-box:hover .cms-element-icon-box__icon-link {
  transform: scale(0.92);
}

.cms-layout-widget--element[data-element-icon-box-animation="float"] .cms-element-icon-box:hover .cms-element-icon-box__icon-link {
  transform: translateY(-6px);
}

.cms-layout-widget--element[data-element-icon-box-animation="sink"] .cms-element-icon-box:hover .cms-element-icon-box__icon-link {
  transform: translateY(6px);
}

.cms-section-contact-cards {
  --cms-section-contact-cards-background: rgba(16, 185, 129, 0.08);
  --cms-section-contact-cards-border: rgba(15, 118, 110, 0.16);
  --cms-section-contact-cards-padding-y: clamp(1.75rem, 4vw, 3rem);
  --cms-section-contact-cards-padding-x: clamp(1.25rem, 3vw, 2.5rem);
  overflow: hidden;
  border-radius: 8px;
  background: var(--cms-section-contact-cards-background);
}

.cms-section-contact-cards > [class*="col"] {
  display: flex;
  min-width: 0;
  padding: var(--cms-section-contact-cards-padding-y) var(--cms-section-contact-cards-padding-x);
  border-right: 1px solid var(--cms-section-contact-cards-border);
}

.cms-section-contact-cards > [class*="col"]:last-child {
  border-right: 0;
}

.cms-section-contact-cards .cms-layout-widget--element {
  width: 100%;
}

.cms-section-contact-cards .cms-element-icon-box,
.cms-section-contact-cards .cms-element-icon-box__wrapper {
  width: 100%;
}

.cms-section-contact-cards .cms-element-icon-box__wrapper {
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.cms-section-contact-cards .cms-element-icon-box__title {
  margin-bottom: 0.75rem;
}

@media (max-width: 767.98px) {
  .cms-section-contact-cards > [class*="col"] {
    border-right: 0;
    border-bottom: 1px solid var(--cms-section-contact-cards-border);
  }

  .cms-section-contact-cards > [class*="col"]:last-child {
    border-bottom: 0;
  }
}

.cms-layout-widget--element .cms-element-team {
  box-sizing: border-box;
  display: grid;
  width: 100%;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(0, min(var(--cms-element-team-image-size), 34%)) minmax(0, 1fr);
  align-items: center;
  justify-items: stretch;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  text-align: left;
}

.cms-layout-widget--element .cms-element-team__photo {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}

.cms-layout-widget--element .cms-element-team__photo-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.cms-layout-widget--element .cms-element-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cms-layout-widget--element .cms-element-team__content {
  min-width: 0;
  max-width: min(760px, 100%);
  overflow-wrap: anywhere;
  word-break: normal;
}

.cms-layout-widget--element .cms-element-team__name {
  margin: 0;
  color: var(--cms-element-team-name-color);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.cms-layout-widget--element .cms-element-team__name a {
  color: inherit;
  text-decoration: none;
}

.cms-layout-widget--element .cms-element-team__role {
  margin: 0.65rem 0 0;
  color: var(--cms-element-team-role-color);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.cms-layout-widget--element .cms-element-team__bio {
  margin: 1rem 0 0;
  color: var(--cms-element-team-bio-color);
  font-size: 1.02rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.cms-layout-widget--element .cms-element-team .cms-element-media-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px dashed rgba(23, 32, 45, 0.25);
  background: rgba(23, 32, 45, 0.05);
  color: rgba(23, 32, 45, 0.55);
  font-weight: 700;
}

.cms-layout-widget--element .cms-element-team .cms-element-media-placeholder i {
  font-size: 2rem;
}

.cms-layout-widget--element[data-element-team-align="left"] .cms-element-team {
  justify-items: stretch;
  text-align: left;
}

.cms-layout-widget--element[data-element-team-align="center"] .cms-element-team {
  justify-items: stretch;
  text-align: center;
}

.cms-layout-widget--element[data-element-team-align="right"] .cms-element-team {
  justify-items: stretch;
  text-align: right;
}

.cms-layout-widget--element[data-element-team-layout="vertical"] .cms-element-team {
  grid-template-columns: 1fr;
  justify-items: stretch;
  text-align: center;
}

.cms-layout-widget--element[data-element-team-layout="vertical"] .cms-element-team__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 420px;
}

.cms-layout-widget--element[data-element-team-layout="vertical"] .cms-element-team__content {
  width: 100%;
  max-width: 100%;
}

.cms-layout-widget--element[data-element-team-layout="vertical"][data-element-team-align="left"] .cms-element-team {
  justify-items: stretch;
  text-align: left;
}

.cms-layout-widget--element[data-element-team-layout="vertical"][data-element-team-align="right"] .cms-element-team {
  justify-items: stretch;
  text-align: right;
}

.cms-layout-widget--element[data-element-team-layout="horizontal"] .cms-element-team {
  grid-template-columns: minmax(0, min(var(--cms-element-team-image-size), 34%)) minmax(0, 1fr);
  align-items: center;
  justify-items: stretch;
  text-align: left;
}

.cms-layout-widget--element[data-element-team-shape="circle"] .cms-element-team__photo {
  border-radius: 999px;
  aspect-ratio: 1 / 1;
}

.cms-layout-widget--element[data-element-team-shape="square"] .cms-element-team__photo {
  border-radius: 0;
}

.cms-layout-widget--element[data-element-team-shape="rounded"] .cms-element-team__photo {
  border-radius: 18px;
}

@media (max-width: 767.98px) {
  .cms-layout-widget--element .cms-element-team,
  .cms-layout-widget--element[data-element-team-layout="horizontal"] .cms-element-team {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cms-layout-widget--element .cms-element-team__photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .cms-layout-widget--element .cms-element-team__content {
    max-width: 100%;
  }
}

@container (max-width: 620px) {
  .cms-layout-widget--element[data-element-team-layout="horizontal"] .cms-element-team {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cms-layout-widget--element[data-element-team-layout="horizontal"] .cms-element-team__photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .cms-layout-widget--element[data-element-team-layout="horizontal"] .cms-element-team__content {
    max-width: 100%;
  }
}

.cms-layout-widget--element[data-element-ratio="1x1"] img {
  aspect-ratio: 1 / 1;
}

.cms-layout-widget--element[data-element-ratio="4x3"] img {
  aspect-ratio: 4 / 3;
}

.cms-layout-widget--element[data-element-ratio="16x9"] img {
  aspect-ratio: 16 / 9;
}

.cms-layout-widget--element[data-element-ratio="21x9"] img {
  aspect-ratio: 21 / 9;
}

.cms-layout-widget--element .cms-element-button {
  border-color: var(--cms-element-button-border-color);
  border-radius: var(--cms-element-button-radius);
  background: var(--cms-element-button-bg);
  color: var(--cms-element-button-color);
}

.cms-layout-widget--element[data-element-button-type="primary"] {
  --cms-element-button-bg: var(--cms-element-accent);
  --cms-element-button-border-color: var(--cms-element-button-bg);
  --cms-element-button-hover-bg: #17202d;
  --cms-element-button-hover-border-color: var(--cms-element-button-hover-bg);
}

.cms-layout-widget--element[data-element-button-type="secondary"] {
  --cms-element-button-bg: #17202d;
  --cms-element-button-border-color: #17202d;
  --cms-element-button-hover-bg: #49ad4c;
  --cms-element-button-hover-border-color: #49ad4c;
}

.cms-layout-widget--element[data-element-button-type="info"] {
  --cms-element-button-bg: #2374d9;
  --cms-element-button-border-color: #2374d9;
  --cms-element-button-hover-bg: #1756a6;
  --cms-element-button-hover-border-color: #1756a6;
}

.cms-layout-widget--element[data-element-button-type="success"] {
  --cms-element-button-bg: #2f9e44;
  --cms-element-button-border-color: #2f9e44;
  --cms-element-button-hover-bg: #247a35;
  --cms-element-button-hover-border-color: #247a35;
}

.cms-layout-widget--element[data-element-button-type="warning"] {
  --cms-element-button-bg: #f59f00;
  --cms-element-button-border-color: #f59f00;
  --cms-element-button-hover-bg: #d98200;
  --cms-element-button-hover-border-color: #d98200;
}

.cms-layout-widget--element[data-element-button-type="danger"] {
  --cms-element-button-bg: #e03131;
  --cms-element-button-border-color: #e03131;
  --cms-element-button-hover-bg: #b52a2a;
  --cms-element-button-hover-border-color: #b52a2a;
}

.cms-layout-widget--element[data-element-button-style="secondary"] .cms-element-button {
  --cms-element-button-bg: #17202d;
  --cms-element-button-border-color: #17202d;
  --cms-element-button-hover-bg: var(--cms-element-accent);
  --cms-element-button-hover-border-color: var(--cms-element-accent);
}

.cms-layout-widget--element[data-element-button-style="outline"] .cms-element-button {
  border-width: 2px;
  background: transparent;
  color: var(--cms-element-button-bg);
}

.cms-layout-widget--element[data-element-button-style="ghost"] .cms-element-button {
  border-color: transparent;
  background: transparent;
  color: var(--cms-element-button-bg);
  box-shadow: none;
}

.cms-layout-widget--element[data-element-button-style="outline"] .cms-element-button:hover,
.cms-layout-widget--element[data-element-button-style="outline"] .cms-element-button:focus {
  border-color: var(--cms-element-button-hover-border-color);
  background: var(--cms-element-button-hover-bg);
  color: var(--cms-element-button-hover-color);
}

.cms-layout-widget--element[data-element-button-style="ghost"] .cms-element-button:hover,
.cms-layout-widget--element[data-element-button-style="ghost"] .cms-element-button:focus {
  border-color: transparent;
  background: transparent;
  color: var(--cms-element-button-hover-bg);
}

.cms-layout-widget--element[data-element-button-size="xs"] {
  --cms-element-button-padding-x: 14px;
  --cms-element-button-padding-y: 8px;
}

.cms-layout-widget--element[data-element-button-size="xs"] .cms-element-button {
  min-height: 32px;
  font-size: 0.82rem;
}

.cms-layout-widget--element[data-element-button-size="sm"] {
  --cms-element-button-padding-x: 18px;
  --cms-element-button-padding-y: 10px;
}

.cms-layout-widget--element[data-element-button-size="sm"] .cms-element-button {
  min-height: 38px;
  font-size: 0.9rem;
}

.cms-layout-widget--element[data-element-button-size="md"] .cms-element-button {
  min-height: 46px;
  font-size: 1rem;
}

.cms-layout-widget--element[data-element-button-size="lg"] {
  --cms-element-button-padding-x: 28px;
  --cms-element-button-padding-y: 16px;
}

.cms-layout-widget--element[data-element-button-size="lg"] .cms-element-button {
  min-height: 54px;
  font-size: 1.05rem;
}

.cms-layout-widget--element[data-element-button-size="xl"] {
  --cms-element-button-padding-x: 34px;
  --cms-element-button-padding-y: 18px;
}

.cms-layout-widget--element[data-element-button-size="xl"] .cms-element-button {
  min-height: 62px;
  font-size: 1.12rem;
}

.cms-layout-widget--element .cms-element-icon,
.cms-layout-widget--element .cms-element-icon-box i {
  color: var(--cms-element-icon-color);
}

.cms-layout-widget--element .cms-element-icon {
  font-size: var(--cms-element-icon-size);
}

.cms-layout-widget--element .cms-element-icon-box i {
  background: color-mix(in srgb, var(--cms-element-accent) 12%, #fff);
}

.cms-layout-widget--element .cms-element-icon-box .cms-element-icon-box__icon-link i {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

.cms-layout-widget--element .cms-element-icon-list li::before {
  color: var(--cms-element-list-icon-color);
}

.cms-layout-widget--element .cms-element-icon-list {
  gap: var(--cms-element-list-spacing);
  column-gap: var(--cms-element-list-column-gap);
  grid-template-columns: repeat(var(--cms-element-list-columns), minmax(0, 1fr));
}

.cms-layout-widget--element[data-element-list-layout="inline"] .cms-element-icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cms-element-list-spacing) var(--cms-element-list-column-gap);
}

.cms-layout-widget--element[data-element-list-align="center"] .cms-element-icon-list {
  justify-content: center;
  text-align: center;
}

.cms-layout-widget--element[data-element-list-align="center"] .cms-element-icon-list__item,
.cms-layout-widget--element[data-element-list-align="center"] .cms-element-icon-list__link {
  justify-content: center;
}

.cms-layout-widget--element[data-element-list-align="right"] .cms-element-icon-list {
  justify-content: flex-end;
  text-align: right;
}

.cms-layout-widget--element[data-element-list-align="right"] .cms-element-icon-list__item,
.cms-layout-widget--element[data-element-list-align="right"] .cms-element-icon-list__link {
  justify-content: flex-end;
}

.cms-layout-widget--element[data-element-list-icon-align="center"] .cms-element-icon-list__icon {
  justify-content: center;
}

.cms-layout-widget--element[data-element-list-icon-align="right"] .cms-element-icon-list__icon {
  justify-content: flex-end;
}

.cms-layout-widget--element[data-element-list-divider="1"] .cms-element-icon-list__item:not(:last-child) {
  padding-bottom: var(--cms-element-list-spacing);
}

.cms-layout-widget--element[data-element-list-divider="1"] .cms-element-icon-list__item:not(:last-child)::after {
  position: absolute;
  right: 0;
  bottom: calc(var(--cms-element-list-spacing) / 2);
  left: 0;
  width: var(--cms-element-list-divider-width);
  border-top: var(--cms-element-list-divider-weight) solid var(--cms-element-list-divider-color);
  content: "";
}

.cms-layout-widget--element[data-element-list-layout="inline"][data-element-list-divider="1"] .cms-element-icon-list__item {
  padding-right: var(--cms-element-list-column-gap);
  padding-bottom: 0;
}

.cms-layout-widget--element[data-element-list-layout="inline"][data-element-list-divider="1"] .cms-element-icon-list__item:not(:last-child)::after {
  top: 10%;
  right: calc(var(--cms-element-list-column-gap) / 2);
  bottom: 10%;
  left: auto;
  width: 0;
  border-top: 0;
  border-left: var(--cms-element-list-divider-weight) solid var(--cms-element-list-divider-color);
}

.cms-layout-widget--element[data-element-list-divider-style="double"] .cms-element-icon-list__item:not(:last-child)::after {
  border-top-style: double;
  border-left-style: double;
}

.cms-layout-widget--element[data-element-list-divider-style="dotted"] .cms-element-icon-list__item:not(:last-child)::after {
  border-top-style: dotted;
  border-left-style: dotted;
}

.cms-layout-widget--element[data-element-list-divider-style="dashed"] .cms-element-icon-list__item:not(:last-child)::after {
  border-top-style: dashed;
  border-left-style: dashed;
}

.cms-layout-widget--element[data-element-font-weight="normal"] {
  font-weight: 400;
}

.cms-layout-widget--element[data-element-font-weight="medium"] {
  font-weight: 500;
}

.cms-layout-widget--element[data-element-font-weight="semibold"] {
  font-weight: 700;
}

.cms-layout-widget--element[data-element-font-weight="bold"] {
  font-weight: 800;
}

.cms-layout-widget--element[data-element-font-weight="extrabold"] {
  font-weight: 900;
}

.cms-layout-widget--element[data-element-advanced-heading-origin="top-left"] .cms-element-advanced-heading__background {
  transform-origin: left top;
}

.cms-layout-widget--element[data-element-advanced-heading-origin="top-center"] .cms-element-advanced-heading__background {
  transform-origin: center top;
}

.cms-layout-widget--element[data-element-advanced-heading-origin="top-right"] .cms-element-advanced-heading__background {
  transform-origin: right top;
}

.cms-layout-widget--element[data-element-advanced-heading-origin="center-left"] .cms-element-advanced-heading__background {
  transform-origin: left center;
}

.cms-layout-widget--element[data-element-advanced-heading-origin="center-right"] .cms-element-advanced-heading__background {
  transform-origin: right center;
}

.cms-layout-widget--element[data-element-advanced-heading-origin="bottom-left"] .cms-element-advanced-heading__background {
  transform-origin: left bottom;
}

.cms-layout-widget--element[data-element-advanced-heading-origin="bottom-center"] .cms-element-advanced-heading__background {
  transform-origin: center bottom;
}

.cms-layout-widget--element[data-element-advanced-heading-origin="bottom-right"] .cms-element-advanced-heading__background {
  transform-origin: right bottom;
}

.cms-layout-widget--element[data-element-advanced-heading-hide="desktop"] .cms-element-advanced-heading__background {
  display: none;
}

.cms-layout-widget--element[data-element-list-icon="arrow"] .cms-element-icon-list li::before {
  content: "\f061";
}

.cms-layout-widget--element[data-element-list-icon="dot"] .cms-element-icon-list li::before {
  top: 0.62em;
  width: 0.45em;
  height: 0.45em;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.cms-layout-widget--element[data-element-list-icon="leaf"] .cms-element-icon-list li::before {
  content: "\f06c";
}

.cms-layout-widget--element[data-element-list-icon="star"] .cms-element-icon-list li::before {
  content: "\f005";
}

.cms-layout-widget--element .cms-element-progress i {
  background: var(--cms-element-accent);
}

.cms-layout-widget--element .cms-element-divider {
  width: var(--cms-element-divider-width);
  border-top-color: var(--cms-element-divider-color, var(--cms-element-accent, #d7dee8));
  border-top-style: solid;
  border-top-width: var(--cms-element-divider-weight);
  margin-top: var(--cms-element-divider-gap);
  margin-bottom: var(--cms-element-divider-gap);
}

.cms-layout-widget--element[data-element-divider-align="left"] .cms-element-divider {
  margin-right: auto;
  margin-left: 0;
}

.cms-layout-widget--element[data-element-divider-align="center"] .cms-element-divider {
  margin-right: auto;
  margin-left: auto;
}

.cms-layout-widget--element[data-element-divider-align="right"] .cms-element-divider {
  margin-right: 0;
  margin-left: auto;
}

.cms-layout-widget--element[data-element-divider-style="double"] .cms-element-divider {
  border-top-style: double;
}

.cms-layout-widget--element[data-element-divider-style="dashed"] .cms-element-divider {
  border-top-style: dashed;
}

.cms-layout-widget--element[data-element-divider-style="dotted"] .cms-element-divider {
  border-top-style: dotted;
}

.cms-layout-widget--element .cms-element-spacer {
  min-height: var(--cms-element-spacer-height);
}

.cms-element-video__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #111827;
  border-radius: var(--cms-element-radius);
}

.cms-element-video__media,
.cms-element-video__frame iframe,
.cms-element-video__frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cms-element-video__download {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--cms-element-accent);
  font-weight: 800;
  text-decoration: none;
}

.cms-layout-widget--element[data-element-video-ratio="1x1"] .cms-element-media-placeholder,
.cms-layout-widget--element[data-element-video-ratio="1x1"] .cms-element-video__frame {
  aspect-ratio: 1 / 1;
}

.cms-layout-widget--element[data-element-video-ratio="3x2"] .cms-element-media-placeholder,
.cms-layout-widget--element[data-element-video-ratio="3x2"] .cms-element-video__frame {
  aspect-ratio: 3 / 2;
}

.cms-layout-widget--element[data-element-video-ratio="4x3"] .cms-element-media-placeholder,
.cms-layout-widget--element[data-element-video-ratio="4x3"] .cms-element-video__frame {
  aspect-ratio: 4 / 3;
}

.cms-layout-widget--element[data-element-video-ratio="16x9"] .cms-element-media-placeholder,
.cms-layout-widget--element[data-element-video-ratio="16x9"] .cms-element-video__frame {
  aspect-ratio: 16 / 9;
}

.cms-layout-widget--element[data-element-video-ratio="21x9"] .cms-element-media-placeholder,
.cms-layout-widget--element[data-element-video-ratio="21x9"] .cms-element-video__frame {
  aspect-ratio: 21 / 9;
}

.cms-layout-widget--element[data-element-video-ratio="9x16"] .cms-element-media-placeholder,
.cms-layout-widget--element[data-element-video-ratio="9x16"] .cms-element-video__frame {
  aspect-ratio: 9 / 16;
}

.cms-layout-widget--element .cms-element-iframe {
  width: var(--cms-element-iframe-width, 100%);
  max-width: 100%;
  overflow: hidden;
  background: var(--cms-element-background);
  border-radius: var(--cms-element-radius);
}

.cms-layout-widget--element .cms-element-iframe__frame {
  display: block;
  width: 100%;
  height: var(--cms-element-iframe-height, 360px);
  border: 0;
}

.cms-layout-widget--element .cms-element-iframe:not([data-element-ratio="custom"]) .cms-element-iframe__frame {
  height: 100%;
}

.cms-layout-widget--element .cms-element-iframe[data-element-ratio="1x1"] {
  aspect-ratio: 1 / 1;
}

.cms-layout-widget--element .cms-element-iframe[data-element-ratio="4x3"] {
  aspect-ratio: 4 / 3;
}

.cms-layout-widget--element .cms-element-iframe[data-element-ratio="16x9"] {
  aspect-ratio: 16 / 9;
}

.cms-layout-widget--element .cms-element-iframe[data-element-ratio="21x9"] {
  aspect-ratio: 21 / 9;
}

.cms-layout-widget--element .cms-element-iframe--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  color: var(--cms-element-text);
  border: 1px dashed rgba(148, 163, 184, 0.65);
}

.cms-layout-widget--element .cms-element-progress i {
  width: calc(var(--cms-element-progress-value, 70) * 1%);
}

.cms-layout-widget--element .cms-element-stars {
  color: var(--cms-element-accent);
}

.cms-layout-widget--element .cms-element-map {
  height: var(--cms-element-map-height);
  min-height: var(--cms-element-map-height);
  border-radius: var(--cms-element-radius);
}

.cms-layout-widget--element .cms-element-map--data {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: var(--cms-element-border-width) solid var(--cms-element-border-color);
  background: #f7fbf5;
}

.cms-layout-widget--element .cms-element-map__canvas,
.cms-layout-widget--element .cms-element-map__iframe {
  width: 100%;
  height: var(--cms-element-map-height);
  min-height: var(--cms-element-map-height);
  background:
    linear-gradient(135deg, rgba(73, 173, 76, 0.08), rgba(255, 139, 24, 0.08)),
    #f7fbf5;
  filter: var(--cms-element-map-filter);
  transition: filter var(--cms-element-map-hover-transition) ease;
}

.cms-layout-widget--element .cms-element-map:hover .cms-element-map__canvas,
.cms-layout-widget--element .cms-element-map:hover .cms-element-map__iframe {
  filter: var(--cms-element-map-hover-filter);
}

.cms-layout-widget--element .cms-element-map__iframe {
  display: block;
  height: var(--cms-element-map-height);
  border: 0;
}

.cms-layout-widget--element .cms-element-map__markers {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem;
  list-style: none;
}

.cms-layout-widget--element .cms-element-map__marker {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--cms-element-color);
  font-size: 0.96rem;
  line-height: 1.45;
}

.cms-layout-widget--element .cms-element-map__marker-dot {
  flex: 0 0 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.34rem;
  border-radius: 999px;
  background: var(--cms-element-map-marker-color);
  box-shadow: 0 0 0 0.32rem rgba(73, 173, 76, 0.14);
}

.cms-layout-widget--element .cms-element-map__marker-content {
  display: grid;
  gap: 0.15rem;
}

.cms-layout-widget--element .cms-element-map__marker strong {
  color: #17202d;
  font-weight: 800;
}

.cms-layout-widget--element .cms-element-map.is-map-ready .cms-element-map__markers {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 410;
  max-height: min(42%, 220px);
  overflow: auto;
  border: 1px solid rgba(224, 233, 224, 0.85);
  border-radius: calc(var(--cms-element-radius) * 0.72);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(23, 32, 45, 0.12);
  backdrop-filter: blur(8px);
}

.cms-layout-widget--element .cms-element-map.is-map-fallback .cms-element-map__canvas::after {
  display: flex;
  min-height: var(--cms-element-map-height);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: #5f6d61;
  content: "Map";
  font-weight: 800;
}

.cms-layout-widget--element .cms-element-map i {
  color: var(--cms-element-map-marker-color);
}

.cms-layout-widget--element .cms-element-map__popup {
  display: grid;
  gap: 0.25rem;
  min-width: 180px;
  color: #172033;
}

.cms-layout-widget--element .cms-element-map__popup-picture {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  margin: 0 0 0.35rem;
  border-radius: 8px;
}

.cms-layout-widget--element .cms-element-map__popup span {
  display: block;
}

.cms-leaflet-pin {
  background: transparent;
  border: 0;
}

.cms-leaflet-pin span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 18px rgba(23, 32, 45, 0.25);
  transform: rotate(-45deg);
}

.cms-leaflet-pin span::after {
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.cms-mapbox-marker {
  --cms-mapbox-marker-color: var(--cms-element-map-marker-color, #49ad4c);
  display: block;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.cms-mapbox-marker--pin {
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--cms-mapbox-marker-color);
  box-shadow: 0 8px 18px rgba(23, 32, 45, 0.25);
  transform: rotate(-45deg);
}

.cms-mapbox-marker--pin::after {
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.cms-mapbox-marker--circle,
.cms-mapbox-marker--leaf {
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--cms-mapbox-marker-color);
  box-shadow: 0 8px 18px rgba(23, 32, 45, 0.25);
}

.cms-mapbox-marker--leaf {
  border-radius: 70% 30% 70% 30%;
  transform: rotate(-45deg);
}

.cms-mapbox-marker--image {
  width: 34px;
  height: 42px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 32, 45, 0.25);
}

.cms-mapbox-marker--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cms-layout-widget--element[data-element-map-style="dark"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="carto_dark"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="mapbox_dark"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="mapbox_navigation_night"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="maplibre_carto_dark"] .cms-element-map {
  border-color: rgba(255, 255, 255, 0.16);
  background: #13251b;
  color: #fff;
}

.cms-layout-widget--element[data-element-map-style="satellite"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="mapbox_satellite"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="mapbox_satellite_streets"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="maplibre_esri_worldimagery"] .cms-element-map {
  border-color: rgba(73, 173, 76, 0.2);
  background: linear-gradient(135deg, #264f37, #7ea26c);
  color: #fff;
}

.cms-layout-widget--element[data-element-map-style="light"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="mapbox_light"] .cms-element-map,
.cms-layout-widget--element[data-element-map-style="mapbox_navigation_day"] .cms-element-map {
  background: #fbfdf9;
}

.cms-layout-widget--element[data-element-tabs-type="vertical"] .cms-element-tabs {
  display: grid;
  grid-template-columns: var(--cms-element-tabs-nav-width) minmax(0, 1fr);
  align-items: stretch;
}

.cms-layout-widget--element[data-element-tabs-type="vertical"] .cms-element-tabs__nav {
  flex-direction: column;
  flex-wrap: nowrap;
}

.cms-layout-widget--element[data-element-tabs-type="vertical"] .cms-element-tabs__content {
  border-top: var(--cms-element-tabs-border-width) solid var(--cms-element-tabs-border-color);
  border-left: 0;
}

.cms-layout-widget--element[data-element-tabs-style="pills"] .cms-element-tabs__nav {
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cms-layout-widget--element[data-element-tabs-style="pills"] .cms-element-tabs__content {
  border-top: var(--cms-element-tabs-border-width) solid var(--cms-element-tabs-border-color);
}

.cms-layout-widget--element[data-element-tabs-style="pills"] .cms-element-tabs__tab,
.cms-layout-widget--element[data-element-tabs-style="pills"] .cms-element-tabs__nav span {
  border-radius: 999px;
}

.cms-layout-widget--element[data-element-tabs-style="pills"] .cms-element-tabs__tab.is-active,
.cms-layout-widget--element[data-element-tabs-style="pills"] .cms-element-tabs__tab[aria-selected="true"],
.cms-layout-widget--element[data-element-tabs-style="pills"] .cms-element-tabs__nav span:first-child {
  background: var(--cms-element-accent);
  color: #fff;
}

.cms-layout-widget--element[data-element-tabs-style="underline"] .cms-element-tabs__content {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.cms-layout-widget--element[data-element-tabs-style="underline"] .cms-element-tabs__tab,
.cms-layout-widget--element[data-element-tabs-style="underline"] .cms-element-tabs__nav span {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 3px solid var(--cms-element-accent);
  border-radius: 0;
  background: transparent;
  color: #17202d;
}

.cms-layout-widget--element[data-element-social-shape="square"] .cms-element-social a {
  border-radius: 0;
}

.cms-layout-widget--element[data-element-social-shape="rounded"] .cms-element-social a {
  border-radius: 10px;
}

.cms-layout-widget--element[data-element-social-shape="plain"] .cms-element-social a {
  width: auto;
  height: auto;
  background: transparent;
}

.cms-layout-widget--element[data-element-alert-type="info"] {
  --cms-element-alert-bg: #d9edf7;
  --cms-element-alert-border-color: #68c8ec;
  --cms-element-alert-description-color: #2d6f8f;
  --cms-element-alert-title-color: #2d6f8f;
}

.cms-layout-widget--element[data-element-alert-type="success"] {
  --cms-element-alert-bg: #e9f8ee;
  --cms-element-alert-border-color: #5fca83;
  --cms-element-alert-description-color: #236d3f;
  --cms-element-alert-title-color: #236d3f;
}

.cms-layout-widget--element[data-element-alert-type="warning"] {
  --cms-element-alert-bg: #fff5df;
  --cms-element-alert-border-color: #f0b84f;
  --cms-element-alert-description-color: #80521a;
  --cms-element-alert-title-color: #80521a;
}

.cms-layout-widget--element[data-element-alert-type="danger"] {
  --cms-element-alert-bg: #ffe9ec;
  --cms-element-alert-border-color: #ef6f80;
  --cms-element-alert-description-color: #8c2634;
  --cms-element-alert-title-color: #8c2634;
}

.cms-element-navigation-menu {
  width: 100%;
}

.cms-element-navigation-menu__list,
.cms-element-navigation-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cms-element-navigation-menu__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}

.cms-element-navigation-menu--vertical .cms-element-navigation-menu__list {
  align-items: stretch;
  flex-direction: column;
}

.cms-element-navigation-menu--align-start .cms-element-navigation-menu__list {
  justify-content: flex-start;
}

.cms-element-navigation-menu--align-center .cms-element-navigation-menu__list {
  justify-content: center;
}

.cms-element-navigation-menu--align-end .cms-element-navigation-menu__list {
  justify-content: flex-end;
}

.cms-element-navigation-menu__item {
  position: relative;
}

.cms-element-navigation-menu__link {
  color: inherit;
  display: inline-flex;
  text-decoration: none;
}

.cms-element-navigation-menu__submenu {
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .12);
  display: none;
  min-width: 12rem;
  padding: .75rem;
  position: absolute;
  top: 100%;
  z-index: 30;
}

.cms-element-navigation-menu__item:hover > .cms-element-navigation-menu__submenu,
.cms-element-navigation-menu__item:focus-within > .cms-element-navigation-menu__submenu {
  display: block;
}

@media (max-width: 991.98px) {
  .cms-layout-widget--element[data-element-advanced-heading-hide="tablet"] .cms-element-advanced-heading__background {
    display: none;
  }

  .cms-element-gallery__items {
    grid-template-columns: repeat(var(--cms-element-gallery-columns-tablet), minmax(0, 1fr));
  }

  .cms-layout-widget--element[data-element-gallery-layout="masonry"] .cms-element-gallery__items {
    column-count: var(--cms-element-gallery-columns-tablet);
  }

  .cms-element-instagram {
    --cms-element-instagram-columns-current: var(--cms-element-instagram-columns-tablet);
  }
}

@media (max-width: 767.98px) {
  .cms-layout-widget--element[data-element-advanced-heading-hide="mobile"] .cms-element-advanced-heading__background {
    display: none;
  }

  .cms-element-cta,
  .cms-layout-widget--element[data-element-cta-layout="split"] .cms-element-cta,
  .cms-layout-widget--element[data-element-cta-layout="inline"] .cms-element-cta,
  .cms-layout-widget--element[data-element-cta-layout="inline"] .cms-element-cta__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .cms-element-inner,
  .cms-element-gallery__grid {
    grid-template-columns: 1fr;
  }

  .cms-element-image-box__wrapper,
  .cms-element-icon-box__wrapper,
  .cms-layout-widget--element[data-element-icon-box-position="right"] .cms-element-icon-box__wrapper,
  .cms-layout-widget--element[data-element-image-box-position="right"] .cms-element-image-box__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .cms-element-image-box__image,
  .cms-layout-widget--element[data-element-image-box-position="top"] .cms-element-image-box__image {
    width: min(100%, var(--cms-element-image-box-image-width));
  }

  .cms-element-gallery__items {
    grid-template-columns: repeat(var(--cms-element-gallery-columns-mobile), minmax(0, 1fr));
  }

  .cms-layout-widget--element[data-element-tabs-type="vertical"] .cms-element-tabs {
    grid-template-columns: 1fr;
  }

  .cms-layout-widget--element[data-element-tabs-type="vertical"] .cms-element-tabs__content {
    border-top: 0;
    border-left: var(--cms-element-tabs-border-width) solid var(--cms-element-tabs-border-color);
  }

  .cms-layout-widget--element[data-element-gallery-layout="masonry"] .cms-element-gallery__items {
    column-count: var(--cms-element-gallery-columns-mobile);
  }

  .cms-element-instagram {
    --cms-element-instagram-columns-current: var(--cms-element-instagram-columns-mobile);
  }
}
/* End lightweight widgets rendered inside the CMS layout builder. */
