/************************************
 * 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 ***/
.front-page__explore {
  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(45px, 2.59vw + 35.29px, 85px) 50px;
}
.front-page__explore 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:before {
  content: "";
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--c-dark);
}
.front-page__explore > * {
  position: relative;
}
.front-page__explore h2 {
  color: #fff !important;
  font-family: var(--f-title) !important;
  font-variation-settings: "wdth" 100, "wght" 300 !important;
  width: 100% !important;
  text-align: center !important;
}
.front-page__explore h2 strong {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
}
.front-page__explore-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 15px;
  padding-block: clamp(0px, 4.34vw + -33.33px, 50px);
}
.front-page__explore-link {
  cursor: default;
  position: relative;
  padding: 15px 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 7.5px);
          flex: 0 0 calc(50% - 7.5px);
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.front-page__explore-link-img {
  width: 100%;
  aspect-ratio: 380/240;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.front-page__explore-link-title {
  position: relative;
  padding: 15px 30px 5px clamp(0px, 1.3vw + -10px, 15px);
  font-size: clamp(17px, 0.71vw + 14.33px, 28px);
  font-weight: 600;
  -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);
}
.front-page__explore-link-title:after {
  content: "";
  position: absolute;
  right: clamp(2px, 1.13vw + -6.67px, 15px);
  top: 20px;
  width: 17px;
  height: 12px;
  background: url("../../svg/arrow-yellow.svg") no-repeat center;
  background-size: contain;
}
.front-page__explore-link-content {
  position: absolute;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 25px;
  visibility: hidden;
  opacity: 0;
  background-color: var(--c-light);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.front-page__explore-link-content .title {
  font-size: 30px;
  font-weight: 600;
  color: var(--c-dark);
  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);
}
.front-page__explore-link-content .description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--c-dark);
  overflow: auto;
  scrollbar-width: thin; /* Pour Firefox */
  scrollbar-color: var(--c-input-border) transparent; /* Pour Firefox */
}
.front-page__explore-link-content .description::-webkit-scrollbar {
  width: 8px;
}
.front-page__explore-link-content .description::-webkit-scrollbar-thumb {
  background-color: var(--c-input-border);
  border-radius: 10px;
}
.front-page__explore-link-content .description::-webkit-scrollbar-track {
  background-color: transparent;
}
.front-page__explore-link-content .description::-webkit-scrollbar-button {
  display: none;
}
.front-page__explore-link-content .description::-webkit-scrollbar-button:single-button:vertical:increment, .front-page__explore-link-content .description ::-webkit-scrollbar-button:single-button:vertical:decrement {
  display: none;
  width: 0;
  height: 0;
  color: transparent;
}
.front-page__explore-link-content .link {
  display: inline;
  color: var(--c-secondary);
  position: relative;
  position: relative;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
}
.front-page__explore-link-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) {
  .front-page__explore-link-content .link:hover:before {
    width: 100%;
  }
}
@media screen and (hover: none) {
  .front-page__explore-link-content .link:before {
    width: 100%;
  }
}
.front-page__explore-link-content .link:before {
  width: 100%;
}
@media screen and (hover: hover) {
  .front-page__explore-link-content .link:hover:before {
    width: 0;
  }
}
.front-page__explore-link-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;
}
@media screen and (min-width: 980px) and (hover: hover) {
  .front-page__explore-link:hover {
    cursor: pointer;
  }
  .front-page__explore-link:hover .front-page__explore-link-title {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  .front-page__explore-link:hover .front-page__explore-link-content {
    opacity: 1;
    visibility: visible;
  }
  .front-page__explore-link:hover .front-page__explore-link-content .title {
    top: 0;
  }
  .front-page__explore-link:hover .link:before {
    width: 0;
  }
}
@media screen and (max-width: 768px) {
  .front-page__explore-link {
    padding-inline: 0;
  }
  .front-page__explore-link-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    aspect-ratio: 380/200;
  }
}
@media screen and (min-width: 769px) {
  .front-page__explore-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 10px);
            flex: 0 0 calc(33.33% - 10px);
  }
  .front-page__explore-link-title {
    padding-top: 10px;
  }
}
@media screen and (min-width: 1201px) {
  .front-page__explore-links {
    gap: 15px 25px;
  }
  .front-page__explore-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 18.75px);
            flex: 0 0 calc(25% - 18.75px);
  }
}
/*# sourceMappingURL=block-home-explore.css.map */
