/**
 * 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 ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.yellow-btn {
  position: absolute;
  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;
  right: 0;
  bottom: 0;
  width: clamp(50px, 2.87vw + 21.85px, 77px);
  height: clamp(50px, 2.87vw + 21.85px, 77px);
  -webkit-transform: translate(-38%, 40%);
          transform: translate(-38%, 40%);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.yellow-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 80px;
  background-color: var(--c-main);
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.yellow-btn .arrow {
  content: url("../../svg/arrow-blue-small.svg");
}
@media screen and (max-width: 980px) {
  .yellow-btn {
    display: none;
  }
}

.block-push {
  max-width: 1940px;
  margin-inline: auto;
  margin-block: clamp(50px, 3.24vw + 37.86px, 100px);
  padding-inline: clamp(18px, 14.04vw + -119.62px, 150px);
}
@media screen and (max-width: 995px) {
  .block-push {
    padding-right: 0;
    padding-left: clamp(7px, 1.77vw + 0.35px, 18px);
  }
}
.block-push__applications-crossnav {
  padding-right: 0;
}
.block-push h2 {
  margin-bottom: clamp(30px, 1.29vw + 25.15px, 50px);
}
.block-push__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2.13vw + -10.85px, 30px);
}
@media screen and (max-width: 995px) {
  .block-push__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block-push__items .slick-list {
    padding: 0 15% 0 0 !important;
  }
}
.block-push__items.applications-crossnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-push__items.applications-crossnav .slick-list {
  padding: 0 15% 0 0 !important;
}
.block-push__items .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.block-push__items .slick-track .slick-slide {
  height: inherit !important;
  margin-right: clamp(10px, 2.13vw + -10.85px, 30px);
}

.page-teaser-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
}
.page-teaser-card:hover, .page-teaser-card:focus {
  color: var(--c-secondary);
}
.page-teaser-card:hover .page-teaser-card__body .img-container img, .page-teaser-card:focus .page-teaser-card__body .img-container img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page-teaser-card:hover .page-teaser-card__body .img-container img:after, .page-teaser-card:focus .page-teaser-card__body .img-container img:after {
  max-width: 100%;
}
.page-teaser-card:hover .page-teaser-card__body .yellow-btn:before, .page-teaser-card:focus .page-teaser-card__body .yellow-btn:before {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.page-teaser-card:hover .page-teaser-card__body:after, .page-teaser-card:focus .page-teaser-card__body:after {
  max-width: 90%;
}
.page-teaser-card:hover .page-teaser-card__body .yellow-line, .page-teaser-card:focus .page-teaser-card__body .yellow-line {
  max-width: 90% !important;
}
.page-teaser-card__body {
  position: relative;
  line-height: 0;
  height: 50%;
}
.page-teaser-card__body .img-container {
  height: 100%;
  overflow: hidden;
  line-height: 0;
}
.page-teaser-card__body .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.page-teaser-card__body .yellow-line {
  position: absolute;
  display: block;
  content: "";
  width: 90%;
  height: 4px;
  background-color: var(--c-main);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.page-teaser-card__body .yellow-btn {
  opacity: 1;
  width: clamp(40px, 0.97vw + 36.36px, 55px);
  height: clamp(40px, 0.97vw + 36.36px, 55px);
  -webkit-transform: translate(-30%, 40%);
          transform: translate(-30%, 40%);
}
.page-teaser-card__body .yellow-btn .arrow {
  width: clamp(10px, 0.32vw + 8.79px, 15px);
}
@media screen and (max-width: 980px) {
  .page-teaser-card__body .yellow-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page-teaser-card__footer {
  padding-block: clamp(13px, 0.45vw + 11.3px, 20px);
  padding-right: clamp(30px, 0.97vw + 26.36px, 45px);
  height: 50%;
}
.page-teaser-card__footer .title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(18px, 0.45vw + 16.3px, 25px);
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-teaser-card__footer .text {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(13px, 0.13vw + 12.51px, 15px);
}
/*# sourceMappingURL=page-teaser-push.css.map */
