/*
@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
 */
:root {
  --c-bloc-number-number: var(--c-main);
  --c-bloc-number-text: var(--c-secondary);
}

.block-multifocus__chiffres--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.block-multifocus__chiffres--item {
  margin-top: 1rem;
  -ms-flex-preferred-size: calc(50% - 15px);
      flex-basis: calc(50% - 15px);
}
@media screen and (min-width: 601px) {
  .block-multifocus__chiffres--item {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .block-multifocus__chiffres--item {
    -ms-flex-preferred-size: calc(33.3333% - 20px);
        flex-basis: calc(33.3333% - 20px);
    margin-top: 3rem;
  }
}
@media screen and (min-width: 981px) {
  .block-multifocus__chiffres--item {
    -ms-flex-preferred-size: calc(25% - 22.5px);
        flex-basis: calc(25% - 22.5px);
  }
}
.block-multifocus__chiffres--item-content {
  text-align: center;
}
.block-multifocus__chiffres .chiffre--value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: bolder;
  color: var(--c-bloc-number-number);
  text-transform: uppercase;
}
.block-multifocus__chiffres .chiffre--value .count-number {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(50px, 1.94vw + 42.72px, 80px);
}
.block-multifocus__chiffres .chiffre--value .count-number-symbol {
  font-size: clamp(24px, 2.59vw + 14.29px, 64px);
}
.block-multifocus__chiffres .chiffre--lgd {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 0.13vw + 13.51px, 16px);
  color: var(--c-bloc-number-text);
}
/*# sourceMappingURL=block-numbers.css.map */
