.elementor-kit-37{--e-global-color-primary:#FFD323;--e-global-color-secondary:#0A0E26;--e-global-color-text:#0A0E26;--e-global-color-accent:#FFD323;--e-global-color-939162b:#FFD328;--e-global-color-33adb683:#54595F;--e-global-color-4d5ff42e:#7A7A7A;--e-global-color-49ac1b04:#61CE70;--e-global-color-631827fa:#4054B2;--e-global-color-4b8fe886:#23A455;--e-global-color-6a2dc5e1:#000;--e-global-color-402f3e7d:#FFF;--e-global-color-31d3bcbb:#FFE500;--e-global-color-590a050e:#FFDB49;--e-global-typography-primary-font-family:"Fira Sans";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Fira Sans";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Lato";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Lato";--e-global-typography-accent-font-weight:500;--e-global-typography-9e92427-font-family:"Inter";--e-global-typography-9e92427-font-weight:bold;--e-global-typography-9136538-font-family:"Inter";--e-global-typography-9136538-font-weight:normal;--e-global-typography-75a8831-font-family:"Lato";--e-global-typography-75a8831-font-size:19px;--e-global-typography-75a8831-font-weight:400;--e-global-typography-f1e012e-font-family:"Fira Sans";--e-global-typography-f1e012e-font-size:65px;--e-global-typography-f1e012e-font-weight:400;--e-page-transition-entrance-animation:e-page-transition-fade-out;--e-page-transition-animation-duration:1500ms;--e-preloader-animation-duration:500ms;--e-preloader-delay:50ms;--e-preloader-color:#FFF;--e-preloader-size:40px;}.elementor-kit-37 e-page-transition{background-color:#D2D2D2;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-37{--e-global-typography-f1e012e-font-size:44px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ====== Clamp mobile sur le Testimonial Carousel ====== */
@media (max-width: 767px) {
    #tsti-leihia .elementor-testimonial,
  #testiCarousel .elementor-testimonial { cursor: pointer; }

    #tsti-leihia .elementor-testimonial__text,
  #testiCarousel .elementor-testimonial__text{
    display: -webkit-box;
    -webkit-line-clamp: 5;                /* <- nb de lignes visibles */
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
  }
    #tsti-leihia .elementor-testimonial__text::after
  #testiCarousel .elementor-testimonial__text::after{
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 2.6em; pointer-events: none;
  }
  #tsti-leihia .swiper-slide,
  #testiCarousel .swiper-slide{
    width: calc(100%- 1px) !important;  /* écrase la largeur inline posée par Swiper */
  }

  /* Option : un peu d’air entre les slides */
  #tsti-leihia .swiper-wrapper,
  #testiCarousel .swiper-wrapper{
    gap: 4px;
  }
  #tsti-leihia .swiper-slide-prev,
  #tsti-leihia .swiper-slide-next,
    #testiCarousel .swiper-slide-prev,
  #testiCarousel .swiper-slide-next{
    visibility: hidden;
    pointer-events: none;
  }
}

/* ====== Modale full-text ====== */
/* === Overlay === */
.tsti-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  z-index: 9999;
}
.tsti-modal__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* === Modale === */
.tsti-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96) translateY(10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  z-index: 10000;
}
.tsti-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

/* === Contenu === */
.tsti-modal__dialog {
  width: min(92vw, 740px);
  max-height: 84vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  padding: 20px 20px 24px;
}

.tsti-modal__header{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-bottom: 12px;
}
.tsti-modal__title{
  font-size: 1.05rem; font-weight: 600; line-height: 1.2; margin: 0;
}
.tsti-modal__close{
  border:0; background:transparent; font-size:1.6rem; line-height:1;
  cursor:pointer;
}
.tsti-modal__content{
  font-size: 1rem; line-height: 1.6;
}

@keyframes tstiFadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes tstiFadeInDialog {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* animation modale témoignages */
.tsti-modal__overlay.is-open {
  animation: tstiFadeInOverlay 0.35s ease-in-out forwards;
}

.tsti-modal.is-open .tsti-modal__dialog {
  animation: tstiFadeInDialog 0.35s ease-in-out forwards;
  will-change: transform, opacity;
}
.tsti-modal__header{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-bottom: 12px;
}
.tsti-modal__title{
  font-size: 1.5rem; font-weight: 600; line-height: 1.2; margin: 0;
}
.tsti-modal__close{
  border:0; background:transparent; font-size:25px; line-height:1;
  cursor:pointer;
}
.tsti-modal__content{
  font-size: 1.5rem; line-height: 1.6;
}

.bandeau-leihia {
	max-width: 1600px!important;
	margin-left: auto;
	margin-right: auto; 
}/* End custom CSS */