/************************************
 * 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 ***/
button,
input,
optgroup,
select,
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input {
  overflow: visible;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

textarea, select, [type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=date],
[type=time],
[type=number] {
  background-color: #fff;
  border: 1px solid var(--c-input-border);
  border-radius: 5px;
  font-family: var(--f-default);
  color: var(--c-default);
  -webkit-appearance: none;
  outline: none;
}
textarea:focus, select:focus, [type=text]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=email]:focus,
[type=password]:focus,
[type=date]:focus,
[type=time]:focus,
[type=number]:focus {
  border-color: var(--c-input-focus-border);
}

[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=date],
[type=time],
[type=number] {
  height: var(--input-height);
  width: 100%;
  max-width: 100%;
  padding: 0 var(--input-padding-inline);
}

[type=file] {
  width: 100%;
  max-width: 500px;
}

input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  display: none;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/*fieldset {
    border: 1px solid var(--c-input-border);
    margin: 0 2px;
}*/
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table;
  max-width: 100%;
  white-space: normal;
  color: inherit;
  -webkit-margin-start: -5px;
          margin-inline-start: -5px;
  padding: 0 5px;
}

label {
  display: block;
  -webkit-margin-after: 0.4em;
          margin-block-end: 0.4em;
}

select {
  width: 100%;
  height: var(--input-height);
  padding: 0 20px 0 var(--input-padding-inline);
  background-image: url("../../svg/select.svg");
  background-repeat: no-repeat;
  background-position: right 6px center;
}

select::-ms-expand {
  display: none;
}

optgroup {
  font-weight: bold;
}

textarea {
  overflow: auto;
  padding: 0.5em var(--input-padding-inline);
  width: 100%;
  max-width: 100%;
}

.form-item {
  margin: 1.5em 0;
}
.form-radios .form-item.form-type-checkbox, .form-radios .form-item.form-type-radio, .form-checkboxes .form-item.form-type-checkbox, .form-checkboxes .form-item.form-type-radio {
  position: relative;
  display: inline-block;
  -webkit-margin-end: 1.5em;
          margin-inline-end: 1.5em;
}
.form-radios .form-item.form-type-checkbox:last-child, .form-radios .form-item.form-type-radio:last-child, .form-checkboxes .form-item.form-type-checkbox:last-child, .form-checkboxes .form-item.form-type-radio:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

.form-type-radios > label {
  display: inline-block;
  vertical-align: top;
  -webkit-margin-end: 2em;
          margin-inline-end: 2em;
}

