/************************************
 * 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 ***/
.find-your-path-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  -webkit-padding-before: clamp(45px, 3.88vw + 30.44px, 105px);
          padding-block-start: clamp(45px, 3.88vw + 30.44px, 105px);
  overflow: hidden;
  -webkit-padding-after: 240px;
          padding-block-end: 240px;
  margin-bottom: -140px;
  position: relative;
}
.find-your-path-full: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) {
  .find-your-path-full {
    margin-bottom: -140px;
    -webkit-padding-after: 240px;
            padding-block-end: 240px;
  }
}
@media screen and (min-width: 769px) {
  .find-your-path-full {
    margin-bottom: -380px;
    -webkit-padding-after: 400px;
            padding-block-end: 400px;
  }
}
.find-your-path-full > * {
  position: relative;
}
.find-your-path-full h2 {
  color: #fff !important;
  width: 100%;
  text-align: center;
  font-family: var(--f-special);
  letter-spacing: -0.8px;
}
.find-your-path-full h2 strong {
  color: var(--c-action);
}
@media screen and (min-width: 769px) {
  .find-your-path-full .find-your-path__body {
    background: url("../../svg/illustration-fyp.svg") no-repeat right 47% bottom;
    background-size: 300px;
  }
}
/*# sourceMappingURL=block-program-fyp.css.map */
