/************************************
 * 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__header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mask-image: url("../../svg/header-home-shape.svg");
  -webkit-mask-image: url("../../svg/header-home-shape.svg");
  mask-position: right 30px bottom;
  -webkit-mask-position: right bottom;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-padding-after: clamp(110px, 5.83vw + 88.16px, 200px);
          padding-block-end: clamp(110px, 5.83vw + 88.16px, 200px);
}
.front-page__header:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.front-page__header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.front-page__header-content h1 {
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: var(--f-title);
  font-variation-settings: "wdth" 100, "wght" 200 !important;
  font-size: clamp(50px, 3.24vw + 37.86px, 100px);
  letter-spacing: 0;
}
.front-page__header-content h1 strong, .front-page__header-content h1 b {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  word-spacing: -10px;
}
.front-page__header-content .subtitle {
  font-size: clamp(25px, 0.32vw + 23.79px, 30px);
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .front-page__header {
    -webkit-padding-before: 42px;
            padding-block-start: 42px;
    background-position: left 70% top;
  }
  .front-page__header h1 {
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 1201px) {
  .front-page__header {
    -webkit-padding-before: 140px;
            padding-block-start: 140px;
  }
}
/*# sourceMappingURL=block-home-header.css.map */
