/*
@font-face {
    font-family: 'Urbani';
    src: url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.eot');
    src: url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.woff') format('woff'),
         url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.ttf') format('truetype'),
         url('../fonts/Urbani/Ultralight-Italic/Urbani-UltraLightItalic.svg#Urbani-UltraLightItalic') format('svg');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
*/
/************************************
 * 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)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
These "retina group" variables are mappings for the naming and pairing of normal and retina sprites.

The list formatted variables are intended for mixins like `retina-sprite` and `retina-sprites`.
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `retina-sprite` mixin sets up rules and a media query for a sprite/retina sprite.
  It should be used with a "retina group" variable.

The media query is from CSS Tricks: https://css-tricks.com/snippets/css/retina-display-media-query/

$icon-home-group: ('icon-home', $icon-home, $icon-home-2x, );

.icon-home {
  @include retina-sprite($icon-home-group);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*
The `retina-sprites` mixin generates a CSS rule and media query for retina groups
  This yields the same output as CSS retina template but can be overridden in SCSS

@include retina-sprites($retina-groups);
*/
/**
 * SVG Sprites
 */
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.shape-blue {
  content: url("../svg/shape-blue.svg");
  position: absolute;
  left: 0;
  bottom: 17%;
  z-index: 2;
  width: clamp(345px, 5.32vw + 292.87px, 395px);
}
@media screen and (max-width: 980px) {
  .shape-blue {
    display: none;
  }
}

.shape-transparent {
  content: url("../svg/shape-transparent.svg");
  position: absolute;
  right: 0;
  bottom: -55px;
  z-index: 2;
  width: clamp(211px, 32.94vw + 87.46px, 720px);
}
@media screen and (max-width: 980px) {
  .shape-transparent {
    bottom: -15px;
  }
}

.shape-yellow {
  content: url("../svg/shape-yellow.svg");
  position: absolute;
  right: 0;
  bottom: -35px;
  z-index: 2;
  width: clamp(125px, 19.74vw + 50.97px, 430px);
}
@media screen and (max-width: 980px) {
  .shape-yellow {
    bottom: -15px;
  }
}

body.page-template-template-multifocus,
body.page-template-page-employer-brand,
body.single-applications {
  /************************************
   * 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)
   */
  /*** SPECIFIC TO CURRENT PROJECT ***/
}
body.page-template-template-multifocus #masthead,
body.page-template-page-employer-brand #masthead,
body.single-applications #masthead {
  background-color: transparent;
  z-index: 1;
}
body.page-template-template-multifocus #masthead #site-navigation,
body.page-template-page-employer-brand #masthead #site-navigation,
body.single-applications #masthead #site-navigation {
  position: absolute;
  margin-left: clamp(150px, 10.64vw + 45.74px, 250px);
}
body.page-template-template-multifocus #primary,
body.page-template-page-employer-brand #primary,
body.single-applications #primary {
  position: relative;
  margin-top: -167px;
  z-index: 0;
}
@media screen and (max-width: 980px) {
  body.page-template-template-multifocus #primary,
  body.page-template-page-employer-brand #primary,
  body.single-applications #primary {
    margin-top: -122px;
  }
}
body.page-template-template-multifocus .header,
body.page-template-page-employer-brand .header,
body.single-applications .header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  height: 572px;
}
@media screen and (max-width: 980px) {
  body.page-template-template-multifocus .header,
  body.page-template-page-employer-brand .header,
  body.single-applications .header {
    height: 364px;
    margin-bottom: 30px;
  }
}
body.page-template-template-multifocus .header .page-image-header,
body.page-template-page-employer-brand .header .page-image-header,
body.single-applications .header .page-image-header {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: black;
}
body.page-template-template-multifocus .header__content,
body.page-template-page-employer-brand .header__content,
body.single-applications .header__content {
  position: absolute;
  bottom: 0;
  margin-bottom: clamp(50px, 0.97vw + 46.36px, 65px);
  margin-inline: clamp(120px, 7.45vw + 47.02px, 190px) clamp(175px, 37.77vw + -195.11px, 530px);
  z-index: 2;
}
@media screen and (max-width: 980px) {
  body.page-template-template-multifocus .header__content,
  body.page-template-page-employer-brand .header__content,
  body.single-applications .header__content {
    margin-inline: clamp(20px, 16.53vw + -41.98px, 120px);
  }
}
body.page-template-template-multifocus .header__content .page-subtitle,
body.page-template-page-employer-brand .header__content .page-subtitle,
body.single-applications .header__content .page-subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(18px, 0.13vw + 17.51px, 20px);
  color: var(--c-main);
  text-transform: uppercase;
  padding-left: 5px;
}
body.page-template-template-multifocus .header__content h1,
body.page-template-page-employer-brand .header__content h1,
body.single-applications .header__content h1 {
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}
body.page-template-template-multifocus .header__content a:not(.category),
body.page-template-page-employer-brand .header__content a:not(.category),
body.single-applications .header__content a:not(.category) {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(11px, 0.13vw + 10.51px, 13px);
  letter-spacing: 2.6px;
  text-decoration: none;
}
body.page-template-template-multifocus .header__content a:not(.category) .arrow,
body.page-template-page-employer-brand .header__content a:not(.category) .arrow,
body.single-applications .header__content a:not(.category) .arrow {
  content: url("../../svg/arrow-yellow.svg");
  margin-left: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
body.page-template-template-multifocus .header__content a:not(.category):hover, body.page-template-template-multifocus .header__content a:not(.category):focus,
body.page-template-page-employer-brand .header__content a:not(.category):hover,
body.page-template-page-employer-brand .header__content a:not(.category):focus,
body.single-applications .header__content a:not(.category):hover,
body.single-applications .header__content a:not(.category):focus {
  color: var(--c-main);
}
body.page-template-template-multifocus .header__content a:not(.category):hover .arrow, body.page-template-template-multifocus .header__content a:not(.category):focus .arrow,
body.page-template-page-employer-brand .header__content a:not(.category):hover .arrow,
body.page-template-page-employer-brand .header__content a:not(.category):focus .arrow,
body.single-applications .header__content a:not(.category):hover .arrow,
body.single-applications .header__content a:not(.category):focus .arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.block-multifocus {
  position: relative;
  padding-block: clamp(20px, 1.94vw + 12.72px, 50px);
}
.block-multifocus > .container {
  width: 100%;
  max-width: 1188px;
  padding-inline: 50px;
  margin-inline: auto;
}
@media screen and (max-width: 980px) {
  .block-multifocus > .container {
    padding-inline: clamp(10px, 6.61vw + -14.79px, 50px);
  }
}

.video__container {
  aspect-ratio: 16/9;
}
.video__container > * {
  display: block;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=multifocus.css.map */
