/************************************
 * 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 ***/
.foi-teaser {
  padding-block: 7.5px;
}
.foi-teaser__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid var(--c-action);
  max-width: 410px;
  margin: auto;
  overflow: hidden;
  height: 100%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media screen and (min-width: 980px) and (hover: hover) {
  .foi-teaser__inner:hover {
    cursor: pointer;
    -webkit-box-shadow: 10px 10px 0px 0px #00D3B7;
            box-shadow: 10px 10px 0px 0px #00D3B7;
  }
  .foi-teaser__inner:hover .foi-teaser__content {
    opacity: 1;
    visibility: visible;
  }
  .foi-teaser__inner:hover .foi-teaser__content .title {
    top: 0;
  }
  .foi-teaser__inner:hover .foi-teaser__content .link:before {
    width: 0;
  }
}
.foi-teaser__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -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;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding-block: clamp(35px, 0.65vw + 32.57px, 45px);
  padding-inline: clamp(15px, 0.65vw + 12.57px, 25px);
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.foi-teaser__content .title {
  margin: 0;
  position: relative;
  top: 90%;
  -webkit-transition: 0.4s cubic-bezier(0, 1.18, 0.55, 1.02);
  transition: 0.4s cubic-bezier(0, 1.18, 0.55, 1.02);
}
.foi-teaser__content .description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-inline: clamp(15px, 0.65vw + 12.57px, 25px);
  color: var(--c-default);
  overflow-y: auto;
}
.foi-teaser__content .link {
  position: relative;
  display: block;
  margin-inline: clamp(15px, 0.65vw + 12.57px, 25px);
  position: relative;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  color: var(--c-link);
}
.foi-teaser__content .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) {
  .foi-teaser__content .link:hover:before {
    width: 100%;
  }
}
@media screen and (hover: none) {
  .foi-teaser__content .link:before {
    width: 100%;
  }
}
.foi-teaser__content .link:before {
  width: 100%;
}
@media screen and (hover: hover) {
  .foi-teaser__content .link:hover:before {
    width: 0;
  }
}
.foi-teaser__content .link:after {
  content: "";
  position: absolute;
  width: 17px;
  height: 12px;
  left: calc(100% + 15px);
  top: calc(50% - 6px);
  background-image: url("../../svg/arrow-green.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.foi-teaser__top {
  aspect-ratio: 1;
}
.foi-teaser__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.foi-teaser__bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-inline: clamp(15px, 1.62vw + 8.93px, 40px) clamp(20px, 1.94vw + 12.72px, 50px);
  background-image: url("../../svg/arrow-green.svg");
  background-position: right 25px top 25px;
  background-size: 17px;
  background-repeat: no-repeat;
}
.foi-teaser__bottom h3, .foi-teaser__bottom .foi-teaser__content .title, .foi-teaser__content .foi-teaser__bottom .title {
  margin: 0;
}
@media screen and (min-width: 601px) {
  .foi-teaser {
    padding-inline: 10px;
    padding-block: 10px;
  }
  .foi-teaser__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .foi-teaser__top {
    aspect-ratio: 1.03;
  }
  .foi-teaser__bottom {
    padding-block: 15px 30px;
  }
}
@media screen and (max-width: 600px) {
  .foi-teaser__top {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 29%;
            flex: 0 0 29%;
  }
  .foi-teaser__bottom {
    padding-block: 10px 25px;
    background-position: bottom 13px right 15px;
  }
  .foi-teaser__bottom h3, .foi-teaser__bottom .foi-teaser__content .title, .foi-teaser__content .foi-teaser__bottom .title {
    font-family: var(--f-default);
    font-size: 18px;
    font-weight: 600;
  }
}

.archive__term, .empty-foi {
  border-top: 1px solid var(--c-border);
  padding-block: clamp(17px, 1.49vw + 11.42px, 40px);
}
.archive__term h2.archive__term-title, .empty-foi h2.archive__term-title {
  color: var(--c-dark);
  font-size: clamp(25px, 1.39vw + 8.33px, 35px);
  font-family: var(--f-special);
  letter-spacing: -0.8px;
}
@media screen and (min-width: 769px) {
  .archive__term > *:first-of-type, .empty-foi > *:first-of-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41%;
            flex: 0 0 41%;
    -webkit-padding-end: clamp(20px, 1.3vw + 10px, 35px);
            padding-inline-end: clamp(20px, 1.3vw + 10px, 35px);
  }
  .archive__term > *:last-of-type, .empty-foi > *:last-of-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 59%;
            flex: 0 0 59%;
    -webkit-padding-start: clamp(20px, 0.43vw + 16.67px, 25px);
            padding-inline-start: clamp(20px, 0.43vw + 16.67px, 25px);
  }
  .archive__term-right, .archive__term__right, .empty-foi-right, .empty-foi__right {
    border-left: 1px solid var(--c-border);
  }
}

