/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-section-image-slideshow--bg-white {
  background-color: #ffffff;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-image-slideshow--bg-blue-light {
  background-color: #bfe9ff;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-image-slideshow--bg-blue-cta {
  background-color: #004e6a;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-image-slideshow--bg-blue-dark {
  background-color: #001a24;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-image-slideshow--bg-green-light {
  background-color: #ecffac;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-image-slideshow--bg-green {
  background-color: #85cc1d;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-image-slideshow--bg-mid-grey {
  background-color: #d5d5d5;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-image-slideshow--bg-black {
  background-color: #000000;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-image-slideshow--bg-light-grey {
  background-color: #C8C8C8;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-image-slideshow {
  overflow-x: clip;
  max-width: 100%;
}
.s-section-image-slideshow__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}
.s-section-image-slideshow__intro {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}
.s-section-image-slideshow__title {
  flex: 0 0 35%;
  max-width: 35%;
  margin: 0;
  font-family: "Panton", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.125rem;
  color: inherit;
}
.s-section-image-slideshow__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  color: inherit;
  white-space: pre-wrap;
}
.s-section-image-slideshow__slider {
  width: 100%;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}
.s-section-image-slideshow__slider .splide__track {
  overflow: hidden;
  border-radius: 1.5rem;
}
.s-section-image-slideshow__slider .splide__list {
  align-items: stretch;
}
.s-section-image-slideshow__slider .splide__slide {
  width: 100%;
}
.s-section-image-slideshow__slider .splide__arrow {
  display: none;
}
.s-section-image-slideshow__slider .splide__pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0.9375rem 0 0;
  padding: 0;
}
.s-section-image-slideshow__slider .splide__pagination__page {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.25;
  transform: none;
  transition: opacity 0.2s ease;
}
.s-section-image-slideshow__slider .splide__pagination__page.is-active {
  opacity: 1;
  transform: none;
}
.s-section-image-slideshow__figure {
  margin: 0;
  width: 100%;
  height: 29.5625rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.s-section-image-slideshow__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .s-section-image-slideshow__intro {
    flex-direction: column;
    gap: 1rem;
  }
  .s-section-image-slideshow__title {
    flex: none;
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .s-section-image-slideshow__inner {
    gap: 2.5rem;
  }
  .s-section-image-slideshow__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .s-section-image-slideshow__figure {
    height: 17.5rem;
  }
}