/************************************
 * 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 ***/
.deep-dive {
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
  -webkit-padding-before: clamp(45px, 1.62vw + 38.93px, 70px);
          padding-block-start: clamp(45px, 1.62vw + 38.93px, 70px);
  overflow: hidden;
  -webkit-padding-after: 240px;
          padding-block-end: 240px;
  margin-bottom: -140px;
  position: relative;
}
.deep-dive:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  height: 120%;
  background: linear-gradient(309deg, #0033A0 9.03%, #00123A 47.25%);
  top: 0;
}
@media screen and (min-width: 601px) {
  .deep-dive {
    margin-bottom: -140px;
    -webkit-padding-after: 240px;
            padding-block-end: 240px;
  }
}
@media screen and (min-width: 769px) {
  .deep-dive {
    margin-bottom: -380px;
    -webkit-padding-after: 400px;
            padding-block-end: 400px;
  }
}
.deep-dive .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.deep-dive .slick-slide {
  height: inherit !important;
}
.deep-dive h2 {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  color: #E2F5FF !important;
  width: 100%;
  text-align: center;
}
.deep-dive__wrapper {
  padding-block: clamp(10px, 0.65vw + 7.57px, 20px) 50px;
}
.deep-dive__wrapper .slick-dots {
  margin-top: 45px;
}
.deep-dive__item {
  padding: clamp(7.5px, 0.32vw + 6.29px, 12.5px);
}
.deep-dive__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12.5px;
  height: 100%;
  padding: 15px;
  background-color: var(--c-dark);
  border-radius: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media screen and (hover: hover) {
  .deep-dive__item a:hover {
    background-color: var(--c-light);
  }
  .deep-dive__item a:hover .bottom {
    color: var(--c-dark);
  }
  .deep-dive__item a:hover .bottom:after {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
    background-image: url("../../svg/arrow-green.svg");
  }
}
.deep-dive__item a .top {
  aspect-ratio: 268/240;
  overflow: hidden;
}
.deep-dive__item a .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.deep-dive__item a .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  padding-inline: clamp(8px, 0.26vw + 7.03px, 12px) 20px;
  color: #fff;
  font-size: clamp(25px, 0.19vw + 24.27px, 28px);
  font-weight: 600;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.deep-dive__item a .bottom:after {
  position: relative;
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17px;
          flex: 0 0 17px;
  height: 30px;
  background-image: url("../../svg/arrow-yellow.svg");
  background-repeat: no-repeat;
  background-position: 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);
}
.deep-dive__item a .bottom span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 769px) {
  .deep-dive__wrapper {
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
  .deep-dive__item {
    max-width: 435px;
  }
  .deep-dive__item a .top {
    aspect-ratio: 378/240;
  }
}
/*# sourceMappingURL=block-deep-dive.css.map */
