/************************************
 * 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__resources--content {
  border-radius: 10px;
  background: #F9F9F9;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
  padding-block: 40px clamp(0px, 2.59vw + -9.71px, 40px);
  padding-inline: clamp(15px, 3.56vw + 1.65px, 70px);
}
.block-multifocus__resources--content > h3, .block-multifocus__resources--content > .h3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 15px;
  font-size: clamp(25px, 0.32vw + 23.79px, 30px);
  line-height: 40px;
  min-height: 40px;
}
.block-multifocus__resources--content > h3:before, .block-multifocus__resources--content > .h3:before {
  content: "";
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
}
.block-multifocus__resources--content > h3 {
  -webkit-margin-after: 0.75em;
          margin-block-end: 0.75em;
}
.block-multifocus__resources--content > h3:before {
  background-image: url("../../svg/resources.svg");
}
.block-multifocus__resources--items {
  padding-block: 5px 0;
}
.block-multifocus__resources .resources__link {
  background-color: var(--c-secondary);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  gap: clamp(20px, 0.32vw + 18.79px, 25px);
  margin-bottom: clamp(20px, 0.32vw + 18.79px, 25px);
  padding-inline: 35px 27px;
  padding-block: clamp(20px, 0.84vw + 16.84px, 33px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.block-multifocus__resources .resources__link:after {
  content: "";
  position: relative;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
  background: url("../../svg/arrow-green.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: 0.4s cubic-bezier(0.56, 0.96, 0.3, 1.55);
  transition: 0.4s cubic-bezier(0.56, 0.96, 0.3, 1.55);
}
.block-multifocus__resources .resources__link-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (hover: hover) {
  .block-multifocus__resources .resources__link:hover {
    background-color: var(--c-dark);
  }
  .block-multifocus__resources .resources__link:hover:after {
    -webkit-transform: translateX(7.5px);
            transform: translateX(7.5px);
  }
  .block-multifocus__resources .resources__link:hover .resources__title {
    color: var(--c-action);
  }
}
.block-multifocus__resources .resources__title {
  color: #fff;
  font-size: clamp(25px, 0.19vw + 24.27px, 28px);
  padding-bottom: 7px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.block-multifocus__resources .resources__description {
  color: #fff;
  font-size: clamp(18px, 0.13vw + 17.51px, 20px);
}
@media screen and (max-width: 768px) {
  .block-multifocus__resources .resources__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-inline: 35px;
  }
  .block-multifocus__resources .resources__link:after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
            flex: 0 0 18px;
    width: 26px;
    background-size: contain;
  }
  .block-multifocus__resources .resources__link-inner {
    width: 100%;
  }
  .block-multifocus__resources .resources__title {
    padding-bottom: 12px;
  }
}
/*# sourceMappingURL=block-resources.css.map */
