/************************************
 * 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)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
/*
@font-face {
    font-family: 'Urbani';
    src: url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.eot');
    src: url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.woff') format('woff'),
         url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.ttf') format('truetype'),
         url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.svg#Urbani-UltraLightItalic') format('svg');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
*/
/************************************
 * 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)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
.slick-list {
  width: 100%;
  padding-left: 0 !important;
  overflow: visible;
}
.slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 600px) {
  .slick-list {
    overflow: hidden;
    padding-left: unset;
  }
}

.slick-slide {
  outline: none;
}

.slick-slider-arrows {
  position: absolute;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: clamp(20px, 0.54vw + 14.67px, 25px);
  width: 100%;
  top: calc(50% - 8px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.slick-slider-arrows .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: 42px;
  height: 42px;
  border-radius: 50%;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  cursor: pointer;
  position: relative;
  -webkit-box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.3);
}
.slick-slider-arrows .arrow:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50%;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.slick-slider-arrows .arrow .picto-arrow {
  width: 24px;
  height: 14px;
  top: -4px;
  position: relative;
}
.slick-slider-arrows .arrow .picto-arrow:before, .slick-slider-arrows .arrow .picto-arrow:after {
  width: 24px;
  height: 14px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.slick-slider-arrows .arrow .picto-arrow:before {
  content: url("../../svg/icon-arrow-slider.svg");
}
.slick-slider-arrows .arrow .picto-arrow:after {
  opacity: 0;
  content: url("../../svg/icon-arrow-slider-white.svg");
}
.slick-slider-arrows .arrow.custom-slick-prev .picto-arrow {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.slick-slider-arrows .arrow:hover {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.slick-slider-arrows .arrow:hover:before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background-color: #18224B;
}
.slick-slider-arrows .arrow:hover .picto-arrow:before {
  opacity: 0;
}
.slick-slider-arrows .arrow:hover .picto-arrow:after {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .slick-slider-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slick-slider-dots {
  padding-top: 15px;
  padding-bottom: 25px;
}

.slick-dots {
  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 3px;
}
.slick-dots li button {
  position: relative;
  display: block;
  background: transparent;
  color: transparent;
  height: 10px;
  width: 10px;
  padding: 0;
  border: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
}
.slick-dots li button:before {
  background-color: #DEDEDE;
  opacity: 1;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  height: 10px;
  width: 10px;
  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: #0551AF;
}

.wp-block-grdnrs-slider-acf {
  overflow-x: clip;
}
.wp-block-grdnrs-slider-acf__items-container {
  position: relative;
}
.wp-block-grdnrs-slider-acf.slider-wrap {
  max-width: 1620px;
  margin-inline: auto;
}
.wp-block-grdnrs-slider-acf-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wp-block-grdnrs-slider-acf-item .img-container {
  height: 100%;
  overflow: hidden;
  aspect-ratio: 5/2;
}
.wp-block-grdnrs-slider-acf-item .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-grdnrs-slider-acf-item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 95%;
  min-width: 257px;
  min-height: 163px;
  z-index: 1;
  padding: 20px 20px 20px 0;
  margin: 20px 0 0;
}
@media screen and (min-width: 992px) {
  .wp-block-grdnrs-slider-acf-item-block {
    position: absolute;
    margin: auto;
    max-width: 460px;
    bottom: 7rem;
    right: 5rem;
  }
  .wp-block-grdnrs-slider-acf-item-block-external .grdnrs-slider-acf-item-block {
    bottom: 7rem;
    right: 5rem;
    max-width: 460px;
  }
}
.wp-block-grdnrs-slider-acf-item-surtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}
.wp-block-grdnrs-slider-acf-item-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(26px, 0.26vw + 25.03px, 30px);
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .wp-block-grdnrs-slider-acf-item-title {
    line-height: 1.4;
  }
}
.wp-block-grdnrs-slider-acf-item-btn {
  margin-top: 20px;
}
.wp-block-grdnrs-slider-acf-list .slick-arrow {
  z-index: 2;
}
.wp-block-grdnrs-slider-acf .slick-list {
  overflow: visible;
}
@media screen and (min-width: 992px) {
  .wp-block-grdnrs-slider-acf .slick-list {
    overflow: hidden;
  }
}
.wp-block-grdnrs-slider-acf .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-block-grdnrs-slider-acf .slick-list .slick-track .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 992px) {
  .wp-block-grdnrs-slider-acf .slick-list .slick-track .slick-slide {
    margin-right: 0;
    padding-right: 0;
  }
}
.wp-block-grdnrs-slider-acf.is-light .wp-block-grdnrs-slider-acf-item-surtitle,
.wp-block-grdnrs-slider-acf.is-light .wp-block-grdnrs-slider-acf-item-title {
  color: #ffffff;
}
/*# sourceMappingURL=block-slider-acf.css.map */