.form-type-checkbox,
.form-type-radio {
  position: relative;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.form-type-checkbox label,
.form-type-radio label {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.form-type-checkbox input,
.form-type-radio input {
  position: relative;
  inset-block-start: 2px;
}

.form-type-submit {
  text-align: center;
}

.front-page__guide {
  position: relative;
  -webkit-margin-after: clamp(60px, 0.65vw + 57.57px, 70px);
          margin-block-end: clamp(60px, 0.65vw + 57.57px, 70px);
  -webkit-margin-before: clamp(60px, 0.65vw + 57.57px, 70px);
          margin-block-start: clamp(60px, 0.65vw + 57.57px, 70px);
  -webkit-margin-before: 10px !important;
          margin-block-start: 10px !important;
}
.front-page__guide h2 {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  -webkit-margin-after: 0.6em;
          margin-block-end: 0.6em;
  font-size: clamp(30px, 1.74vw + 16.67px, 50px);
  line-height: 1.1;
}
.front-page__guide h2 {
  color: var(--c-secondary) !important;
  font-size: clamp(25px, 0.32vw + 23.79px, 30px) !important;
  font-family: var(--f-title) !important;
  font-weight: 300 !important;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.front-page__guide h2 strong {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
}
.front-page__guide-block {
  --input-height: 65px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
  background: var(--c-secondary);
  color: #fff;
  border-radius: 10px;
  padding-block: clamp(25px, 1.62vw + 18.93px, 50px);
  padding-inline: clamp(15px, 1.62vw + 8.93px, 40px);
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.front-page__guide-block .title {
  font-size: clamp(25px, 0.32vw + 23.79px, 30px);
  max-width: 390px;
  margin-inline: auto;
}
.front-page__guide-block strong {
  font-weight: 900;
}
.front-page__guide-block.gradient {
  background: linear-gradient(120deg, #0033A0 60.2%, #0050FE 97.61%);
}
.front-page__guide-block.non-member {
  background-color: var(--c-dark);
  position: relative;
}
.front-page__guide-block.non-member:before {
  content: "";
  position: absolute;
  left: clamp(15px, 1.62vw + 8.93px, 40px);
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(40px, 1.29vw + 35.15px, 60px);
  height: clamp(40px, 1.29vw + 35.15px, 60px);
  aspect-ratio: 1;
  background: url("../../svg/speaker.svg") no-repeat center;
  background-size: contain;
}
.front-page__guide-search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  background: var(--c-quaternary);
}
.front-page__guide-search form.job-search {
  width: 100%;
  position: relative;
}
.front-page__guide-search form.job-search:after {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 25px;
  height: 100%;
  background: url("../../svg/search.svg") no-repeat center;
  background-size: contain;
}
.front-page__guide-search form.job-search input[type=search] {
  border-radius: 45px;
  border: none;
  padding-left: 80px;
}
.front-page__guide-search form.job-search ::-webkit-input-placeholder {
  font-size: 22px;
  opacity: 1;
  color: var(--c-default);
}
.front-page__guide-search form.job-search ::-moz-placeholder {
  font-size: 22px;
  opacity: 1;
  color: var(--c-default);
}
.front-page__guide-search form.job-search :-ms-input-placeholder {
  font-size: 22px;
  opacity: 1;
  color: var(--c-default);
}
.front-page__guide-search form.job-search ::-ms-input-placeholder {
  font-size: 22px;
  opacity: 1;
  color: var(--c-default);
}
.front-page__guide-search form.job-search ::placeholder {
  font-size: 22px;
  opacity: 1;
  color: var(--c-default);
}
.front-page__guide-top {
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  padding-block: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.front-page__guide-fyp {
  padding-inline: clamp(15px, 0.97vw + 11.36px, 30px);
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 5px 10px 25px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 5px 10px 25px 0px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.front-page__guide-fyp-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: clamp(25px, 1.94vw + 17.72px, 55px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.front-page__guide-fyp-inner .title {
  color: var(--c-secondary);
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  font-size: clamp(25px, 0.32vw + 23.79px, 30px);
}
.front-page__guide-fyp-inner .subtitle {
  font-size: clamp(18px, 0.13vw + 17.51px, 20px);
  margin-bottom: clamp(15px, 0.97vw + 11.36px, 30px);
}
.front-page__guide-fyp-inner button {
  min-width: 270px;
}
.front-page__guide-fyp-illustration {
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: contain;
}
.front-page__guide-fyp-illustration.illustration-left {
  background-position-x: right;
}
.front-page__guide-fyp-illustration.illustration-right {
  background-position-x: left;
}
@media screen and (max-width: 768px) {
  .front-page__guide h2 {
    text-align: center;
    width: 100%;
  }
  .front-page__guide-fyp {
    padding-bottom: 25px;
  }
  .front-page__guide-fyp-illustration.illustration-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 125px;
            flex: 0 0 125px;
    background-position: center;
  }
}
@media screen and (min-width: 769px) {
  .front-page__guide-block:not(.front-page__guide-search) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .front-page__guide-fyp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .front-page__guide-fyp-inner {
    background: url("../../svg/arrow-drawing-alt.svg") no-repeat left clamp(0px, 5.77vw + -80.77px, 30px) bottom calc(clamp(25px, 1.94vw + 17.72px, 55px) + 4%);
    background-size: 15%;
  }
  .front-page__guide-fyp-illustration {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
@media screen and (min-width: 1201px) {
  .front-page__guide-search {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .front-page__guide-fyp-illustration {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-size: auto calc(100% - 25px);
  }
  .front-page__guide-fyp-illustration.illustration-left {
    background-position-y: 10px;
    background-size: auto calc(100% - 25px);
  }
  .front-page__guide-fyp-illustration.illustration-right {
    background-size: auto calc(100% - 70px);
  }
}
/*# sourceMappingURL=block-home-guide.css.map */
