/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*@mixin breakpoint($point) {
  @if $point == desktop {
    @media only screen and (max-width: $bp-xlarge) {
      @content;
    }
  }
  @else if $point == table {
    @media only screen and (max-width: $bp-large) {
      @content;
    }
  }
  @else if $point == mobile {
    @media only screen and (max-width: $bp-xsmall) {
      @content;
    }
  }
}*/
/*** SPECIFIC TO CURRENT PROJECT ***/
.testimonial-teaser {
  width: 100%;
  max-width: 581px;
  padding-inline: 12.5px;
  container-type: inline-size;
}
.testimonial-teaser__inner {
  aspect-ratio: var(--testimonial-ar-mobile);
  min-height: 320px;
  max-height: 500px;
  margin-inline: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 40px;
}
@media screen and (hover: hover) {
  .testimonial-teaser__inner:hover .testimonial-teaser__back {
    visibility: visible;
    opacity: 1;
    z-index: 1;
  }
  .testimonial-teaser__inner:hover .testimonial-teaser__title, .testimonial-teaser__inner:hover .testimonial-teaser__job {
    opacity: 0;
  }
}
@media screen and (hover: none) {
  .testimonial-teaser__inner.hover .testimonial-teaser__back {
    visibility: visible;
    opacity: 1;
    z-index: 1;
  }
  .testimonial-teaser__inner.hover .testimonial-teaser__title, .testimonial-teaser__inner.hover .testimonial-teaser__job {
    opacity: 0;
  }
}
.testimonial-teaser__front {
  color: #fff;
}
.testimonial-teaser__view {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-teaser__view:after {
  content: "";
  position: relative;
  display: block;
  background-color: rgba(0, 211, 183, 0.5);
  background-image: url("../../svg/eye.svg");
  background-position: center;
  background-size: 35px;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.testimonial-teaser__title {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  font-size: clamp(25px, 0.32vw + 23.79px, 30px);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.testimonial-teaser__job {
  font-size: clamp(18px, 0.13vw + 17.51px, 20px);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.testimonial-teaser__back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: rgba(0, 24, 65, 0.9);
  padding-block: clamp(30px, 2.27vw + 21.5px, 65px);
  padding-inline: clamp(40px, 0.87vw + 33.33px, 50px) clamp(40px, 2.6vw + 20px, 70px);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.testimonial-teaser__back .close {
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: var(--c-default);
  background-image: url("../../svg/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 50%;
  aspect-ratio: 1;
  z-index: 1;
}
.testimonial-teaser__back .close:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  background: url("../../svg/closing.svg") no-repeat center;
  background-size: contain;
}
.testimonial-teaser__back .close:hover {
  background-color: #000;
}
.testimonial-teaser__back .close:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.testimonial-teaser__link {
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-top: 40px;
  color: #fff;
  font-size: 18px;
}
.testimonial-teaser__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--c-link);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 0;
  height: 1px;
}
@media screen and (hover: hover) {
  .testimonial-teaser__link:hover:before {
    width: 100%;
  }
}
@media screen and (hover: none) {
  .testimonial-teaser__link:before {
    width: 100%;
  }
}
.testimonial-teaser__link:before {
  width: 100%;
}
@media screen and (hover: hover) {
  .testimonial-teaser__link:hover:before {
    width: 0;
  }
}
.testimonial-teaser__link:before {
  background-color: #fff;
}
.testimonial-teaser__link:after {
  position: absolute;
  margin-left: 10px;
}
.testimonial-teaser__excerpt {
  position: relative;
  padding-left: var(--padding-left-quote);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: auto;
  font-size: clamp(20px, 0.13vw + 19.51px, 22px) !important;
  color: #fff !important;
  scrollbar-width: thin; /* Pour Firefox */
  scrollbar-color: var(--c-input-border) transparent; /* Pour Firefox */
}
.testimonial-teaser__excerpt, .testimonial-teaser__excerpt p {
  font-size: clamp(20px, 0.52vw + 18.06px, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-dark);
}
.testimonial-teaser__excerpt:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 35px;
  left: 0;
  top: 0;
  background: url("../../svg/quote.svg") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .testimonial-teaser__excerpt {
    padding-left: 0;
  }
  .testimonial-teaser__excerpt:before {
    position: relative;
    display: block;
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}
.testimonial-teaser__excerpt::-webkit-scrollbar {
  width: 8px;
}
.testimonial-teaser__excerpt::-webkit-scrollbar-thumb {
  background-color: var(--c-input-border);
  border-radius: 10px;
}
.testimonial-teaser__excerpt::-webkit-scrollbar-track {
  background-color: transparent;
}
.testimonial-teaser__excerpt::-webkit-scrollbar-button {
  display: none;
}
.testimonial-teaser__excerpt::-webkit-scrollbar-button:single-button:vertical:increment, .testimonial-teaser__excerpt ::-webkit-scrollbar-button:single-button:vertical:decrement {
  display: none;
  width: 0;
  height: 0;
  color: transparent;
}
@media screen and (hover: hover) {
  .testimonial-teaser__back .close {
    display: none;
  }
}
@media screen and (hover: none) {
  .testimonial-teaser__view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .testimonial-teaser__link {
    -ms-flex-item-align: end;
        align-self: flex-end;
    -webkit-transform: translateX(-27px);
            transform: translateX(-27px);
  }
}
@media screen and (min-width: 769px) {
  @container (max-width: 500px) {
    .testimonial-teaser .testimonial-teaser__back {
      padding-block: 50px;
      padding-inline: 20px;
    }
  }
  @container (max-width: 400px) {
    .testimonial-teaser .testimonial-teaser__excerpt {
      -webkit-padding-start: calc(var(--padding-left-quote) - 20px);
              padding-inline-start: calc(var(--padding-left-quote) - 20px);
    }
    .testimonial-teaser .testimonial-teaser__link {
      -webkit-margin-start: calc(var(--padding-left-quote) - 20px);
              margin-inline-start: calc(var(--padding-left-quote) - 20px);
      margin-top: 15px;
    }
  }
  .testimonial-teaser__inner {
    min-height: 300px;
    aspect-ratio: var(--testimonial-ar-desktop);
  }
  .testimonial-teaser__link {
    -webkit-margin-start: var(--padding-left-quote);
            margin-inline-start: var(--padding-left-quote);
  }
}

.program__testimonials-slider {
  padding-block: clamp(25px, 1.62vw + 18.93px, 50px);
}
.program__testimonials-slider .slick-list {
  overflow: visible;
}
.program__testimonials-slider .slick-slide {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.program__testimonials-slider .slick-slide:not(.slick-active):not(.slick-current) {
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .program__testimonials-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
@media screen and (min-width: 769px) {
  .program__testimonials h2.block-title strong {
    display: inline !important;
  }
}
/*# sourceMappingURL=block-testimonials-slider.css.map */
