/************************************
 * 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 ***/
.breadcrumbs {
  padding-block: clamp(7.5px, 0.49vw + 5.68px, 15px);
  max-width: 100%;
  overflow-x: hidden;
  white-space: nowrap;
}
.breadcrumbs .inner {
  white-space: nowrap;
  overflow-x: auto;
}
.breadcrumbs a:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 2px;
  height: 1px;
  background-color: #fff;
  width: 100%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.breadcrumbs a, .breadcrumbs span {
  position: relative;
  display: inline-block;
  font-size: clamp(14px, 0.13vw + 13.51px, 16px);
  color: #ffffff;
}
.breadcrumbs a:hover {
  color: var(--c-action);
}
.breadcrumbs a:hover:after {
  width: 0;
}
.breadcrumbs .sep {
  vertical-align: middle;
  width: 30px;
  height: clamp(14px, 0.13vw + 13.51px, 16px);
  background: url("../../svg/sep.svg") no-repeat center;
  background-size: 6px;
}
@media screen and (min-width: 769px) {
  .breadcrumbs {
    padding-inline: var(--g-gutter);
  }
}

.entry-header {
  overflow: hidden;
  position: relative;
  mask-position: left bottom;
  -webkit-mask-position: left bottom;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background: linear-gradient(67deg, #0033A0 18.76%, #0050FE 85.33%);
  padding-block: 10px 15px;
}
.entry-header.stars:after {
  position: absolute;
  content: "";
  right: 31%;
  top: 50%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: url("../../svg/stars.svg") no-repeat center;
  background-size: contain;
  width: 33px;
  height: 55px;
}
.entry-header h1 {
  color: #fff;
}
.entry-header .description {
  font-size: clamp(22px, 0.69vw + 16.67px, 30px);
  color: #fff;
  max-width: 885px;
  -webkit-padding-before: clamp(17px, 0.39vw + 15.54px, 23px);
          padding-block-start: clamp(17px, 0.39vw + 15.54px, 23px);
  -webkit-padding-after: clamp(35px, -0.65vw + 37.43px, 25px);
          padding-block-end: clamp(35px, -0.65vw + 37.43px, 25px);
}
.entry-header > * {
  position: relative;
}
@media screen and (max-width: 768px) {
  .entry-header:not(.has-image) {
    mask-image: url("../../svg/header-mask-mobile.svg");
    -webkit-mask-image: url("../../svg/header-mask-mobile.svg");
  }
  .entry-header.has-image {
    margin-bottom: -50px;
    background-image: url("../../svg/header-mask.svg");
    background-position: bottom 50px left;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .entry-header.has-image:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 70%;
    width: 100%;
    background: linear-gradient(67deg, #0033A0 18.76%, #0050FE 85.33%);
  }
  .entry-header.stars:after {
    right: 20px;
    top: 75px;
    width: 26px;
    height: 41px;
  }
}
@media screen and (min-width: 769px) {
  .entry-header h1 {
    max-width: 90%;
  }
}
@media screen and (min-width: 1201px) {
  .entry-header {
    -webkit-padding-before: 130px;
            padding-block-start: 130px;
  }
}
@media screen and (min-width: 769px) {
  .entry-header {
    background: linear-gradient(-278deg, #0033A0 11.76%, #0050FE 87.76%);
    mask-image: url("../../svg/header-mask.svg");
    -webkit-mask-image: url("../../svg/header-mask.svg");
  }
}
/*# sourceMappingURL=block-header.css.map */
