/************************************
 * 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 ***/
.single-program .archive__header {
  --c-button-primary__color: #001841;
}
.single-program .archive__header-right-image {
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: auto;
  border-radius: 999px 0 0 999px;
}
.single-program .archive__header-left a.btn {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .single-program .archive__header-bottom {
    padding-bottom: 40px !important;
  }
  .single-program .archive__header-right {
    height: clamp(230px, 22.9vw + 144.12px, 320px);
  }
  .single-program .archive__header-right-image {
    height: 100%;
    max-height: 100%;
    aspect-ratio: 280/230;
    width: auto;
    max-width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .single-program .archive__header-left {
    padding-bottom: clamp(0px, 6.94vw + -53.33px, 80px);
  }
  .single-program .archive__header-left .wrap > * {
    max-width: 65%;
  }
  .single-program .archive__header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
  }
  .single-program .archive__header-right-image {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-left: auto;
    width: auto;
    max-width: 100%;
    aspect-ratio: 1.15;
    max-height: 100%;
  }
}
.single-program .archive__filters {
  padding-block: clamp(35px, -0.78vw + 37.91px, 23px) clamp(15px, 0.52vw + 13.06px, 23px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px clamp(15px, 0.65vw + 12.57px, 25px);
}
.single-program .archive__filters .filter-title {
  color: #191414;
  font-size: clamp(20px, 0.13vw + 19.51px, 22px);
  font-weight: 600;
}
.single-program .archive__filters .filters-block {
  padding-block: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px clamp(15px, 0vw + 15px, 15px);
}
.single-program .archive__filters-checkboxes {
  display: none;
}
.single-program .archive__filters-checkboxes .filter-title {
  padding-left: clamp(0px, 0.87vw + -6.67px, 10px);
}
.single-program .archive__filters-checkboxes .checkbox-block {
  position: relative;
}
.single-program .archive__filters-checkboxes .checkbox-block.open .checkbox-block__values {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.single-program .archive__filters-checkboxes .checkbox-block__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--select-height);
  padding-inline: 13px clamp(35px, 3.88vw + 20.44px, 95px);
  border-radius: 8px;
  background-color: #FFF;
  background-image: url("../../svg/select.svg");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 11px;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
  color: #5D6066;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.single-program .archive__filters-checkboxes .checkbox-block__values {
  position: absolute;
  left: 0;
  top: calc(var(--select-height) + 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 400px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 150%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row, .single-program .archive__filters-checkboxes .checkbox-block__values .empty-label {
  padding: 10px 15px;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .empty-label {
  font-size: 14px;
  -webkit-box-shadow: inset 0px 3px 15px rgba(193, 193, 193, 0.6);
          box-shadow: inset 0px 3px 15px rgba(193, 193, 193, 0.6);
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
  background: #f6f6f6;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row.disabled .checkbox-row__name, .single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row.disabled .checkbox-row__ui span {
  opacity: 0.5;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row__name {
  font-size: 18px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row__name small {
  display: block;
  font-size: 80%;
  opacity: 0.85;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row:not(.disabled) {
  cursor: pointer;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row:not(.disabled) * {
  pointer-events: none;
}
@media screen and (hover: hover) {
  .single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row:not(.disabled):hover .checkbox-row__name {
    color: var(--c-action);
  }
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row:not(:last-of-type) {
  border-bottom: 1px solid var(--c-border);
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row:last-of-type {
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.08);
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row__ui {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row__ui .checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid var(--c-border);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row__ui .checkbox:after {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--c-secondary);
  z-index: 1;
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row__ui .checkbox input[type=checkbox] {
  position: absolute;
  margin: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row.selected .checkbox {
  border-color: var(--c-secondary);
}
.single-program .archive__filters-checkboxes .checkbox-block__values .checkbox-row.selected .checkbox:after {
  opacity: 1;
  visibility: visible;
}
.single-program .archive__filters #jobs-all-filters {
  position: fixed;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  top: 0;
  height: 100dvh;
  width: 100dvw;
  max-width: 540px;
  padding-block: 65px 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0s, z-index 0s, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0s, z-index 0s, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0s, z-index 0s, transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0s, z-index 0s, transform 0.5s ease, -webkit-transform 0.5s ease;
  background: #F5F5F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(20px, 1.62vw + 13.93px, 45px);
}
.single-program .archive__filters #jobs-all-filters.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.single-program .archive__filters #jobs-all-filters .close {
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: var(--c-default);
  background-image: url("../../svg/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 50%;
  aspect-ratio: 1;
  z-index: 1;
  right: 17px;
}
.single-program .archive__filters #jobs-all-filters .close:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  background: url("../../svg/closing.svg") no-repeat center;
  background-size: contain;
}
.single-program .archive__filters #jobs-all-filters .close:hover {
  background-color: #000;
}
.single-program .archive__filters #jobs-all-filters .close:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.single-program .archive__filters #jobs-all-filters .filters-title {
  display: none;
  width: 100%;
  max-width: calc(100% - clamp(20px, 2.27vw + 11.5px, 55px));
  margin-inline: auto;
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  color: var(--c-dark);
  font-size: clamp(18px, 0.45vw + 16.3px, 25px);
  padding-left: 65px;
  background: url("../../svg/filters.svg") no-repeat left 25px center;
  background-size: 25px;
}
@media screen and (min-width: 769px) {
  .single-program .archive__filters #jobs-all-filters .filters-title.desktop {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .single-program .archive__filters #jobs-all-filters .filters-title.mobile {
    display: block;
  }
}
.single-program .archive__filters #jobs-all-filters .filters {
  width: 100%;
  max-width: calc(100% - clamp(20px, 2.27vw + 11.5px, 55px));
  margin-inline: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  scrollbar-width: thin; /* Pour Firefox */
  scrollbar-color: var(--c-input-border) transparent; /* Pour Firefox */
}
.single-program .archive__filters #jobs-all-filters .filters [type=checkbox] {
  position: absolute;
  margin: 0;
  opacity: 0;
}
.single-program .archive__filters #jobs-all-filters .filters [type=checkbox] + label {
  position: relative !important;
  display: inline-block;
  min-height: 18px;
  padding: 0 0 0 28px;
  cursor: pointer;
  z-index: 1;
  font-weight: 400;
  line-height: 18px;
}
.single-program .archive__filters #jobs-all-filters .filters [type=checkbox] + label:before {
  content: "";
  display: block;
  left: 0;
  top: -1px;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--c-border);
  background: #fff;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}
.single-program .archive__filters #jobs-all-filters .filters [type=checkbox] + label:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  background: var(--c-secondary);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters #jobs-all-filters .filters [type=checkbox]:checked + label:after {
  opacity: 1;
}
.single-program .archive__filters #jobs-all-filters .filters [type=checkbox]:focus {
  outline: none;
}
.single-program .archive__filters #jobs-all-filters .filters::-webkit-scrollbar {
  width: 8px;
}
.single-program .archive__filters #jobs-all-filters .filters::-webkit-scrollbar-thumb {
  background-color: var(--c-input-border);
  border-radius: 10px;
}
.single-program .archive__filters #jobs-all-filters .filters::-webkit-scrollbar-track {
  background-color: transparent;
}
.single-program .archive__filters #jobs-all-filters .filters::-webkit-scrollbar-button {
  display: none;
}
.single-program .archive__filters #jobs-all-filters .filters::-webkit-scrollbar-button:single-button:vertical:increment, .single-program .archive__filters #jobs-all-filters .filters ::-webkit-scrollbar-button:single-button:vertical:decrement {
  display: none;
  width: 0;
  height: 0;
  color: transparent;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter {
  padding-inline: 25px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__name {
  cursor: pointer;
  padding-block: 10px;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__name:after {
  position: relative;
  content: "";
  right: 0;
  top: 0;
  width: 18px;
  height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  background: url("../../svg/select.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
  overflow: hidden;
  padding-block: 5px;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row {
  padding-block: 5px;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row * {
  pointer-events: none;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row label {
  -webkit-margin-after: 0;
          margin-block-end: 0;
  font-size: clamp(16px, 0.06vw + 15.76px, 17px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row label small {
  display: block;
  font-size: 80%;
  opacity: 0.85;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row.disabled {
  opacity: 0.5;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row:not(.disabled) {
  cursor: pointer;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row.selected .checkbox {
  border-color: var(--c-secondary);
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row.selected .checkbox:after {
  opacity: 1;
  visibility: visible;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid var(--c-border);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox:after {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--c-secondary);
  z-index: 1;
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox input[type=checkbox] {
  position: absolute;
  margin: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter) {
  padding-block: 8px;
  border-radius: 8px;
  background-color: #F9F9F9;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter):hover {
  background-color: #FFFFFF;
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter):hover .cb-filter__name {
  color: var(--c-action);
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter).open .cb-filter__name:after {
  -webkit-transform: rotate(0.5turn);
          transform: rotate(0.5turn);
}
.single-program .archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter) .cb-filter__checkboxes:not(.open) {
  display: none;
}
.single-program .archive__filters #jobs-all-filters .filters-apply {
  background: #fff;
  padding-block: clamp(25px, 0.97vw + 21.36px, 40px);
  padding-inline: clamp(20px, 2.27vw + 11.5px, 55px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-program .archive__filters #jobs-all-filters .filters-apply > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.single-program .archive__filters #jobs-all-filters .filters-apply .apply button {
  position: relative;
  width: 100%;
  max-width: 220px;
  overflow: hidden;
}
.single-program .archive__filters #jobs-all-filters .filters-apply .apply button:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  background-color: var(--c-button-primary__background);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters #jobs-all-filters .filters-apply .apply button:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  aspect-ratio: 1;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  border-radius: 50%;
  border: 3px solid #FFF;
  border-bottom-color: transparent;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-program .archive__filters #jobs-all-filters .filters-apply .apply button.loading {
  overflow: hidden;
}
.single-program .archive__filters #jobs-all-filters .filters-apply .apply button.loading:before {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.single-program .archive__filters #jobs-all-filters .filters-apply .apply button.loading:after {
  opacity: 1;
  z-index: 1;
  visibility: visible;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}
.single-program .archive__filters #jobs-all-filters .filters-apply .delete {
  text-align: right;
}
.single-program .archive__filters #jobs-all-filters .filters-apply .delete button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  position: relative;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
  padding-inline: 0;
  color: var(--c-dark);
}
.single-program .archive__filters #jobs-all-filters .filters-apply .delete button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--c-link);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 0;
  height: 1px;
}
@media screen and (hover: hover) {
  .single-program .archive__filters #jobs-all-filters .filters-apply .delete button:hover:before {
    width: 100%;
  }
}
@media screen and (hover: none) {
  .single-program .archive__filters #jobs-all-filters .filters-apply .delete button:before {
    width: 100%;
  }
}
.single-program .archive__filters #jobs-all-filters .filters-apply .delete button:before {
  width: 100%;
}
@media screen and (hover: hover) {
  .single-program .archive__filters #jobs-all-filters .filters-apply .delete button:hover:before {
    width: 0;
  }
}
.single-program .archive__filters .more-filters {
  cursor: pointer;
  margin-left: 10px;
}
.single-program .archive__filters-search {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.single-program .archive__filters-search .filter-title {
  padding-left: clamp(25px, 1.3vw + 15px, 40px);
}
.single-program .archive__filters-search input {
  width: 100%;
  height: var(--select-height);
  border-radius: 45px;
  border: 1px solid #C1C1C1;
  padding: 10px 15px 10px clamp(60px, 1.29vw + 55.15px, 80px);
  background-color: #FFF;
  background-image: url("../../svg/search-filter.svg");
  background-position: left clamp(27px, 1.04vw + 23.12px, 43px) center;
  background-size: 25px;
  background-repeat: no-repeat;
}
.single-program .archive__available-terms {
  position: relative;
}
.single-program .archive__available-terms .loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--c-page-bg);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.single-program .archive__available-terms.loading .loader {
  z-index: 1;
  opacity: 0.85;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  .single-program .archive__filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .single-program .archive__filters-search {
    max-width: 415px;
  }
  .single-program .archive__filters-see-filters {
    display: none;
  }
  .single-program .archive__filters-checkboxes {
    display: block;
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.single-program .program__overview {
  padding-block: clamp(15px, 0.65vw + 12.57px, 25px);
  font-size: clamp(18px, 0.13vw + 17.51px, 20px);
}
.single-program .program__overview h2:not(.archive__term-title):not(.find-your-path-full__title) {
  -webkit-margin-after: 0.6em;
          margin-block-end: 0.6em;
  font-size: clamp(30px, 1.74vw + 16.67px, 50px);
  font-family: var(--f-title);
  font-variation-settings: "wdth" 100, "wght" 300;
  line-height: 1.1;
}
.single-program .program__overview h2:not(.archive__term-title):not(.find-your-path-full__title) strong {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
}
.single-program .program__overview * + p {
  -webkit-margin-before: 1.3em;
          margin-block-start: 1.3em;
  line-height: 1.23;
}
.single-program .program__overview .view-more {
  margin-block: clamp(15px, 1.29vw + 10.15px, 35px);
}
.single-program .program__overview .content {
  -webkit-padding-after: 15px;
          padding-block-end: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.single-program .program__overview .content strong {
  color: var(--c-dark);
  font-size: clamp(20px, 0.32vw + 18.79px, 25px);
  line-height: 1.25;
}
.single-program .program__overview .content p:not(:first-of-type) {
  max-width: 560px;
}
.single-program .program__overview .content .wp-block-list {
  padding-block: clamp(20px, 0.32vw + 18.79px, 25px);
  list-style: none;
}
.single-program .program__overview .content .wp-block-list li {
  position: relative;
  padding-left: 28px;
  padding-block: 10px;
  line-height: 1.24;
}
.single-program .program__overview .content .wp-block-list li:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  width: 8px;
  height: 8px;
  background-color: var(--c-quaternary);
  border-radius: 50%;
}
.single-program .program__overview .content .wp-block-list li strong {
  color: var(--c-secondary);
  font-weight: 700;
}
.single-program .program__overview-left .wp-block-image {
  text-align: center;
  -webkit-padding-before: clamp(10px, 0.43vw + 6.67px, 15px);
          padding-block-start: clamp(10px, 0.43vw + 6.67px, 15px);
}
.single-program .program__overview img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-program .program__overview-right {
  max-width: 700px;
  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;
  gap: clamp(55px, 4.77vw + 18.33px, 110px);
}
.single-program .program__overview .wp-block-image {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .single-program .program__overview-left {
    border-radius: 10px;
    background: #F9F9F9;
    padding: clamp(0px, 6.08vw + -46.67px, 70px) clamp(0px, 10.42vw + -80px, 120px);
  }
}
.single-program section {
  position: relative;
  -webkit-margin-after: clamp(50px, 0.97vw + 46.36px, 65px);
          margin-block-end: clamp(50px, 0.97vw + 46.36px, 65px);
  -webkit-margin-before: clamp(50px, 0.97vw + 46.36px, 65px);
          margin-block-start: clamp(50px, 0.97vw + 46.36px, 65px);
}
.single-program section:first-of-type {
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
}
.single-program h2:not(.archive__term-title):not(.find-your-path-full__title) {
  -webkit-margin-after: 0.6em;
          margin-block-end: 0.6em;
  font-size: clamp(30px, 1.74vw + 16.67px, 50px);
  font-family: var(--f-title);
  font-variation-settings: "wdth" 100, "wght" 300;
  line-height: 1.1;
}
.single-program h2:not(.archive__term-title):not(.find-your-path-full__title) strong {
  font-family: var(--f-special);
  letter-spacing: -0.8px;
}
.single-program h2.block-title {
  text-align: center;
  width: 100%;
  margin-bottom: 0.2em;
}
.single-program h2.block-title strong {
  display: block;
}
.single-program .entry-content {
  position: relative;
  padding-block: 40px 0;
}
.single-program .program__explore-foi {
  -webkit-padding-before: clamp(0px, 0.65vw + -2.43px, 10px);
          padding-block-start: clamp(0px, 0.65vw + -2.43px, 10px);
}
.single-program .program__explore-foi .slider-wrapper {
  -webkit-padding-after: clamp(0px, 3.88vw + -14.56px, 60px);
          padding-block-end: clamp(0px, 3.88vw + -14.56px, 60px);
}
.single-program .program__job-offers {
  padding-block: clamp(0px, 2.91vw + -10.92px, 45px) clamp(15px, 1.94vw + 7.72px, 45px);
}
.single-program .program__job-offers h2.block-title strong {
  display: inline;
}
.single-program .program__job-offers .archive__filters {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}
.single-program .program__job-offers .archive__filters .filter-title {
  display: none;
}
.single-program .program__job-offers .archive__jobs {
  padding-top: clamp(15px, -0.65vw + 17.43px, 5px);
}
.single-program .program__job-offers .archive__empty-terms {
  -webkit-padding-after: clamp(0px, 1.94vw + -7.28px, 30px);
          padding-block-end: clamp(0px, 1.94vw + -7.28px, 30px);
}
.single-program .program__job-offers .archive__empty-terms-list {
  -webkit-padding-after: clamp(0px, 2.27vw + -8.5px, 35px);
          padding-block-end: clamp(0px, 2.27vw + -8.5px, 35px);
}
.single-program .program__job-offers .archive__empty-terms h2.block-title {
  max-width: 1350px;
  padding-bottom: clamp(15px, 0.97vw + 11.36px, 30px);
}
/*# sourceMappingURL=program.css.map */
