/************************************
 * 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 ***/
.explore-careers__top-blocks {
  position: relative;
  -webkit-padding-after: 30px;
          padding-block-end: 30px;
}
.explore-careers__top-blocks .slick-dots {
  margin-top: 45px;
}
.explore-careers__top-blocks-list .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.explore-careers__top-blocks-list .slick-slide {
  height: inherit !important;
}
.explore-careers__top-blocks .item {
  padding-inline: 12.5px;
}
.explore-careers__top-blocks .item-inner {
  border-radius: 10px;
  background: #F9F9F9;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
  padding-block: 40px clamp(0px, 2.59vw + -9.71px, 40px);
  padding-inline: clamp(15px, 3.56vw + 1.65px, 70px);
  height: 100%;
  padding-block: clamp(25px, 1.89vw + 13.64px, 50px) clamp(30px, 3.03vw + 11.82px, 70px);
  padding-inline: clamp(30px, 1.52vw + 20.91px, 50px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.3333% - 16.6666666667px);
          flex: 0 0 calc(33.3333% - 16.6666666667px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(20px, 0.32vw + 18.79px, 25px);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.explore-careers__top-blocks .item-inner > h3, .explore-careers__top-blocks .item-inner > .h3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 15px;
  font-size: clamp(25px, 0.32vw + 23.79px, 30px);
  line-height: 40px;
  min-height: 40px;
}
.explore-careers__top-blocks .item-inner > h3:before, .explore-careers__top-blocks .item-inner > .h3:before {
  content: "";
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
}
.explore-careers__top-blocks .item .top {
  aspect-ratio: 3/1;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.explore-careers__top-blocks .item .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.explore-careers__top-blocks .item .bottom .title {
  color: var(--c-dark);
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  text-align: center;
  font-size: clamp(25px, 0.32vw + 23.79px, 30px);
}
.explore-careers__top-blocks .item .bottom .content {
  font-size: clamp(18px, 0.13vw + 17.51px, 20px);
  max-width: 440px;
}
@media screen and (max-width: 768px) {
  .explore-careers__top-blocks {
    padding-inline: 0 !important;
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
  }
  .explore-careers__top-blocks-list .item-inner .content {
    text-align: center;
    padding-inline: 5px;
  }
}
/*# sourceMappingURL=block-archive-foi-cards.css.map */
