@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/OpenSans/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/OpenSans/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/PT-Sans/PT-Sans-Regular.woff2") format("woff2"), url("../fonts/PT-Sans/PT-Sans-Regular.ttf") format("truetype");
}
/************************************
 * 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 ***/
.slick-slide {
  outline: none;
}

.slick-slider-arrows {
  position: absolute;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% + 80px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .slick-slider-arrows {
    max-width: calc(100% + var(--g-gutter) * 2);
  }
}
@media screen and (min-width: 769px) {
  .slick-slider-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slider-wrapper {
  position: relative;
}
.slider-wrapper .arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
}
.slider-wrapper .arrow.custom-slick-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slider-wrapper .arrow.custom-slick-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.slick-slider-arrows .arrow, .slider-wrapper .arrow {
  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;
  width: clamp(65px, 2.02vw + 45.19px, 84px);
  height: clamp(65px, 2.02vw + 45.19px, 84px);
  border-radius: 50%;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  cursor: pointer;
  background-color: var(--c-bloc-slider-arrow-bg);
  -webkit-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.15);
}
.slick-slider-arrows .arrow.slick-disabled, .slider-wrapper .arrow.slick-disabled {
  opacity: 0.3;
}
.slick-slider-arrows .arrow .picto-arrow, .slider-wrapper .arrow .picto-arrow {
  content: url("../svg/arrow-slider-left.svg");
  width: 50%;
}
.slick-slider-arrows .arrow:hover, .slider-wrapper .arrow:hover {
  background-color: var(--c-secondary);
  scale: 1.05;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.slick-slider-arrows .arrow.custom-slick-next .picto-arrow, .slider-wrapper .arrow.custom-slick-next .picto-arrow {
  content: url("../svg/arrow-slider-right.svg");
}

.slick-dots {
  margin-top: clamp(35px, 0.65vw + 32.57px, 45px);
  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;
}
.slick-dots li {
  margin: 0 7px;
}
.slick-dots li button {
  position: relative;
  display: block;
  background: transparent;
  color: transparent;
  height: 6px;
  width: 6px;
  padding: 0;
  border: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
}
.slick-dots li button:before {
  background-color: var(--c-bloc-slider-dot-bg);
  opacity: 1;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border: 1px solid var(--c-bloc-slider-dot-border);
  height: 12px;
  width: 12px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}
.slick-dots li.slick-active button:before {
  background-color: var(--c-bloc-slider-dot-bg-active);
}
/*# sourceMappingURL=slick-common.css.map */
