/************************************
 * 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__body {
  padding-top: clamp(30px, 1.29vw + 25.15px, 50px);
}
.find-your-path__steps {
  position: relative;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: clamp(0px, 4.85vw + -18.2px, 75px);
  overflow: hidden;
}
.find-your-path .fyp-form__step {
  position: relative;
  z-index: 1;
  padding: clamp(25px, 1.74vw + 11.67px, 45px) clamp(15px, 4.86vw + -43.33px, 50px);
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}
.find-your-path .fyp-form__step:not(.active) {
  z-index: -1;
}
.find-your-path .fyp-form__step.step-2 .fyp-form__choices, .find-your-path .fyp-form__step.step-3 .fyp-form__choices {
  position: relative;
  overflow: hidden;
}
.find-your-path .fyp-form__step.step-2 .fyp-form__choices .fyp-form__options, .find-your-path .fyp-form__step.step-3 .fyp-form__choices .fyp-form__options {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.find-your-path .fyp-form__step.step-2 .fyp-form__choices .fyp-form__options.visible, .find-your-path .fyp-form__step.step-3 .fyp-form__choices .fyp-form__options.visible {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.find-your-path .fyp-form__step.active {
  background-color: var(--c-secondary);
}
.find-your-path .fyp-form__step-title {
  color: var(--c-action);
  text-decoration: underline;
  text-underline-offset: 7px;
  font-weight: 600;
  font-size: clamp(20px, 0.96vw + 6.54px, 25px);
  padding-bottom: 40px;
  padding-inline: clamp(0px, 5.77vw + -80.77px, 30px);
}
.find-your-path .fyp-form__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.find-your-path .fyp-form__options li.selected button {
  text-shadow: 0 0 0.65px #fff, 0 0 0.65px #fff;
  background-color: rgba(0, 24, 65, 0.3);
}
.find-your-path .fyp-form__options li a {
  position: relative;
}
.find-your-path .fyp-form__options li a:after {
  content: "";
  position: absolute;
  right: 30%;
  top: 22px;
  width: 17px;
  height: 12px;
  background: url("../../svg/arrow-green.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: 0.33s ease;
  transition: 0.33s ease;
}
@media screen and (hover: hover) {
  .find-your-path .fyp-form__options li a:hover:after {
    right: 10%;
  }
}
.find-your-path .fyp-form__options li button, .find-your-path .fyp-form__options li a {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  display: block;
  width: 100%;
  text-align: left;
  padding-inline: clamp(10px, 5.29vw + -64.04px, 37.5px);
  padding-block: 13px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  border-radius: 10px;
  color: #fff;
  font-size: clamp(22px, 0.58vw + 13.92px, 25px);
  font-weight: 300;
  cursor: pointer;
}
@media screen and (hover: none) {
  .find-your-path .fyp-form__options li button, .find-your-path .fyp-form__options li a {
    background-color: rgba(0, 24, 65, 0.3);
  }
}
@media screen and (hover: hover) {
  .find-your-path .fyp-form__options li button:hover, .find-your-path .fyp-form__options li a:hover {
    text-shadow: 0 0 0.65px #fff, 0 0 0.65px #fff;
    background-color: rgba(0, 24, 65, 0.3);
  }
}
.find-your-path .fyp-form__options li button span, .find-your-path .fyp-form__options li a span {
  display: block;
}
.find-your-path .fyp-form__options li button span.second, .find-your-path .fyp-form__options li a span.second {
  font-size: 15px;
  font-weight: 400;
}
.find-your-path .fyp-form__clear {
  position: absolute;
  left: clamp(15px, 2.27vw + 6.5px, 50px);
  top: calc(100% - clamp(30px, 2.91vw + 19.08px, 75px));
  padding-inline: clamp(0px, 7.21vw + -100.96px, 37.5px);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .find-your-path__steps:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--c-secondary);
    border-radius: 30px;
    z-index: 1;
    -webkit-transition: 0.4s linear;
    transition: 0.4s linear;
  }
  .find-your-path__steps[data-step=step-1]:before {
    width: calc(((100% - clamp(0px, 4.85vw + -18.2px, 75px) * 2) / 3) + clamp(0px, 4.85vw + -18.2px, 75px));
  }
  .find-your-path__steps[data-step=step-2]:before {
    width: calc((((100% - clamp(0px, 4.85vw + -18.2px, 75px) * 2) / 3) * 2) + clamp(0px, 4.85vw + -18.2px, 75px));
  }
  .find-your-path__steps[data-step=step-3]:before {
    width: 100%;
  }
  .find-your-path__steps:after {
    position: absolute;
    content: "";
    border-radius: 30px;
    left: 1px;
    top: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 3px dashed rgba(0, 51, 160, 0.5);
    z-index: 0;
  }
  .find-your-path .fyp-form__step.step-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% + 2 * clamp(0px, 4.85vw + -18.2px, 75px)) / 3);
            flex: 0 0 calc((100% + 2 * clamp(0px, 4.85vw + -18.2px, 75px)) / 3);
    max-width: calc((100% + 2 * clamp(0px, 4.85vw + -18.2px, 75px)) / 3);
  }
  .find-your-path .fyp-form__step.step-1, .find-your-path .fyp-form__step.step-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(((100% + 2 * clamp(0px, 4.85vw + -18.2px, 75px)) / 3) - clamp(0px, 4.85vw + -18.2px, 75px));
            flex: 0 0 calc(((100% + 2 * clamp(0px, 4.85vw + -18.2px, 75px)) / 3) - clamp(0px, 4.85vw + -18.2px, 75px));
    max-width: calc(((100% + 2 * clamp(0px, 4.85vw + -18.2px, 75px)) / 3) - clamp(0px, 4.85vw + -18.2px, 75px));
  }
  .find-your-path .fyp-form__step.active {
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
  }
  .find-your-path .fyp-form__step:not(.active).step-2 {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .find-your-path .fyp-form__step:not(.active).step-3 {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  .find-your-path .fyp-form__step:not(:first-of-type):before {
    content: "";
    position: absolute;
    left: 0;
    top: 45px;
    height: calc(100% - 90px);
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 768px) {
  .find-your-path__steps {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 10px;
  }
  .find-your-path .fyp-form__options {
    padding-top: 5px;
  }
  .find-your-path .fyp-form__options li button, .find-your-path .fyp-form__options li a {
    padding-inline: 37.5px;
    font-size: 25px;
  }
  .find-your-path .fyp-form__options li a:after {
    right: 25px;
  }
  .find-your-path .fyp-form__step {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    border-radius: 10px;
  }
  .find-your-path .fyp-form__step:not(.current) {
    opacity: 0;
    visibility: hidden;
  }
  .find-your-path .fyp-form__step.step-2 {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .find-your-path .fyp-form__step.step-3 {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    -webkit-padding-after: clamp(60px, 1.62vw + 53.93px, 85px);
            padding-block-end: clamp(60px, 1.62vw + 53.93px, 85px);
  }
  .find-your-path .fyp-form__step-title {
    text-align: center;
    font-size: 22px;
  }
  .find-your-path .fyp-form__clear {
    padding-inline: 10px;
  }
}
/*# sourceMappingURL=block-fyp.css.map */
