/************************************
 * 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 ***/
.block-multifocus__quote {
  position: relative;
}
.block-multifocus__quote--contenu {
  padding: clamp(25px, 1.29vw + 20.15px, 45px) clamp(25px, 1.29vw + 20.15px, 45px) clamp(25px, 1.62vw + 18.93px, 50px) clamp(25px, 1.62vw + 18.93px, 50px);
  border-radius: 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px 25px;
}
.block-multifocus__quote--contenu .picto-quote {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41px;
          flex: 0 0 41px;
  background: url("../../svg/quote.svg") no-repeat top left;
  background-size: 41px;
}
.block-multifocus__quote--content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.block-multifocus__quote--text {
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-dark);
  font-size: clamp(22px, 0.39vw + 20.54px, 28px);
}
.block-multifocus__quote--author {
  padding: 5px;
  background-color: #F5F5F7;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-multifocus__quote--author-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.block-multifocus__quote--author-left img {
  width: 100px;
  aspect-ratio: 1;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.block-multifocus__quote--author-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.block-multifocus__quote--auteur {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  color: var(--c-dark);
  font-size: 20px;
}
.block-multifocus__quote--job {
  color: #5D6066;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .block-multifocus__quote--author {
    margin-left: -15px;
  }
}
@media screen and (min-width: 769px) {
  .block-multifocus__quote--contenu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .block-multifocus__quote--content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .block-multifocus__quote--author {
    padding-right: 50px;
  }
}
/*# sourceMappingURL=block-quote.css.map */