.empty-foi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.empty-foi:before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: 0;
  height: 100%;
  position: absolute;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.empty-foi h2 {
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.empty-foi__text {
  color: #5D6066;
  font-size: clamp(16px, 0.21vw + 13.91px, 18px);
}
.empty-foi__right {
  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;
  gap: clamp(15px, 2.78vw + -18.33px, 35px);
}
@media screen and (hover: hover) {
  .empty-foi:hover:before {
    opacity: 1;
  }
  .empty-foi:hover h2 {
    color: var(--c-secondary);
  }
}
@media screen and (min-width: 769px) {
  .empty-foi {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .empty-foi__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .empty-foi__right .btn-alert {
    white-space: nowrap;
  }
  .empty-foi__text {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .empty-foi__right {
    -webkit-padding-after: 10px;
            padding-block-end: 10px;
  }
}

.archive__term {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px 0;
}
.archive__term:before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: 0;
  height: 100%;
  position: absolute;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.archive__term-left {
  position: relative;
}
.archive__term-left:after {
  content: "";
  top: 5px;
  right: 25px;
  height: clamp(25px, 1.06vw + 14.57px, 35px);
  width: clamp(25px, 1.06vw + 14.57px, 35px);
  position: absolute;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: url("../../svg/arrow-green.svg") no-repeat center;
  background-size: contain;
}
@media screen and (hover: hover) {
  .archive__term:hover:before {
    opacity: 1;
  }
  .archive__term:hover .archive__term-left h2 {
    color: var(--c-secondary);
  }
  .archive__term:hover .archive__term-left:after {
    opacity: 1;
  }
}
.archive__term .btn-alert {
  -webkit-padding-start: clamp(50px, 1.29vw + 45.15px, 70px);
          padding-inline-start: clamp(50px, 1.29vw + 45.15px, 70px);
}
.archive__term .job-offer-teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.02);
  padding-block: 18px;
  padding-inline: clamp(15px, 0.65vw + 12.57px, 25px);
}
.archive__term .job-offer-teaser__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.archive__term .job-offer-teaser__top .ref {
  display: none;
  color: #5D6066;
  font-size: clamp(14px, 0.17vw + 12.67px, 16px);
  line-height: calc(clamp(18px, 0.26vw + 17.03px, 22px) * var(--h3-line-height));
}
.archive__term .job-offer-teaser__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 25px;
  color: #191414;
  font-size: 15px;
  display: none;
}
.archive__term .job-offer-teaser__tags li {
  position: relative;
  padding-left: 25px;
}
.archive__term .job-offer-teaser__tags li:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../../svg/contract.svg");
  width: 18px;
  height: 18px;
}
.archive__term .job-offer-teaser__tags li.flexibility-tag:before {
  width: 20px;
  height: 20px;
  background-image: url("../../svg/laptop.svg");
}
.archive__term .job-offer-teaser h3, .archive__term .job-offer-teaser .foi-teaser__content .title, .foi-teaser__content .archive__term .job-offer-teaser .title {
  font-family: var(--f-default);
  font-size: clamp(18px, 0.35vw + 15.33px, 22px);
  color: var(--c-primary);
  font-weight: 600;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media screen and (hover: hover) {
  .archive__term .job-offer-teaser:hover h3, .archive__term .job-offer-teaser:hover .foi-teaser__content .title, .foi-teaser__content .archive__term .job-offer-teaser:hover .title {
    color: var(--c-action);
  }
}
@media screen and (min-width: 769px) {
  .archive__term .job-offer-teaser__top .ref {
    display: block;
  }
  .archive__term .job-offer-teaser__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
  }
}
@media screen and (max-width: 980px) {
  .archive__term .job-offer-teaser__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.archive__term-left h2 {
  margin-bottom: clamp(16.56px, 0.12vw + 16.11px, 18.4px);
}
.archive__term-jobs {
  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;
}
@media screen and (min-width: 769px) {
  .archive__term {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.foi__explore-foi-slider-wrapper {
  padding-block: clamp(30px, 1.94vw + 22.72px, 60px);
}
@media screen and (min-width: 481px) {
  .foi__explore-foi-slider-wrapper {
    margin-inline: -10px;
  }
}
.foi__explore-foi-slider .slick-list {
  overflow: visible;
}
.foi__explore-foi-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.foi__explore-foi-slider .slick-slide {
  height: inherit !important;
}

.front-page__explore-foi {
  position: relative;
  -webkit-margin-after: clamp(60px, 0.65vw + 57.57px, 70px);
          margin-block-end: clamp(60px, 0.65vw + 57.57px, 70px);
  -webkit-margin-before: clamp(60px, 0.65vw + 57.57px, 70px);
          margin-block-start: clamp(60px, 0.65vw + 57.57px, 70px);
  padding-block: clamp(10px, 1.29vw + 5.15px, 30px);
}
.front-page__explore-foi h2 {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  -webkit-margin-after: 0.6em;
          margin-block-end: 0.6em;
  font-size: clamp(30px, 1.74vw + 16.67px, 50px);
  line-height: 1.1;
}
.front-page__explore-foi-top {
  text-align: center;
}
.front-page__explore-foi-top h2, .front-page__explore-foi-top .subtitle {
  width: 100%;
  margin-bottom: 0 !important;
}
.front-page__explore-foi-top .subtitle {
  font-variation-settings: "wdth" 100, "wght" 300 !important;
  font-family: var(--f-title) !important;
  font-size: clamp(30px, 1.29vw + 25.15px, 50px) !important;
}
.front-page__explore-foi-top a {
  display: inline-block;
  margin-top: clamp(12px, 0.52vw + 10.06px, 20px);
}
.front-page__explore-foi .foi__explore-foi-slider-wrapper {
  padding-block: clamp(50px, 1.94vw + 42.72px, 80px);
}

@media screen and (max-width: 600px) {
  .foi__explore-foi-slider {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}
/*# sourceMappingURL=block-explore-foi.css.map */
