@charset "UTF-8";
@media (min-width: 0) {
  .hidden-xs {
    display: none; } }

@media (min-width: 576px) {
  .hidden-sm {
    display: none; } }

@media (min-width: 768px) {
  .hidden-md {
    display: none; } }

@media (min-width: 1025px) {
  .hidden-lg {
    display: none; } }

@media (min-width: 1680px) {
  .hidden-xl {
    display: none; } }

@media (min-width: 1920px) {
  .hidden-xxl {
    display: none; } }

/* stylelint-disable */
/* stylelint-enable */
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
:root {
  --fsb-border: 1px solid #ccc;
  --fsb-radius: 5px;
  --fsb-color: inherit;
  --fsb-background: #fff;
  --fsb-font-size: 1em;
  --fsb-padding: 8px;
  --fsb-padding-right: var(--fsb-padding);
  --fsb-arrow-size: 6px;
  --fsb-arrow-padding: var(--fsb-padding);
  --fsb-arrow-color: currentColor;
  --fsb-icon-color: currentColor;
  --fsb-list-height: 300px;
  --fsb-list-border: var(--fsb-border);
  --fsb-list-radius: 3px;
  --fsb-list-color: var(--fsb-color);
  --fsb-list-background: var(--fsb-background);
  --fsb-hover-color: var(--fsb-color);
  --fsb-hover-background: #ddd; }

.fsb-original-select {
  display: inline-block;
  margin: 0;
  padding: 8px 22px 8px 8px;
  padding: var(--fsb-padding);
  padding-right: calc(var(--fsb-arrow-padding) * 2 + var(--fsb-arrow-size));
  font-family: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

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

.fsb-original-select[disabled] {
  color: rgba(0, 0, 0, 0.3);
  cursor: not-allowed; }

.fsb-select {
  display: inline-block;
  position: relative; }

select[disabled] + .fsb-select {
  cursor: not-allowed; }

.fsb-select,
.fsb-original-select {
  min-width: 0;
  border: 1px solid #ccc;
  border: var(--fsb-border);
  border-radius: 5px;
  border-radius: var(--fsb-radius);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  color: var(--fsb-color);
  background-color: #fff;
  background-color: var(--fsb-background);
  font-size: 1em;
  font-size: var(--fsb-font-size);
  -webkit-box-shadow: none;
          box-shadow: none; }

.fsb-select svg {
  width: 1em;
  height: 1em;
  margin-right: 8px;
  margin-right: var(--fsb-padding-right);
  fill: currentColor;
  fill: var(--fsb-icon-color);
  pointer-events: none; }

.fsb-label {
  display: none; }

/* While it's common sense to avoid using !important as much as possible, it is used
 * here to prevent inheriting style from other rules that may target buttons. */
.fsb-button {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  padding: 8px 22px 8px 8px !important;
  padding: var(--fsb-padding) !important;
  padding-right: calc(var(--fsb-arrow-size) + var(--fsb-arrow-padding) + var(--fsb-padding-right)) !important;
  border: 0 !important;
  border-radius: inherit !important;
  color: inherit !important;
  background-color: inherit !important;
  font-size: 1em !important;
  font-family: inherit !important;
  text-align: inherit !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }

.fsb-button > span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }

.fsb-button > span,
.fsb-option > span {
  pointer-events: none; }

select[disabled] + .fsb-select .fsb-button {
  opacity: 0.4;
  pointer-events: none; }

.fsb-button:after,
select[disabled] + .fsb-select .fsb-button[aria-expanded="true"]:after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  width: var(--fsb-arrow-size);
  height: 6px;
  height: var(--fsb-arrow-size);
  right: 8px;
  right: var(--fsb-arrow-padding);
  top: 50%;
  -webkit-transform: translateY(0%) rotateZ(0deg);
      -ms-transform: translateY(0%) rotate(0deg);
          transform: translateY(0%) rotateZ(0deg);
  border: solid currentColor;
  border: solid var(--fsb-arrow-color);
  border-width: 0 1.5px 1.5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  pointer-events: none; }

.fsb-button[aria-expanded="true"]:after {
  -webkit-transform: translateY(-35%) rotateZ(180deg);
      -ms-transform: translateY(-35%) rotate(180deg);
          transform: translateY(-35%) rotateZ(180deg); }

.fsb-list,
select[disabled] + .fsb-select .fsb-list {
  display: block;
  visibility: hidden;
  position: absolute;
  min-width: 100%;
  height: 0;
  margin: 0;
  left: 0;
  top: 100%;
  z-index: 1;
  padding: 0;
  border: inherit;
  border: var(--fsb-list-border);
  border-radius: inherit;
  border-radius: var(--fsb-list-radius);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  color: var(--fsb-list-color);
  background-color: inherit;
  background-color: var(--fsb-list-background);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  overflow: auto; }

.fsb-top .fsb-list {
  top: auto;
  bottom: 100%; }

.fsb-button[aria-expanded="true"] + .fsb-list {
  height: auto;
  max-height: var(--fsb-list-height);
  visibility: visible;
  opacity: 1; }

.fsb-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--fsb-padding);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }
  .fsb-option[disabled] {
    opacity: 0.3;
    cursor: not-allowed; }

.fsb-option:focus {
  outline: none;
  color: var(--fsb-hover-color);
  background-color: var(--fsb-hover-background); }

.fsb-resize {
  display: block;
  height: 0;
  padding-right: 14px;
  padding-right: calc(var(--fsb-arrow-padding) * 2 + var(--fsb-arrow-size) - var(--fsb-padding-right));
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fsb-resize > * {
  display: block; }

.jobs-page__filter .card .fsb-select {
  width: 100%;
  border-radius: 6px !important; }
  @media (min-width: 1366px) {
    .jobs-page__filter .card .fsb-select {
      border-radius: 8px !important; } }
  .jobs-page__filter .card .fsb-select .fsb-button {
    padding: 11px 35px 11px 15px !important;
    line-height: 17px; }
    .jobs-page__filter .card .fsb-select .fsb-button::after {
      border-style: solid;
      border-width: 10px 8px 0 8px;
      border-color: #A7A6A6 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
      width: 0;
      height: 0;
      right: 20px;
      -webkit-transform: translateY(-50%) rotateZ(0deg);
          -ms-transform: translateY(-50%) rotate(0deg);
              transform: translateY(-50%) rotateZ(0deg); }
    @media (min-width: 1366px) {
      .jobs-page__filter .card .fsb-select .fsb-button {
        padding: 16px 35px 15px 20px !important;
        font-size: 16px !important;
        line-height: 19px; } }
  .jobs-page__filter .card .fsb-select .fsb-button[aria-expanded="true"]:after {
    -webkit-transform: translateY(-35%) rotateZ(180deg);
        -ms-transform: translateY(-35%) rotate(180deg);
            transform: translateY(-35%) rotateZ(180deg); }
  .jobs-page__filter .card .fsb-select .fsb-list {
    font-size: 16px;
    line-height: 19px; }

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 70px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 768px; } }

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 1240px; } }

@media (min-width: 1025px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 1366px; } }

@media (min-width: 1680px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1640px; } }

@media (min-width: 1920px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1920px; } }

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 1025px;
  --bs-breakpoint-xl: 1680px;
  --bs-breakpoint-xxl: 1920px; }

.row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x)); }
  .row > * {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y); }

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%; }

.row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto; }

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%; }

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%; }

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333%; }

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%; }

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%; }

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66667%; }

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto; }

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333%; }

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66667%; }

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%; }

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333%; }

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66667%; }

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%; }

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333%; }

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66667%; }

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%; }

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333%; }

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66667%; }

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

.g-0,
.gx-0 {
  --bs-gutter-x: 0; }

.g-0,
.gy-0 {
  --bs-gutter-y: 0; }

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem; }

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem; }

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem; }

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem; }

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem; }

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem; }

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem; }

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem; }

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem; }

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem; }

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%; }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%; }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%; }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%; }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%; }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%; }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%; }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%; }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%; }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0; }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0; }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem; }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem; }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem; }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem; }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem; }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem; }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem; }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem; }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem; }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%; }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%; }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%; }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%; }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%; }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%; }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%; }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%; }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%; }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0; }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0; }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem; }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem; }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem; }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem; }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem; }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem; }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem; }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem; }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem; }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1025px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%; }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%; }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%; }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%; }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%; }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%; }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%; }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%; }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%; }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0; }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0; }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem; }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem; }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem; }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem; }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem; }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem; }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem; }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem; }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem; }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1680px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%; }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%; }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%; }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%; }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%; }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%; }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%; }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%; }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%; }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0; }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0; }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem; }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem; }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem; }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1920px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%; }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%; }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto; }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333%; }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%; }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%; }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333%; }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66667%; }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%; }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333%; }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66667%; }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%; }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333%; }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66667%; }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%; }
  .offset-xxl-0 {
    margin-left: 0; }
  .offset-xxl-1 {
    margin-left: 8.33333%; }
  .offset-xxl-2 {
    margin-left: 16.66667%; }
  .offset-xxl-3 {
    margin-left: 25%; }
  .offset-xxl-4 {
    margin-left: 33.33333%; }
  .offset-xxl-5 {
    margin-left: 41.66667%; }
  .offset-xxl-6 {
    margin-left: 50%; }
  .offset-xxl-7 {
    margin-left: 58.33333%; }
  .offset-xxl-8 {
    margin-left: 66.66667%; }
  .offset-xxl-9 {
    margin-left: 75%; }
  .offset-xxl-10 {
    margin-left: 83.33333%; }
  .offset-xxl-11 {
    margin-left: 91.66667%; }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0; }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0; }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem; }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem; }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem; }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem; } }

/**
 * Swiper 10.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2023
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff;
  /*
    --swiper-preloader-color: var(--swiper-theme-color);
    --swiper-wrapper-transition-timing-function: initial;
    */ }

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block; }

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0); }

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y; }

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x; }

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px; }

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px; }
  .swiper-3d .swiper-slide,
  .swiper-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none; }

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none; }

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999; }

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always; }

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after); }

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before); }

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after); }

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */ }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }
  .swiper-button-prev.swiper-button-disabled,
  .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none; }
  .swiper-button-prev.swiper-button-hidden,
  .swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none; }
  .swiper-navigation-disabled .swiper-button-prev, .swiper-navigation-disabled
  .swiper-button-next {
    display: none !important; }
  .swiper-button-prev svg,
  .swiper-button-next svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center; }
  .swiper-rtl .swiper-button-prev svg, .swiper-rtl
  .swiper-button-next svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto; }

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto; }

.swiper-button-lock {
  display: none; }

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1; }

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev'; }

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto; }
  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
    content: 'next'; }

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */ }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10; }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0; }
  .swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
    display: none !important; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33);
    position: relative; }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
            transform: scale(0.66); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
            transform: scale(0.66); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33); }

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2); }
  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer; }
  .swiper-pagination-bullet:only-child {
    display: none !important; }

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0); }
  .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block; }
  .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 8px; }
    .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
    .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      display: inline-block;
      -webkit-transition: 200ms top, 200ms -webkit-transform;
      transition: 200ms top, 200ms -webkit-transform;
      transition: 200ms transform, 200ms top;
      transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px); }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap; }
  .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit); }

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute; }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top; }
  .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
            transform-origin: right top; }
  .swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0; }
  .swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical,
  .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0; }

.swiper-pagination-lock {
  display: none; }

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }
  .swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none; }

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

:where(:root) {
  line-height: 1.15;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color-scheme: dark light; }

:where(html) {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none; }

:where(body) {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%; }

:where(main) {
  display: block; }

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; } }

:where(a) {
  background-color: transparent; }

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; }

:where(button, input, optgroup, select, textarea) {
  line-height: inherit;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit; }

:where(button) {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  border-radius: 0; }

:where(button, [type="button"], [type="reset"], [type="submit"]) {
  -webkit-appearance: button;
  padding: 1px 6px;
  cursor: pointer; }

:where(label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer; }

:where(input) {
  overflow: visible;
  border-radius: 0; }

:where(fieldset) {
  margin: 0;
  border: 0;
  padding: 0; }

:where(legend) {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal; }

:where(progress) {
  display: inline-block;
  vertical-align: baseline; }

:where(select) {
  text-transform: none; }

:where(textarea) {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

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

:where([type="search"]) {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

:where([type="color"]) {
  background: inherit; }

:where(:disabled) {
  cursor: not-allowed; }

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; }

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto; }

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

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

::-moz-focus-inner {
  border: 0; }

:-moz-focusring {
  outline: 1px dotted ButtonText; }

:-moz-ui-invalid {
  box-shadow: none; }

:where(ol ol, ol ul, ol dl, ul ol, ul ul, ul dl, dl ol, dl ul, dl dl) {
  margin: 0; }

:where(b, strong) {
  font-weight: bolder; }

:where(audio, video) {
  display: inline-block; }

:where(audio):not([controls]) {
  display: none;
  height: 0; }

:where(img) {
  border: 0; }

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; }

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto; }

:where(svg):not(:root) {
  overflow: hidden; }

:where(table) {
  text-indent: 0;
  border-color: inherit; }

:where(details) {
  display: block; }

:where(dialog) {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }
  :where(dialog):not([open]) {
    display: none; }

:where(summary) {
  display: list-item; }

:where(canvas) {
  display: inline-block; }

:where(template) {
  display: none; }

:where([hidden]) {
  display: none; }

:where([hidden]:not([hidden="until-found"])) {
  display: none !important; }

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px; }

:where(
.visually-hidden:not(:focus):not(:active):not(:focus-within):not(.not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important; }

.sprite-blank {
  display: inline-block;
  vertical-align: middle;
  width: 57px;
  height: 59px;
  background: url("../images/sprites.png") 0px 0px/81px 59px no-repeat; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sprite-blank {
      background-image: url("../images/sprites@2x.png"); } }

.sprite-login {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 26px;
  background: url("../images/sprites.png") -59px 0px/81px 59px no-repeat; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sprite-login {
      background-image: url("../images/sprites@2x.png"); } }

@font-face {
  font-family: "Alternate Gothic No1 D";
  src: url("../fonts/alternategotno1d.woff2") format("woff2"), url("../fonts/alternategotno1d.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "FS Me";
  src: url("../fonts/fsme-light.woff2") format("woff2"), url("../fonts/fsme-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "FS Me";
  src: url("../fonts/fsme.woff2") format("woff2"), url("../fonts/fsme.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "FS Me";
  src: url("../fonts/fsme-bolditalic.woff2") format("woff2"), url("../fonts/fsme-bolditalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "FS Me";
  src: url("../fonts/fsme-heavyitalic.woff2") format("woff2"), url("../fonts/fsme-heavyitalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "FS Me";
  src: url("../fonts/fsme-lightitalic.woff2") format("woff2"), url("../fonts/fsme-lightitalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "FS Me";
  src: url("../fonts/fsme-bold.woff2") format("woff2"), url("../fonts/fsme-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "FS Me";
  src: url("../fonts/fsme-heavy.woff2") format("woff2"), url("../fonts/fsme-heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "FS Me";
  src: url("../fonts/fsme-italic.woff2") format("woff2"), url("../fonts/fsme-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap; }

html {
  min-height: 100vh;
  height: 100%;
  min-width: 320px;
  font-family: "FS Me", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: #000; }
  @media (min-width: 1366px) {
    html {
      font-size: 18px; } }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  height: 100%;
  background-color: #fff; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0; }

a,
button {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer; }

a {
  color: currentColor; }

svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

img {
  vertical-align: top;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none; }

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0; }
  figure img,
  picture img {
    width: 100%; }

ol,
ul {
  margin: 0;
  padding: 0; }

video {
  outline: none;
  width: 100%;
  height: 100%; }

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth; } }

::-moz-selection {
  background-color: #4d2f91;
  color: #2eb7c6; }

::selection {
  background-color: #4d2f91;
  color: #2eb7c6; }

.background-muted {
  background-color: #f0f0f0;
  color: #000; }

.background-primary {
  background-color: #4d2f91;
  color: #fff; }

.background-secondary {
  background-color: #2eb7c6;
  color: #fff; }

.background-accent {
  background-color: #f94792;
  color: #fff; }

.background-yellow {
  background-color: #f8d149;
  color: #fff; }

.background-orange {
  background-color: #e28d53;
  color: #fff; }

.background-jami {
  background-color: #29235C; }

.text-white {
  color: #fff; }

.text-muted {
  color: #707070; }

.text-primary {
  color: #4d2f91; }

.text-secondary {
  color: #2eb7c6; }

.text-gray {
  color: #707070; }

.text-accent {
  color: #f94792; }

.text-orange {
  color: #e28d53; }

.text-yellow {
  color: #f8d149; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.text-left {
  text-align: left !important; }

.text-uppercase {
  text-transform: uppercase; }

.ma {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto !important; }

.mt-0 {
  margin-bottom: 0 !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.full-width {
  width: 100%; }

.overflow-hidden {
  overflow: hidden; }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0); }

.hidden-mobile {
  display: none; }
  @media (min-width: 768px) {
    .hidden-mobile {
      display: block; } }

.visible-mobile {
  display: block; }
  @media (min-width: 768px) {
    .visible-mobile {
      display: none; } }

.list-style-type-none {
  list-style-type: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  text-transform: uppercase; }

h1,
.h1 {
  font-size: 42px;
  line-height: 1.1;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin-bottom: 32px; }
  @media (min-width: 1366px) {
    h1,
    .h1 {
      font-size: 80px;
      margin-bottom: 50px; } }

h2,
.h2 {
  font-size: 28px;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin-bottom: 20px; }
  @media (min-width: 1366px) {
    h2,
    .h2 {
      font-size: 40px;
      line-height: 40px;
      margin-bottom: 40px; } }

h3,
.h3 {
  font-size: 17px;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
  @media (min-width: 1366px) {
    h3,
    .h3 {
      font-size: 24px; } }

h4,
.h4 {
  font-size: 12px;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
  @media (min-width: 1366px) {
    h4,
    .h4 {
      font-size: 20px; } }

h5,
.h5 {
  font-size: 10px;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
  @media (min-width: 1366px) {
    h5,
    .h5 {
      font-size: 18px; } }

h6,
.h6 {
  font-size: 8px;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
  @media (min-width: 1366px) {
    h6,
    .h6 {
      font-size: 16px; } }

p {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 20px; }

@media (min-width: 1366px) {
  p {
    font-size: 18px; } }

.subtitle p {
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 20px; }
  @media (min-width: 1366px) {
    .subtitle p {
      font-size: 24px;
      line-height: 31px; } }

.animate__animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 75%, 0);
            transform: translate3d(0, 75%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 75%, 0);
            transform: translate3d(0, 75%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 4s;
          animation-duration: 4s; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
            transform: translate3d(0, -25%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
            transform: translate3d(0, -25%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); } }

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); } }

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft; }

@-webkit-keyframes displayIn {
  from {
    display: none;
    opacity: 0; }
  to {
    display: block;
    opacity: 1; } }

@keyframes displayIn {
  from {
    display: none;
    opacity: 0; }
  to {
    display: block;
    opacity: 1; } }

.animate__displayIn {
  -webkit-animation-name: displayIn;
          animation-name: displayIn;
  -webkit-animation-duration: 0s;
          animation-duration: 0s; }

@-webkit-keyframes fadeInUpIcon {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200%, 0);
            transform: translate3d(0, 200%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes fadeInUpIcon {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200%, 0);
            transform: translate3d(0, 200%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.animate__fadeInUpIcon {
  -webkit-animation-name: fadeInUpIcon;
          animation-name: fadeInUpIcon;
  -webkit-animation-duration: 2s;
          animation-duration: 2s; }

@-webkit-keyframes fadeInUpIconText {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -200%, 0);
            transform: translate3d(0, -200%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes fadeInUpIconText {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -200%, 0);
            transform: translate3d(0, -200%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

.animate__fadeInUpIconText {
  -webkit-animation-name: fadeInUpIconText;
          animation-name: fadeInUpIconText;
  -webkit-animation-duration: 2s;
          animation-duration: 2s; }

@-webkit-keyframes wave {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw); } }

@keyframes wave {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw); } }

@keyframes wave {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  to {
    -webkit-transform: translateX(-50vw);
            transform: translateX(-50vw); } }

.animate__wave:before,
.animate__wave:after {
  -webkit-animation-name: wave;
          animation-name: wave;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.animate__wave50:before,
.animate__wave50:after {
  -webkit-animation-name: wave;
          animation-name: wave;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.accordion-list {
  list-style-type: none; }
  @media (min-width: 1025px) {
    .accordion-list {
      width: 100%; } }

@media (min-width: 768px) {
  .accordion {
    padding-right: 27px;
    padding-left: 27px; } }

.accordion__content {
  display: none;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  padding: 0 5% 0 1%;
  margin-bottom: 30px;
  -webkit-animation: fadeInDown;
          animation: fadeInDown;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s; }
  @media (min-width: 1025px) {
    .accordion__content {
      padding: 0 6% 0 0;
      line-height: 24px; } }
  @media (min-width: 1366px) {
    .accordion__content {
      font-size: 20px;
      margin-bottom: 20px;
      line-height: 27px;
      padding: 0 24px 0 0; } }
  .accordion__content.is-open {
    display: block;
    -webkit-animation: fadeInDown;
            animation: fadeInDown;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both; }

.accordion__header {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (min-width: 1366px) {
    .accordion__header {
      padding-top: 25px;
      padding-bottom: 25px; } }

.accordion__toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: none;
  border: none;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%; }
  .accordion__toggle[aria-expanded="false"] .accordion__toggle-icon {
    -webkit-transform: translateY(-50%) rotate(0);
        -ms-transform: translateY(-50%) rotate(0);
            transform: translateY(-50%) rotate(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s; }
  .accordion__toggle[aria-expanded="true"] .accordion__toggle-icon {
    -webkit-transform: translateY(-50%) rotate(-180deg);
        -ms-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s; }

.accordion__title {
  color: #fff;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  text-align: left;
  line-height: 15px;
  padding-right: 32px;
  margin-bottom: 0; }
  @media (min-width: 1025px) {
    .accordion__title {
      font-size: 20px;
      line-height: 24px; } }
  @media (min-width: 1366px) {
    .accordion__title {
      font-size: 26px;
      letter-spacing: 2.7px;
      line-height: 32px; } }

.accordion-list__item {
  border-top: 1px solid #fff; }
  @media (min-width: 1366px) {
    .accordion-list__item {
      width: 100%; } }
  .accordion-list__item:last-child {
    border-bottom: 1px solid #fff; }

.accordion__toggle-icon {
  position: absolute;
  top: 50%;
  right: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  .accordion__toggle-icon svg {
    fill: #fff;
    height: 14px;
    width: 14px; }

.badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: #4d2f91;
  color: #fff; }

.breadcrumb {
  color: #000; }
  .breadcrumb a {
    font-weight: 600;
    text-decoration: none; }
    .breadcrumb a:focus, .breadcrumb a:hover, .breadcrumb a:active {
      color: #4d2f91; }
  .breadcrumb li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .breadcrumb li:not(:last-child):after {
      content: "-";
      margin-right: 8px;
      margin-left: 8px; }
    .breadcrumb li:last-child {
      color: #000; }
  .breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }

.button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  min-width: 200px;
  min-height: 40px;
  font-family: "FS Me", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  padding: 9px 20px 9px 20px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  border-radius: 5px;
  border: 1px solid transparent;
  background-color: #4d2f91;
  color: #f0f0f0;
  text-transform: uppercase; }
  @media (min-width: 1025px) {
    .button {
      min-width: 250px;
      font-size: 16px;
      line-height: 18px; } }
  .button:focus, .button:hover, .button:active {
    background-color: #2eb7c6;
    border-color: #fff; }
    .button:focus .button__icon, .button:hover .button__icon, .button:active .button__icon {
      fill: #fff; }
  .button[disabled] {
    opacity: 0.3;
    pointer-events: none; }
  .button .button__icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    fill: #4d2f91;
    -webkit-transition: fill 0.2s;
    transition: fill 0.2s; }
  .button.icon-left .button__icon {
    left: 18px;
    -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg); }
  .button--accent {
    background-color: #f94792;
    color: #fff;
    border-color: #f94792; }
    .button--accent:focus, .button--accent:hover, .button--accent:active {
      background-color: #fff;
      color: #f94792;
      border-color: #fff; }
    .button--accent .button__icon {
      fill: #fff; }
    .button--accent .button__icon {
      fill: #fff; }
      .background-default .button--accent .button__icon {
        fill: #f94792; }
    .button--accent.button--inverse {
      background-color: #fff;
      color: #f94792;
      border-color: #fff; }
      .button--accent.button--inverse:focus, .button--accent.button--inverse:hover, .button--accent.button--inverse:active {
        background-color: #f94792;
        color: #fff;
        border-color: #f94792; }
      .button--accent.button--inverse .button__icon {
        fill: #f94792; }
      .button--accent.button--inverse .button__icon {
        fill: #f94792; }
        .background-default .button--accent.button--inverse .button__icon {
          fill: #fff; }
  .button--jami {
    background-color: #ff6401;
    color: #fff;
    border-color: #ff6401; }
    .button--jami:focus, .button--jami:hover, .button--jami:active {
      background-color: #fff;
      color: #ff6401;
      border-color: #fff; }
    .button--jami .button__icon {
      fill: #fff; }
    .button--jami .button__icon {
      fill: #fff; }
      .background-default .button--jami .button__icon {
        fill: #ff6401; }
    .button--jami.button--inverse {
      background-color: #fff;
      color: #ff6401;
      border-color: #fff; }
      .button--jami.button--inverse:focus, .button--jami.button--inverse:hover, .button--jami.button--inverse:active {
        background-color: #ff6401;
        color: #fff;
        border-color: #ff6401; }
      .button--jami.button--inverse .button__icon {
        fill: #ff6401; }
      .button--jami.button--inverse .button__icon {
        fill: #ff6401; }
        .background-default .button--jami.button--inverse .button__icon {
          fill: #fff; }
  .button--inverse-secondary {
    background-color: #fff;
    color: #f94792; }
    .button--inverse-secondary:focus, .button--inverse-secondary:hover, .button--inverse-secondary:active {
      background-color: #f94792;
      color: #f0f0f0; }
    .button--inverse-secondary .button__icon {
      fill: #4d2f91; }
  .button--secondary {
    background-color: #2eb7c6; }
    .button--secondary:focus, .button--secondary:hover, .button--secondary:active {
      background-color: #4d2f91; }
    .button--secondary .button__icon {
      fill: #fff; }

.card-job {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
  color: #4d2f91;
  padding: 30px 20px 30px 20px;
  max-width: 360px;
  border-radius: 10px;
  background-color: #fff; }
  @media (min-width: 768px) {
    .card-job {
      max-width: 100%; } }
  @media (min-width: 1025px) {
    .card-job {
      font-size: 22px; } }
  @media (min-width: 1366px) {
    .card-job {
      min-height: 379px;
      position: relative;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 40px; } }
  .card-job .button {
    min-width: auto; }
    @media (min-width: 768px) {
      .card-job .button {
        width: 100%; } }
    @media (min-width: 1920px) {
      .card-job .button {
        min-width: 250px; } }

.card-job__header {
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  @media (min-width: 1366px) {
    .card-job__header {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      width: 70%; } }

.card-job__header h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-bottom: 0; }
  @media (min-width: 1366px) {
    .card-job__header h3 {
      font-size: 40px; } }

.card-job__header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  list-style: none;
  font-size: 14px;
  font-weight: 300;
  color: #707070; }
  @media (min-width: 1366px) {
    .card-job__header ul {
      font-size: 16px;
      letter-spacing: 0.64px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      row-gap: 17px;
      -webkit-column-gap: 10px;
         -moz-column-gap: 10px;
              column-gap: 10px;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media (min-width: 1920px) {
    .card-job__header ul {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.card-job__header ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase; }
  @media (min-width: 1920px) {
    .card-job__header ul li {
      width: calc(90% - 20px); } }
  @media (min-width: 1366px) {
    .card-job__header ul li:nth-child(2) {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; } }
  @media (min-width: 1366px) {
    .card-job__header ul li:nth-child(3) {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4; } }
  @media (min-width: 1366px) {
    .card-job__header ul li:nth-child(4) {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }
  @media (min-width: 1366px) {
    .card-job__header ul li:nth-child(5) {
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5;
      width: 100%; } }

.card-job__list-icon {
  width: 20px;
  height: 19px;
  margin-right: 10px;
  color: #4d2f91; }
  @media (min-width: 1366px) {
    .card-job__list-icon {
      margin-right: 20px; } }

.card-job__header ul li span {
  font-weight: 600;
  padding-right: 5px;
  text-transform: uppercase; }

.card-job__body {
  padding-top: 20px; }
  @media (min-width: 768px) {
    .card-job__body {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }
  @media (min-width: 1366px) {
    .card-job__body {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      width: 100%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding-top: 40px; } }

.card-job__body p {
  color: #707070;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 0; }
  @media (min-width: 1366px) {
    .card-job__body p {
      font-size: 18px;
      width: 100%; } }

.card-job__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-top: 30px;
  border-radius: 10px; }
  @media (min-width: 768px) {
    .card-job__footer {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }
  @media (min-width: 1366px) {
    .card-job__footer {
      width: 30%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      gap: 20px;
      padding-top: 0; } }

.card-job__footer button {
  max-width: 250px;
  height: 40px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.56px; }

.card-job__shadow {
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; }

.bar-chart-container {
  position: relative;
  width: 835px;
  height: 240px; }

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0); }

.checkbox-input ~ .checkbox-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative; }
  .checkbox-input ~ .checkbox-box:before {
    content: "";
    position: relative;
    top: 3px;
    left: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin-right: 18px;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #707070;
    border-radius: 50%; }
    .background-secondary .checkbox-input ~ .checkbox-box:before {
      background-color: #2eb7c6;
      border: 1px solid #fff; }
  .checkbox-input ~ .checkbox-box .checkbox-box__label {
    font-size: 12px;
    line-height: 17px;
    padding-top: 2px; }
    @media (min-width: 1025px) {
      .checkbox-input ~ .checkbox-box .checkbox-box__label {
        padding-top: 0;
        font-size: 16px;
        line-height: 22px; } }
    .background-secondary .checkbox-input ~ .checkbox-box .checkbox-box__label {
      color: #fff; }
  .checkbox-input ~ .checkbox-box svg {
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    fill: #707070;
    color: #707070;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 1; }
    .background-secondary .checkbox-input ~ .checkbox-box svg {
      fill: #fff;
      color: #fff; }

.checkbox-input:checked ~ .checkbox-box svg {
  opacity: 1;
  visibility: visible; }

.container {
  max-width: 1920px;
  --bs-gutter-x: 70px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px; }
  @media (min-width: 375px) {
    .container {
      padding-right: 36px;
      padding-left: 36px; } }
  @media (min-width: 768px) {
    .container {
      padding-right: 80px;
      padding-left: 80px; } }
  @media (min-width: 1366px) {
    .container {
      padding-right: 140px;
      padding-left: 140px; } }

.container-md {
  --bs-gutter-x: 70px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
  max-width: 1506px; }
  @media (min-width: 768px) {
    .container-md {
      padding-right: 70px;
      padding-left: 70px; } }

.footer {
  padding-top: 140px;
  padding-bottom: 60px; }
  @media (min-width: 768px) {
    .footer {
      padding-top: 150px;
      padding-bottom: 75px; } }

.footer__inner {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 49px; }
  @media (min-width: 1025px) {
    .footer__inner {
      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; } }
  @media (min-width: 1366px) {
    .footer__inner {
      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; } }

.footer__logo {
  width: 362px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 39px; }
  @media (min-width: 1025px) {
    .footer__logo {
      margin-bottom: 0;
      margin-left: 0; } }
  @media (min-width: 1366px) {
    .footer__logo {
      margin-bottom: 0; } }

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  list-style: none;
  color: #4d2f91;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.64px; }
  @media (min-width: 768px) {
    .footer__nav-list {
      font-size: 16px;
      letter-spacing: 0.64px;
      gap: 20px; } }
  @media (min-width: 1025px) {
    .footer__nav-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      gap: 20px;
      font-size: 16px;
      letter-spacing: 0.64px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  @media (min-width: 1366px) {
    .footer__nav-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-column-gap: 50px;
         -moz-column-gap: 50px;
              column-gap: 50px;
      font-size: 16px;
      letter-spacing: 0.64px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.footer__social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0px 0px 0px; }
  @media (min-width: 1025px) {
    .footer__social-icons {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding: 20px 0px 0px 0px; } }

.footer__social-icons svg {
  width: 30px;
  height: auto;
  fill: #846FB3; }

.footer__nav-link {
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent; }
  .footer__nav-link:focus, .footer__nav-link:hover, .footer__nav-link:active {
    border-bottom: 1px solid #4d2f91; }

.form {
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px; }
  @media (min-width: 768px) {
    .form {
      padding: 40px; } }
  .form h3 {
    margin-bottom: 20px; }

.form-control {
  display: inline-block;
  position: relative;
  margin-bottom: 20px; }
  .form-control.icon-left .form-icon {
    left: 0; }
  .form-control.icon-left .input {
    padding-left: 47px; }
  .form-control.icon-right .form-icon {
    right: 0; }
  .form-control.icon-right .input {
    padding-right: 47px; }

.form-group {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .form-group + .form-group {
    margin-top: 0px; }
  .form-group .label {
    display: block; }

.form-icon {
  position: absolute;
  top: 0;
  width: 32px;
  height: 100%;
  background: none;
  border: 0; }

.header {
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 92px;
  padding: 25px 0;
  background-color: #4d2f91;
  border-bottom: 2px solid #fff; }

.header__apply-now {
  display: none;
  position: absolute;
  width: 100%;
  top: 92px;
  left: 0;
  z-index: 4;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #846fb3;
  padding: 13px 0; }

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @supports (-webkit-hyphens: none) {
    .header__inner {
      max-height: 40px; } }

.header__menu {
  position: fixed;
  right: 0;
  top: 92px;
  z-index: 98;
  overflow: hidden;
  overflow-y: auto;
  margin: 0;
  width: 100vw;
  max-width: 100%;
  color: #000;
  background-color: #846fb3;
  opacity: 0;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: 0.2s;
  transition: 0.2s; }
  @media (min-width: 1025px) {
    .header__menu {
      position: static;
      display: block;
      opacity: 1;
      margin-left: auto;
      width: auto;
      overflow: visible;
      height: auto;
      visibility: visible;
      background-color: transparent;
      -ms-flex-negative: 0;
          flex-shrink: 0; } }
  .mobile-menu-active .header__menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
  .header__menu .navbar__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 1025px) {
      .header__menu .navbar__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }

.header__menu-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @supports (-webkit-hyphens: none) {
    .header__menu-toggle {
      max-height: 40px;
      max-width: 30px; } }
  @media (min-width: 1025px) {
    .header__menu-toggle {
      display: none; } }

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 138px;
  height: 30px; }

.hero {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  overflow: hidden; }

.line {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 200px;
  background-color: #70b0e6; }

.input {
  position: relative;
  width: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  padding: 11px 15px;
  border-radius: 6px;
  color: #000;
  background-color: #f0f0f0;
  border: 1px solid transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .jobs-page__form .input,
  .jobs-page__filter .input {
    font-size: 14px;
    line-height: 17px;
    color: #707070; }
    @media (min-width: 1366px) {
      .jobs-page__form .input,
      .jobs-page__filter .input {
        padding: 16px 35px 15px 20px;
        font-size: 16px;
        line-height: 19px;
        border-radius: 8px; } }
  .input::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    color: #707070; }
  .input::-moz-placeholder {
    opacity: 1;
    -moz-transition: 0.2s;
    transition: 0.2s;
    color: #707070; }
  .input:-ms-input-placeholder {
    opacity: 1;
    -ms-transition: 0.2s;
    transition: 0.2s;
    color: #707070; }
  .input::-ms-input-placeholder {
    opacity: 1;
    -ms-transition: 0.2s;
    transition: 0.2s;
    color: #707070; }
  .input::placeholder {
    opacity: 1;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    color: #707070; }
  .input[disabled] {
    opacity: 0.3;
    pointer-events: none; }
  .input--transparent {
    color: #f0f0f0;
    background: rgba(255, 255, 255, 0.3); }
    .input--transparent::-webkit-input-placeholder {
      color: #fff; }
    .input--transparent::-moz-placeholder {
      color: #fff; }
    .input--transparent:-ms-input-placeholder {
      color: #fff; }
    .input--transparent::-ms-input-placeholder {
      color: #fff; }
    .input--transparent::placeholder {
      color: #fff; }
    .input--transparent:focus::-webkit-input-placeholder, .input--transparent:hover::-webkit-input-placeholder, .input--transparent:active::-webkit-input-placeholder {
      color: #fff; }
    .input--transparent:focus::-moz-placeholder, .input--transparent:hover::-moz-placeholder, .input--transparent:active::-moz-placeholder {
      color: #fff; }
    .input--transparent:focus:-ms-input-placeholder, .input--transparent:hover:-ms-input-placeholder, .input--transparent:active:-ms-input-placeholder {
      color: #fff; }
    .input--transparent:focus::-ms-input-placeholder, .input--transparent:hover::-ms-input-placeholder, .input--transparent:active::-ms-input-placeholder {
      color: #fff; }
    .input--transparent:focus::placeholder, .input--transparent:hover::placeholder, .input--transparent:active::placeholder {
      color: #fff; }

.label {
  font-size: 16px;
  color: #000; }

.menu-toggle-close {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 0;
  background: none;
  border: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s; }
  .mobile-menu-active .menu-toggle-close {
    opacity: 1;
    margin-left: auto; }

.menu-toggle-open {
  padding: 0;
  background: none;
  border: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s; }
  @media (min-width: 1025px) {
    .menu-toggle-open {
      display: none; } }
  .mobile-menu-active .menu-toggle-open {
    opacity: 0; }

.navbar__link {
  position: relative;
  display: block;
  padding: 20px 0;
  color: #f0f0f0;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.64px; }
  .navbar__link:focus, .navbar__link:active {
    color: #2eb7c6; }
  @media (min-width: 1025px) {
    .navbar__link {
      font-size: 16px;
      font-weight: 700;
      padding: 0; }
      .navbar__link::after {
        content: '';
        position: absolute;
        height: 2px;
        background-color: #2eb7c6;
        right: 50%;
        left: 50%;
        bottom: -11px;
        -webkit-transition: 0.2s;
        transition: 0.2s; }
      .navbar__link:hover, .navbar__link:focus, .navbar__link:active, .navbar__link.active {
        color: #f0f0f0; }
        .navbar__link:hover::after, .navbar__link:focus::after, .navbar__link:active::after, .navbar__link.active::after {
          right: 0;
          left: 0; } }

.navbar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none; }
  @media (min-width: 1025px) {
    .navbar__list {
      gap: 16px; } }
  .navbar__list li {
    border-bottom: 1px solid #fff; }
    @media (min-width: 1025px) {
      .navbar__list li {
        min-width: 110px;
        border: none;
        position: relative; } }
    @media (min-width: 1920px) {
      .navbar__list li {
        min-width: 122px; } }

/* Sub nav */
.subnav-content {
  background-color: #2eb7c6;
  width: 100%;
  z-index: 1;
  padding: 0px;
  display: none;
  list-style: none; }
  @media (min-width: 1025px) {
    .subnav-content {
      position: absolute;
      padding: 40px 0 0;
      display: none;
      background-color: transparent; } }
  .subnav-content li {
    background-color: #4d2f91;
    padding: 10px;
    cursor: pointer;
    text-align: center; }
    @media (min-width: 1025px) {
      .subnav-content li {
        text-align: left;
        min-width: 180px; } }
  .subnav-content li:last-child {
    border: 0px; }
  .subnav-content li:hover {
    background-color: #2eb7c6;
    padding: 10px; }
    @media (min-width: 1025px) {
      .subnav-content li:hover {
        text-align: left; } }
  .subnav-content a {
    color: #f0f0f0;
    font-size: 14px;
    font-weight: 400; }
    @media (min-width: 1025px) {
      .subnav-content a {
        font-size: 16px;
        font-weight: 700; } }

.subnav-content a {
  color: #f0f0f0;
  text-decoration: none;
  padding: 0;
  margin: 10px 0;
  text-align: center; }

.subnav:hover .subnav-content {
  display: block; }

.mainlink .arrow {
  border: solid #f0f0f0;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  background-color: transparent;
  margin-left: 10px;
  margin-bottom: 2px; }
  @media (min-width: 1025px) {
    .mainlink .arrow {
      display: none; } }

/*
.subnav:hover .mainlink .arrow,.subnav:active .mainlink .arrow {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  margin-bottom: -2px;
  @include laptop {
    display: none;
  }
}*/
.mainlink .arrow-up {
  border: solid #f0f0f0;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  -ms-transform: rotate(-135deg);
      transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  background-color: transparent;
  margin-left: 10px;
  margin-bottom: -2px; }
  @media (min-width: 1025px) {
    .mainlink .arrow-up {
      display: none; } }

.mainlink::after {
  border: solid #f0f0f0;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: relative;
  background-color: #4d2f91;
  margin-left: 10px;
  top: -2px;
  left: 0px;
  right: 0px; }

.subnav:hover .mainlink::after {
  -ms-transform: rotate(-135deg);
      transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  top: 4px; }

.page-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

.header,
.footer {
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 76px;
  z-index: 0; }
  @media (min-width: 1025px) {
    .main {
      padding-top: 66px; } }
  @media (min-width: 1440px) {
    .main {
      padding-top: 0; } }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 40px;
  padding: 5px;
  border-radius: 5px;
  background-color: #FFFFFF; }
  .pagination--current {
    color: #000; }
  .pagination__link {
    display: block;
    padding-right: 8px;
    padding-left: 8px;
    text-align: center;
    color: #846FB3; }
    .pagination__link:focus, .pagination__link:hover, .pagination__link:active {
      color: #4D2F91; }
  .pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
    list-style-type: none; }
    .pagination__list a {
      text-decoration: none;
      color: #4D2F91; }
  .pagination__next:focus, .pagination__next:hover, .pagination__next:active, .pagination__prev:focus, .pagination__prev:hover, .pagination__prev:active {
    color: #4D2F91; }
  .pagination__active {
    color: #4D2F91;
    font-weight: bold; }

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0); }

.radio-input:focus + .radio-box:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2); }

.radio-input ~ .radio-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative; }
  .radio-input ~ .radio-box:before {
    content: "";
    position: relative;
    top: 4px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000; }

.radio-input:checked ~ .radio-box:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000; }

.section {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media (min-width: 1366px) {
    .section {
      padding-top: 120px;
      padding-bottom: 120px; } }

.section-slider-thumbs {
  padding-top: 120px;
  padding-bottom: 120px; }
  @media (min-width: 1366px) {
    .section-slider-thumbs {
      padding-top: 130px;
      padding-bottom: 130px; } }
  @media (min-width: 375px) {
    .section-slider-thumbs .container {
      padding-right: 20px;
      padding-left: 20px; } }
  @media (min-width: 768px) {
    .section-slider-thumbs .container {
      padding-right: 30px;
      padding-left: 30px; } }
  @media (min-width: 1366px) {
    .section-slider-thumbs .container {
      padding-right: 140px;
      padding-left: 140px; } }

.section-slider-thumbs h2 {
  text-align: center;
  color: #4d2f91;
  margin-bottom: 24px; }
  @media (min-width: 1366px) {
    .section-slider-thumbs h2 {
      margin-bottom: 30px; } }

.section-slider-thumbs h2 span {
  font-size: 42px;
  line-height: 1.2;
  display: block;
  color: #2eb7c6; }
  @media (min-width: 1366px) {
    .section-slider-thumbs h2 span {
      font-size: 80px; } }

.section-slider-thumbs h2 + p {
  color: #707070;
  padding: 0 20px;
  line-height: 1.6;
  max-width: 360px;
  margin-inline: auto; }
  @media (min-width: 768px) {
    .section-slider-thumbs h2 + p {
      max-width: 452px;
      padding: 0;
      margin-inline: auto;
      margin-bottom: 25px; } }
  @media (min-width: 1366px) {
    .section-slider-thumbs h2 + p {
      max-width: 812px;
      line-height: 1.4; } }

@media (min-width: 768px) {
  #section1.section.wave.section-people {
    min-height: 450px; } }

@media (min-width: 1366px) {
  #section1.section.wave.section-people {
    padding-bottom: 150px; } }

.section-people.wave h2 {
  margin-bottom: 30px;
  padding-top: 15px; }
  .section-people.wave h2 span {
    font-size: 42px;
    line-height: 0.9;
    display: block; }
    @media (min-width: 768px) {
      .section-people.wave h2 span {
        line-height: 1.1; } }
    @media (min-width: 1366px) {
      .section-people.wave h2 span {
        font-size: 80px; } }

.section-people.wave p {
  line-height: 1.6;
  text-align: left; }
  @media (min-width: 768px) {
    .section-people.wave p {
      max-width: 450px;
      margin: 0 auto; } }
  @media (min-width: 1366px) {
    .section-people.wave p {
      max-width: 812px;
      line-height: 1.4; } }

.section-video.wave--muted {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #f0f0f0;
  margin-bottom: 0; }

.section-video.wave--muted::after {
  top: -30px; }
  @media (min-width: 768px) {
    .section-video.wave--muted::after {
      top: 0; } }

.section-video.wave--muted::before {
  display: none; }

.section-hiring.wave {
  min-height: 400px;
  padding-top: 0;
  margin-top: 0;
  background: linear-gradient(360deg, transparent 0%, transparent 64px, #2eb7c6 64px, #2eb7c6 100%, transparent 100%, transparent 100%); }
  @media (min-width: 1366px) {
    .section-hiring.wave {
      background: linear-gradient(360deg, transparent 0%, transparent 80px, #2eb7c6 80px, #2eb7c6 100%, transparent 100%, transparent 100%); } }
  .section-hiring.wave:before {
    display: none; }
  .section-hiring.wave h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-top: 70px; }
    @media (min-width: 1366px) {
      .section-hiring.wave h2 {
        font-family: "FS Me", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
        font-size: 24px;
        font-weight: 300;
        text-transform: none;
        margin-bottom: 35px; } }
    .section-hiring.wave h2 span {
      font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
      font-size: 42px;
      display: block;
      margin-bottom: 20px; }
      @media (min-width: 1366px) {
        .section-hiring.wave h2 span {
          font-size: 80px;
          line-height: 1; } }
  .section-hiring.wave p {
    max-width: 360px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 30px; }
    @media (min-width: 1366px) {
      .section-hiring.wave p {
        max-width: 100%;
        margin-bottom: 37px; } }
  .section-hiring.wave a.button {
    font-weight: 300;
    margin-bottom: 25px; }
    @media (min-width: 1366px) {
      .section-hiring.wave a.button {
        padding-inline: 25px; } }

.slider .swiper-slide h2,
.slider-thumbs .swiper-slide h2 {
  text-align: center; }

.slider .swiper-slide img,
.slider-thumbs .swiper-slide img {
  margin-right: auto;
  margin-left: auto; }

.slider .swiper-pagination {
  margin-top: 40px;
  position: static; }

button.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.3; }

button.swiper-pagination-bullet-active {
  opacity: 1; }

.swiper-button-prev {
  left: 0; }

.swiper-button-next {
  right: 0; }

.slider-thumbs-nav .swiper-slide {
  opacity: 0.5;
  cursor: pointer; }

.slider-thumbs-nav .swiper-slide-thumb-active {
  opacity: 1; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.3; }

.swiper-button-prev,
.swiper-button-next {
  background: none;
  border: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #fff; }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none; }
  .swiper-button-prev svg,
  .swiper-button-next svg {
    width: 12px;
    height: 20px; }

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.switch {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  min-width: 42px;
  min-height: 22px;
  cursor: pointer; }

.switch-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; }
  .switch-input:checked + .switch-box {
    background-color: #4d2f91;
    border-color: #4d2f91; }
    .switch-input:checked + .switch-box:before {
      right: -2px;
      left: 20px; }
  .switch-input:focus + .switch-box {
    -webkit-box-shadow: 0 0 3px 1px rgba(34, 138, 230, 0.5);
            box-shadow: 0 0 3px 1px rgba(34, 138, 230, 0.5);
    border-color: #4d2f91; }

.switch-box {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 20px;
  background-color: #f0f0f0;
  border-width: 1px;
  border-style: solid;
  border-color: #f0f0f0;
  border-radius: 50px; }
  .switch-box:before {
    content: "";
    position: absolute;
    opacity: 1;
    top: -2px;
    right: 20px;
    left: -2px;
    display: block;
    height: 22px;
    margin-left: 0;
    background-color: #fff;
    border-radius: 50px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    will-change: opacity, transform; }

.switch-label {
  padding-left: 52px; }

.tabs__list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center; }
  @media (min-width: 1366px) {
    .tabs__list {
      gap: 4px; } }
  @media (min-width: 1025px) {
    .tabs__list {
      gap: 4px; } }
  .tabs__list svg {
    pointer-events: none; }

@media (min-width: 768px) {
  .tab-button {
    background-color: #f0f0f0;
    color: #4d2f91;
    width: 112px;
    height: 50px;
    border-radius: 7px;
    letter-spacing: 0.9px;
    border: 1px solid transparent;
    text-transform: uppercase; } }

@media (min-width: 1025px) {
  .tab-button {
    border: 0;
    font-size: 16px;
    letter-spacing: 0.64px;
    font-weight: 400;
    background-color: white;
    color: #4d2f91;
    text-transform: uppercase; } }

@media (min-width: 1366px) {
  .tab-button {
    border-radius: 0;
    font-size: 16px;
    letter-spacing: 0.64px;
    font-weight: 400;
    background-color: #f0f0f0;
    color: #4d2f91;
    width: 240px;
    height: 60px;
    text-transform: uppercase; } }

@media (min-width: 1920px) {
  .tab-button {
    width: 260px; } }

.tab-button.background-accent {
  width: 358px;
  height: 50px;
  border: 0;
  background-color: #f94792;
  padding: 17px 25px;
  font-size: 14px;
  letter-spacing: 0.56px;
  color: #f0f0f0;
  border-radius: 7px; }
  @media (min-width: 768px) {
    .tab-button.background-accent {
      width: 191px;
      height: 50px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (min-width: 1025px) {
    .tab-button.background-accent {
      border: 0;
      background-color: #f94792;
      border-top-right-radius: 7px;
      border-bottom-right-radius: 7px;
      color: #f0f0f0;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media (min-width: 1366px) {
    .tab-button.background-accent {
      border: 0;
      background-color: #f94792;
      width: 240px;
      height: 60px;
      border-top-right-radius: 7px;
      border-bottom-right-radius: 7px;
      color: #f0f0f0;
      font-size: 16px;
      line-height: 26px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; } }
  @media (min-width: 1920px) {
    .tab-button.background-accent {
      width: 260px; } }

.tab-button.is-active {
  background-color: #4d2f91;
  color: #f0f0f0; }
  @media (min-width: 1025px) {
    .tab-button.is-active {
      color: #f0f0f0; } }
  @media (min-width: 1366px) {
    .tab-button.is-active {
      background-color: #4d2f91;
      color: #f0f0f0; } }

@media (min-width: 768px) {
  .tab-button.background-secondary {
    width: 50px;
    height: 50px;
    background-color: #2eb7c6;
    border-radius: 7px;
    color: #f0f0f0;
    padding: 12px; } }

@media (min-width: 1366px) {
  .tab-button.background-secondary {
    width: 60px;
    height: 60px;
    background-color: #2eb7c6;
    border-radius: 7px;
    color: #f0f0f0;
    padding: 14px; } }

.tab-button.background-secondary .title-icon {
  max-width: 30px;
  max-height: 30px; }

.tabs-podcast {
  position: relative; }
  .tabs-podcast .audio-player {
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    -webkit-transition: 0.6s ease-out;
    transition: 0.6s ease-out;
    pointer-events: none;
    z-index: 2; }
    .tabs-podcast .audio-player.active {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
      pointer-events: auto; }
    @media (min-width: 768px) {
      .tabs-podcast .audio-player {
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 50px;
        -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
                transform-origin: 50% 50%; }
        .tabs-podcast .audio-player.active {
          top: 100%;
          opacity: 1;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%);
          width: 311px; } }
    @media (min-width: 1025px) {
      .tabs-podcast .audio-player {
        width: auto; } }
    @media (min-width: 1600px) {
      .tabs-podcast .audio-player {
        left: 0;
        top: 0;
        width: 0;
        overflow: hidden;
        -webkit-transform-origin: left;
            -ms-transform-origin: left;
                transform-origin: left;
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0); }
        .tabs-podcast .audio-player.active {
          top: 61;
          opacity: 1;
          width: 311px;
          -webkit-transform: translateX(0);
              -ms-transform: translateX(0);
                  transform: translateX(0); } }
  @media (min-width: 768px) {
    .tabs-podcast {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }
  @media (min-width: 1025px) {
    .tabs-podcast {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

.tabs-apply .tab-button {
  display: none; }
  @media (min-width: 768px) {
    .tabs-apply .tab-button {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

@media (min-width: 768px) {
  .tabs-apply {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; } }

@media (min-width: 1025px) {
  .tabs-apply {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

.tabs__list.fixed {
  z-index: 2;
  position: fixed;
  width: 100%;
  right: 0;
  left: 0;
  padding: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (min-width: 1366px) {
    .tabs__list.fixed {
      padding: 0;
      width: auto;
      right: auto;
      left: auto; } }

@media (min-width: 1366px) {
  .tabs__list li:first-child .tab-button {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; } }

@media (min-width: 768px) {
  .tabs__list li:not(last-child) {
    margin-right: 10px; } }

@media (min-width: 1366px) {
  .tabs__list li:not(last-child) {
    margin-right: 0px; } }

.tab-button .button__icon {
  width: 20px;
  height: 20px; }
  @media (min-width: 768px) {
    .tab-button .button__icon {
      width: 30px;
      height: 30px; } }

.textarea {
  padding: 11px 15px;
  border-color: #000;
  resize: vertical; }

.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 250px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  color: #fff;
  margin-bottom: 50px; }
  @media (min-width: 1366px) {
    .page-header {
      min-height: 445px; } }
  .page-header h1 {
    font-weight: 400; }
    @media (min-width: 1366px) {
      .page-header h1 {
        margin-bottom: 100px; } }

.page-header-secondary .text-left {
  padding-top: 0;
  padding-bottom: 0; }

.page-header-secondary h1 {
  font-size: 34px; }
  @media (min-width: 1025px) {
    .page-header-secondary h1 {
      line-height: 1;
      margin-bottom: 6px;
      font-size: 80px; } }

.page-header-secondary p {
  font-size: 22px; }
  @media (min-width: 1025px) {
    .page-header-secondary p {
      font-size: 26px;
      letter-spacing: -0.6px; } }

@media (min-width: 1025px) {
  .page-header-secondary {
    min-height: 405px;
    padding-bottom: 76px; } }

@media (min-width: 1366px) {
  .page-header-secondary {
    padding-bottom: 0; } }

@media (min-width: 768px) {
  .page-header__tabs {
    z-index: 2;
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    min-height: 76px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 13px;
    background-color: #846fb3; } }

@media (min-width: 1366px) {
  .page-header__tabs {
    position: static;
    padding: 0;
    background-color: transparent;
    display: block; } }

.card-job.card-job--photo {
  position: relative;
  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: 433px;
  padding-top: 0; }
  .card-job.card-job--photo h3 {
    color: #f94792;
    padding-top: 30px;
    font-weight: 400;
    font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-transform: uppercase; }
    @media (min-width: 1366px) {
      .card-job.card-job--photo h3 {
        padding-top: 40px;
        margin-bottom: 0; } }
  .card-job.card-job--photo .card-job__image {
    max-width: calc(100% + 0px);
    height: 142px;
    margin: 0 -20px 0 -20px;
    -o-object-fit: cover;
       object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: calc(100% + 0px); }
    @media (min-width: 1025px) {
      .card-job.card-job--photo .card-job__image {
        max-width: calc(100% + 0px);
        height: 150px;
        margin: 0 -40px 0 -20px;
        width: calc(100% + 0px); } }
    @media (min-width: 1366px) {
      .card-job.card-job--photo .card-job__image {
        max-width: calc(100% + 80px);
        height: 150px;
        margin: 0 -40px 0 -40px;
        width: calc(100% + 80px); } }
  .card-job.card-job--photo .card-job__list-icon {
    margin-right: 10px; }
  .card-job.card-job--photo .card-job__term-list {
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px; }
    @media (min-width: 1920px) {
      .card-job.card-job--photo .card-job__term-list li {
        width: calc(90% - 12px); } }
  .card-job.card-job--photo .card-job__list-term {
    font-weight: 300;
    font-size: 14px;
    color: #707070;
    text-transform: none;
    letter-spacing: 0px; }
  .card-job.card-job--photo .card-job__body {
    padding-top: 20px; }
  .card-job.card-job--photo .card-job__footer {
    padding: 20px 14px 0 14px; }
    @media (min-width: 768px) {
      .card-job.card-job--photo .card-job__footer {
        padding: 20px 0 0 0; } }
    @media (min-width: 1366px) {
      .card-job.card-job--photo .card-job__footer {
        padding-top: 40px;
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4; } }

@media (min-width: 1366px) {
  .card-job.card-job--photo .card-job__header {
    width: 100%; } }

.search {
  position: absolute;
  width: 100%;
  top: 92px;
  left: 0;
  z-index: 4;
  background-color: #846fb3;
  padding: 13px 0; }
  @media (min-width: 768px) {
    .search__job-title > .input {
      min-width: 219px; } }
  @media (min-width: 1440px) {
    .search {
      position: static;
      padding: 0;
      background-color: transparent; } }
  @media (min-width: 1440px) {
    .search .container {
      padding: 0 12px 0 32px;
      max-width: 823px; } }

.search__form {
  display: none;
  gap: 10px;
  opacity: 0;
  z-index: -1; }
  .search__form > .button {
    min-width: 186px;
    padding-top: 18px;
    padding-bottom: 18px;
    border: none;
    min-height: 40px; }
    .search__form > .button svg {
      position: absolute;
      width: 20px;
      top: 50%;
      right: 20px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
      @media (min-width: 768px) {
        .search__form > .button svg {
          width: 25px;
          height: 25px;
          position: static;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; } }
    @media (min-width: 768px) {
      .search__form > .button {
        padding: 10px;
        min-width: 50px;
        width: 50px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .search__form > .button span {
          display: none; } }
    @media (min-width: 1025px) {
      .search__form > .button {
        min-width: 40px;
        width: 40px;
        height: 40px; } }
  @media (min-width: 768px) {
    .search__form {
      opacity: 1;
      display: -ms-grid;
      display: grid;
      gap: 15px;
      z-index: 1;
      -ms-grid-columns: 1fr 15px 2fr 15px auto;
      grid-template-columns: 1fr 2fr auto; } }
  @media (min-width: 1025px) {
    .search__form {
      -ms-grid-columns: 2fr 2fr auto;
      grid-template-columns: 2fr 2fr auto; } }
  @media (min-width: 1440px) {
    .search__form {
      gap: 10px;
      -ms-grid-columns: 0.7fr 10px 1fr 10px auto;
      grid-template-columns: 0.7fr 1fr auto; } }
  @media (min-width: 1920px) {
    .search__form {
      gap: 10px;
      -ms-grid-columns: 1.1fr 10px 1fr 10px auto;
      grid-template-columns: 1.1fr 1fr auto; } }
  .search__form.active {
    opacity: 1;
    display: -ms-grid !important;
    display: grid !important;
    z-index: 3; }
  .search__form input,
  .search__form button {
    border-radius: 5px; }
    @media (min-width: 1366px) {
      .search__form input,
      .search__form button {
        border-radius: 6px; } }
  .search__form .input {
    width: 100%;
    padding: 15px; }
    @media (min-width: 1025px) {
      .search__form .input {
        padding: 10px 20px; } }

.search__select {
  width: 100%; }
  .search__select.button {
    min-width: 200px;
    min-height: 40px;
    padding-top: 18px;
    padding-bottom: 18px;
    border: none; }
  .search__select::after {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    right: 20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 8px 0;
    border-color: #fff transparent transparent transparent;
    margin: auto 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 1; }
  .search__select.active {
    margin-bottom: 24px; }
    .search__select.active:after {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  @media (min-width: 768px) {
    .search__select {
      display: none; } }

/* Search Box 'Clear' icon */
.search__job-title, .select-area {
  position: relative;
  display: inline-block; }

.clear-input-button {
  /* button position */
  position: absolute;
  right: 4px;
  top: 14px;
  bottom: 0;
  /* button appearane */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25px;
  height: 25px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 50%;
  background: #4d2f91;
  margin: 0;
  padding: 2px;
  color: #F0F0F0;
  font-size: 30px;
  cursor: pointer;
  font-weight: 600;
  /* hide the button initially */
  display: none; }
  @media (min-width: 1025px) {
    .clear-input-button {
      top: 8px; } }

.clear-input-button:hover {
  background: #f94792; }

.clear-input--touched:focus + .clear-input-button,
.clear-input--touched + .clear-input-button,
.clear-input--touched:hover + .clear-input-button,
.clear-input--touched + .clear-input-button:hover {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

.clear-area-button {
  /* button position */
  position: absolute;
  right: 4px;
  top: 14px;
  bottom: 0;
  /* button appearane */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25px;
  height: 25px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 50%;
  background: #4d2f91;
  margin: 0;
  padding: 2px;
  color: #F0F0F0;
  font-size: 30px;
  cursor: pointer;
  font-weight: 600;
  /* hide the button initially */
  display: none; }
  @media (min-width: 430px) {
    .clear-area-button {
      right: 40%; } }
  @media (min-width: 1025px) {
    .clear-area-button {
      top: 8px;
      right: 37%; } }

.clear-area-button:hover {
  background: #f94792; }

.clear-area--touched:focus + .clear-area-button,
.clear-area--touched + .clear-area-button,
.clear-area--touched:hover + .clear-area-button,
.clear-area--touched + .clear-area-button:hover {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

.select-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  gap: 10px; }
  @media (min-width: 430px) {
    .select-area {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      gap: 0; }
      .select-area .input {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; } }
  .select-area::after {
    content: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 38%;
    margin: auto 0;
    width: 2px;
    height: 30px;
    background-color: #f0f0f0;
    z-index: 1; }
    @media (min-width: 430px) {
      .select-area::after {
        content: ""; } }
    @media (min-width: 1025px) {
      .select-area::after {
        right: 35%; } }
  .select-area .select ~ .fsb-select {
    min-width: 38%;
    background-color: transparent;
    border-radius: 5px;
    width: 100%;
    border: none;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s; }
    @media (min-width: 430px) {
      .select-area .select ~ .fsb-select {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        width: auto; } }
    @media (min-width: 1025px) {
      .select-area .select ~ .fsb-select {
        min-width: 35%; } }
    .select-area .select ~ .fsb-select .fsb-button {
      font-size: 16px !important;
      font-weight: 400;
      color: #f0f0f0 !important;
      padding-left: 24px !important;
      -webkit-transition: 0s;
      transition: 0s;
      text-transform: none;
      padding: 17px 25px 17px 20px !important;
      border: none !important; }
      .select-area .select ~ .fsb-select .fsb-button::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #fff;
        opacity: 0.3;
        z-index: -1; }
      @media (min-width: 768px) {
        .select-area .select ~ .fsb-select .fsb-button {
          padding: 9px 25px 9px 11px !important;
          line-height: 20px; } }
      @media (min-width: 1025px) {
        .select-area .select ~ .fsb-select .fsb-button {
          padding: 9px 25px 9px 20px !important;
          font-size: 16px !important;
          line-height: 19px; } }
      .select-area .select ~ .fsb-select .fsb-button::after {
        right: 15px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 7.5px 0;
        border-color: #ededed transparent transparent transparent;
        top: 0;
        bottom: 0;
        margin: auto 0; }
        @media (min-width: 1366px) {
          .select-area .select ~ .fsb-select .fsb-button::after {
            border-width: 6px 5px 0; } }
    .select-area .select ~ .fsb-select .fsb-list {
      background-color: #fff;
      border: none; }
    .select-area .select ~ .fsb-select .fsb-option {
      font-size: 16px;
      background: rgba(132, 111, 179, 0.7);
      font-weight: 400;
      color: #f0f0f0; }
      .select-area .select ~ .fsb-select .fsb-option:focus {
        background-color: #846fb3; }

.intro-video {
  position: relative; }
  .intro-video.section {
    padding-top: 0;
    padding-bottom: 0px; }
    @media (min-width: 768px) {
      .intro-video.section {
        padding-bottom: 50px; } }
  .intro-video__video {
    position: relative;
    min-height: 280px; }
    @media (min-width: 485px) {
      .intro-video__video {
        min-height: 305px; } }
    @media (min-width: 768px) {
      .intro-video__video {
        height: 765px; } }
    @media (min-width: 1440px) {
      .intro-video__video {
        height: 75vh;
        min-height: 805px; } }
    .intro-video__video::before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(77, 47, 145, 0.43); }
    .intro-video__video video {
      -o-object-fit: cover;
         object-fit: cover;
      -webkit-transform: scale(1, 1.3);
          -ms-transform: scale(1, 1.3);
              transform: scale(1, 1.3); }
      @media (min-width: 485px) {
        .intro-video__video video {
          -webkit-transform: scale(1, 1.2);
              -ms-transform: scale(1, 1.2);
                  transform: scale(1, 1.2); } }
      @media (min-width: 768px) {
        .intro-video__video video {
          -webkit-transform: scale(1, 1);
              -ms-transform: scale(1, 1);
                  transform: scale(1, 1); } }
  .intro-video__content {
    z-index: 2;
    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;
    position: absolute;
    top: 35px;
    left: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%; }
    @media (min-width: 425px) {
      .intro-video__content {
        top: 60px; } }
    @media (min-width: 768px) {
      .intro-video__content {
        height: 765px;
        top: 140px; } }
    @media (min-width: 1366px) {
      .intro-video__content {
        top: 300px; } }
  .intro-video__title {
    width: auto; }
    .intro-video__title h1 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 70px;
      color: #fff;
      text-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
      margin-bottom: 0px;
      line-height: 80px; }
      @media (min-width: 425px) {
        .intro-video__title h1 {
          font-size: 86px; } }
      @media (min-width: 768px) {
        .intro-video__title h1 {
          font-size: 147px;
          margin-bottom: 60px;
          line-height: 133px; } }
      @media (min-width: 1366px) {
        .intro-video__title h1 {
          font-size: 177px; } }
      @media (min-width: 1440px) {
        .intro-video__title h1 {
          margin-bottom: 145px; } }
      .intro-video__title h1 span {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -4px;
        color: #f94792; }
        @media (min-width: 425px) {
          .intro-video__title h1 span {
            margin-top: -12px; } }
        @media (min-width: 768px) {
          .intro-video__title h1 span {
            font-size: 147px;
            margin-left: 25px;
            margin-right: 25px; } }
        @media (min-width: 1366px) {
          .intro-video__title h1 span {
            margin-top: -16px; } }
  .intro-video__subtitle {
    font-size: 16px;
    line-height: 23px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px; }
    @media (min-width: 375px) {
      .intro-video__subtitle {
        min-width: 350px; } }
    @media (min-width: 768px) {
      .intro-video__subtitle {
        font-size: 24px;
        margin-bottom: 21px; } }
  .intro-video__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 2px 0 0 0;
    background-color: transparent; }
    @media (min-width: 768px) {
      .intro-video__button {
        width: 30px;
        height: 30px; } }
    .intro-video__button:hover svg, .intro-video__button:active svg {
      color: #f94792; }
    .intro-video__button svg {
      width: 10px;
      height: 8px;
      color: #2eb7c6;
      -webkit-transition: 0.2s;
      transition: 0.2s; }

.landing-page .intro-video__video {
  position: relative;
  height: 568px; }
  @media (min-width: 768px) {
    .landing-page .intro-video__video {
      height: 737px; } }
  @media (min-width: 1440px) {
    .landing-page .intro-video__video {
      height: 100vh;
      min-height: 900px; } }

.landing-page .intro-video__content {
  top: 140px; }
  @media (min-width: 1366px) {
    .landing-page .intro-video__content {
      top: 238px; } }

.landing-page .intro-video__title {
  width: auto; }
  .landing-page .intro-video__title h1 {
    margin-bottom: 144px;
    display: inline-block; }
    @media (min-width: 768px) {
      .landing-page .intro-video__title h1 {
        margin-bottom: 208px; } }
    @media (min-width: 1366px) {
      .landing-page .intro-video__title h1 {
        line-height: 111px; } }
    @media (min-width: 1440px) {
      .landing-page .intro-video__title h1 {
        margin-bottom: 206px; } }
    .landing-page .intro-video__title h1 span:nth-child(2) {
      margin-left: 10px;
      margin-right: 10px;
      margin-top: -4px; }
      @media (min-width: 1366px) {
        .landing-page .intro-video__title h1 span:nth-child(2) {
          margin-top: -17px;
          margin-left: 30px;
          margin-right: 30px; } }
    .landing-page .intro-video__title h1 span.firstspan {
      display: block;
      margin-left: 0;
      margin-top: 24px;
      font-size: 22px;
      color: #fff;
      text-transform: none;
      font-family: "Fs Me";
      font-weight: 700;
      line-height: 40px; }
      @media (min-width: 768px) {
        .landing-page .intro-video__title h1 span.firstspan {
          font-size: 30px;
          margin-top: 30px; } }
      @media (min-width: 1366px) {
        .landing-page .intro-video__title h1 span.firstspan {
          font-size: 54px;
          line-height: 120px; } }
    .landing-page .intro-video__title h1 .title-wrap span:nth-child(1),
    .landing-page .intro-video__title h1 .title-wrap span:nth-child(2),
    .landing-page .intro-video__title h1 .title-wrap span:nth-child(3) {
      font-size: 70px;
      color: #fff; }
      @media (min-width: 400px) {
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(1),
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(2),
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(3) {
          font-size: 80px; } }
      @media (min-width: 768px) {
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(1),
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(2),
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(3) {
          font-size: 105px; } }
      @media (min-width: 1366px) {
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(1),
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(2),
        .landing-page .intro-video__title h1 .title-wrap span:nth-child(3) {
          font-size: 174px; } }

.landing-page .intro-video__subtitle {
  font-size: 16px;
  line-height: 23px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px; }
  @media (min-width: 375px) {
    .landing-page .intro-video__subtitle {
      min-width: 350px; } }
  @media (min-width: 768px) {
    .landing-page .intro-video__subtitle {
      font-size: 24px;
      margin-bottom: 21px; } }

.thank-content {
  top: 60px;
  width: 100%; }
  @media (min-width: 1366px) {
    .thank-content {
      top: 80px; } }
  @media (min-width: 1920px) {
    .thank-content {
      top: 100px; } }
  .thank-content h1 {
    font-size: 75px;
    margin-bottom: 3px;
    padding-top: 38px;
    color: #fff; }
  .thank-content h2 {
    text-transform: none;
    margin-bottom: 20px; }
  .thank-content p {
    padding: 5px 20px; }
  .thank-content__bg {
    margin-top: -12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-image: url("../images/thank-bluewave.png");
    background-repeat: repeat-x;
    backdrop-filter: blur(10px);
    background-position: bottom center; }
  .thank-content__text {
    margin-top: -21px;
    padding-top: 23px;
    background: rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); }
  .thank-content__pad {
    padding-bottom: 42px; }

.thank-content-top {
  background-image: url("../images/thank-bluewave.png");
  background-repeat: repeat-x;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-position: top center; }

.title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.intro-video-image .intro-video__poster {
  background-size: cover;
  background-position: 60%; }
  @media (min-width: 1366px) {
    .intro-video-image .intro-video__poster {
      background-position: 60% 0; } }

.intro-quote__title h1 {
  font-size: 75px;
  line-height: 0.8;
  color: white;
  text-transform: uppercase;
  margin-bottom: 16px; }
  @media (min-width: 430px) {
    .intro-quote__title h1 {
      font-size: 102px; } }
  @media (min-width: 768px) {
    .intro-quote__title h1 {
      max-width: 500px;
      margin-inline: auto; } }
  @media (min-width: 1366px) {
    .intro-quote__title h1 {
      max-width: 100%;
      font-size: 170px;
      letter-spacing: 1px;
      margin-bottom: 40px; } }

.intro-quote__title p {
  font-weight: 900;
  color: white;
  display: block;
  font-size: 29px;
  line-height: 37px;
  text-transform: none; }
  @media (min-width: 1366px) {
    .intro-quote__title p {
      font-size: 55px;
      line-height: 37px;
      text-transform: none;
      letter-spacing: -0.5px; } }

.intro-video-image .intro-video__video {
  min-height: 70dvh; }
  @media (min-width: 1366px) {
    .intro-video-image .intro-video__video {
      min-height: 90dvh; } }

.intro-video-image .intro-video__content {
  height: 70dvh; }
  @media (min-width: 1366px) {
    .intro-video-image .intro-video__content {
      min-height: 90dvh; } }

.intro-video-image .intro-video__content {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  left: 0;
  top: -80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.intro-video-image .intro-video__subtitle {
  position: absolute;
  bottom: 100px;
  font-size: 18px; }
  @media (min-width: 768px) {
    .intro-video-image .intro-video__subtitle {
      margin-bottom: 0; } }
  @media (min-width: 1366px) {
    .intro-video-image .intro-video__subtitle {
      font-size: 24px; } }

.intro-video-image .intro-video__button {
  position: absolute;
  bottom: 55px;
  width: 30px;
  height: 30px; }
  @media (min-width: 1366px) {
    .intro-video-image .intro-video__button {
      bottom: 50px; } }

.intro-video.section.intro-video-image {
  padding-bottom: 60px; }
  @media (min-width: 768px) {
    .intro-video.section.intro-video-image {
      padding-bottom: 40px; } }

.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 250px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  color: #fff;
  margin-bottom: 50px; }
  @media (min-width: 1366px) {
    .page-header {
      min-height: 445px; } }
  .page-header h1 {
    font-weight: 400; }
    @media (min-width: 1366px) {
      .page-header h1 {
        margin-bottom: 100px; } }

.page-header-secondary .text-left {
  padding-top: 0;
  padding-bottom: 0; }

.page-header-secondary h1 {
  font-size: 34px; }
  @media (min-width: 1025px) {
    .page-header-secondary h1 {
      line-height: 1;
      margin-bottom: 6px;
      font-size: 80px; } }

.page-header-secondary p {
  font-size: 22px; }
  @media (min-width: 1025px) {
    .page-header-secondary p {
      font-size: 26px;
      letter-spacing: -0.6px; } }

@media (min-width: 1025px) {
  .page-header-secondary {
    min-height: 405px;
    padding-bottom: 76px; } }

@media (min-width: 1366px) {
  .page-header-secondary {
    padding-bottom: 0; } }

@media (min-width: 768px) {
  .page-header__tabs {
    z-index: 2;
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    min-height: 76px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 13px;
    background-color: #846fb3; } }

@media (min-width: 1366px) {
  .page-header__tabs {
    position: static;
    padding: 0;
    background-color: transparent;
    display: block; } }

.section-job-details__intro {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 768px) {
    .section-job-details__intro {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.overview {
  width: 100%;
  background-color: #f0f0f0;
  text-align: left;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  max-height: 62px;
  padding: 13px 34px; }
  @media (min-width: 1366px) {
    .overview {
      padding: 13px 20px; } }

.overview p {
  letter-spacing: 0;
  font-size: 28px;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  color: #4d2f91; }
  @media (min-width: 1025px) {
    .overview p {
      letter-spacing: 0.9px; } }

.section-job-details__aside {
  width: 100%; }
  @media (min-width: 768px) {
    .section-job-details__aside {
      width: 44%;
      margin-right: 31px; } }
  @media (min-width: 1025px) {
    .section-job-details__aside {
      width: 22%;
      margin-right: 0; } }

.section-job-details__aside-list {
  list-style-type: none;
  padding: 30px 20px;
  background-color: #684fa2; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list {
      padding: 36px 20px; } }

.aside-list-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%; }
  @media (min-width: 1366px) {
    .aside-list-text-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: baseline;
          -ms-flex-pack: baseline;
              justify-content: baseline; } }

.section-job-details__aside-list svg {
  height: 20px;
  width: 20px;
  margin-right: 10px; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list svg {
      margin-right: 18px; } }

.section-job-details__aside-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list li {
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline; } }

.section-job-details__aside-list ul li:not(:last-child) {
  margin-bottom: 14px; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list ul li:not(:last-child) {
      margin-bottom: 16px; } }

.section-job-details__aside-list h3 {
  letter-spacing: 0.5px;
  font-size: 14px;
  font-family: "FS Me", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #f0f0f0;
  margin-bottom: 0;
  margin-right: 4px; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list h3 {
      font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
      font-size: 24px;
      margin-right: 0px; } }

.section-job-details__aside-list h3::after {
  content: ":"; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list h3::after {
      display: none; } }

.section-job-details__aside-list p {
  color: #f0f0f0;
  margin-bottom: 0; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list p {
      text-transform: uppercase; } }

.section-job-details__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 0;
  background-color: #846fb3;
  padding: 16px 18px; }

.section-job-details__article {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  color: #f0f0f0;
  margin-top: 40px; }
  @media (min-width: 768px) {
    .section-job-details__article {
      width: 44%;
      margin-left: 31px;
      padding-bottom: 0;
      margin-bottom: 80px;
      margin-top: 0px; } }
  @media (min-width: 1025px) {
    .section-job-details__article {
      width: 78%;
      padding-left: 56px;
      margin-left: 0; } }

.section-job-details__article p {
  margin-bottom: 18px;
  line-height: 22px; }
  @media (min-width: 1025px) {
    .section-job-details__article p {
      margin-bottom: 20px; } }

.section-job-details__article h3 {
  color: #2eb7c6;
  font-size: 28px;
  margin-bottom: 10px; }
  @media (min-width: 1025px) {
    .section-job-details__article h3 {
      font-size: 34px;
      font-size: 40px;
      margin-bottom: 16px; } }

.section-job-details__article ul:not(:last-child) {
  margin-bottom: 20px; }

.section-job-details__article ul li::before {
  content: "";
  display: block;
  background-color: #2eb7c6;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 8px; }
  @media (min-width: 1025px) {
    .section-job-details__article ul li::before {
      margin-top: 12px; } }

.section-job-details__article ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.section-job-details__article ul li:not(:last-child) {
  margin-bottom: 8px; }

.section-job-details__location h3 {
  color: #f0f0f0;
  font-size: 26px;
  margin-bottom: 0; }

.section-job-details__location svg {
  margin-right: 22px;
  height: 20px;
  width: 20px; }

.job-details-map {
  width: 100%;
  height: 359px; }

.job-page .header__apply-now {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 768px) {
    .job-page .header__apply-now {
      display: none; } }

.job-page .search {
  display: none; }
  @media (min-width: 1366px) {
    .job-page .search {
      display: block; } }

.job-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 17px;
  gap: 17px; }
  .job-details__icon {
    width: 20px;
    height: 20px;
    margin-right: 20px; }
  .job-details__term {
    font-weight: 700;
    text-transform: uppercase; }
  .job-details li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase; }

.location {
  border-radius: 14px;
  background-color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center; }
  .location__label {
    position: absolute;
    right: -155px;
    top: -60px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
            transform-origin: top left;
    font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 26px;
    line-height: 27px;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 106px; }
    @media (min-width: 1366px) {
      .location__label {
        right: -137px;
        top: -51px; } }
  .location__image {
    position: relative;
    height: calc(100vw * 283 / 430);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden; }
    @media (min-width: 768px) {
      .location__image {
        height: 283px; } }
    @media (min-width: 1366px) {
      .location__image {
        height: 388px; } }
    .location__image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      border-top-right-radius: 10px;
      border-top-left-radius: 10px; }
  .location__content {
    padding: 20px 20px 0; }
    @media (min-width: 1366px) {
      .location__content {
        padding-top: 40px; } }
  .location__text {
    margin-bottom: 20px; }
    .location__text h2 {
      margin-bottom: 20px; }
      @media (min-width: 1366px) {
        .location__text h2 {
          margin-bottom: 40px;
          line-height: 40px; } }
  .location__card-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px; }
    @media (min-width: 375px) {
      .location__card-wrap {
        margin: 0 -5px; } }
    @media (min-width: 1366px) {
      .location__card-wrap {
        margin: 0 -8px;
        row-gap: 16px; } }
    .location__card-wrap li {
      list-style-type: none; }
      @media (min-width: 375px) {
        .location__card-wrap li {
          padding: 0 5px;
          width: 50%; } }
      @media (min-width: 768px) {
        .location__card-wrap li {
          width: 100%; } }
      @media (min-width: 1025px) {
        .location__card-wrap li {
          width: 50%; } }
      @media (min-width: 1440px) {
        .location__card-wrap li {
          width: calc(100% / 3);
          padding: 0 8px; } }
  .location__map {
    position: relative;
    margin-top: auto;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 300px;
    margin-top: 50px;
    border-radius: 14px;
    background-color: #000; }
    @media (min-width: 1366px) {
      .location__map {
        height: 415px; } }
    .location__map:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 75px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%234d2f91' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23ffffff' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 100%;
      background-repeat: no-repeat;
      background-position: 50% 100%;
      z-index: 1; }
    .location__map img {
      -o-object-fit: cover;
         object-fit: cover;
      height: 100%;
      width: 100%; }
  .location__map-marker {
    z-index: 1;
    position: absolute;
    top: 65px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 94px;
    height: 94px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 1366px) {
      .location__map-marker {
        top: 50px;
        width: 121px;
        height: 121px; } }
    .location__map-marker svg {
      width: 30px; }
      @media (min-width: 1366px) {
        .location__map-marker svg {
          width: 44px; } }

.campuses {
  position: relative;
  margin-top: -120px;
  margin-bottom: -120px;
  padding-bottom: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%232eb7c6' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%232eb7c6' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%232eb7c6' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%232eb7c6' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%232eb7c6' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%232eb7c6' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E");
  background-position-y: 0, 26%, 51%, 76%, 88.5%, 101%;
  background-size: 400vh;
  background-repeat: no-repeat; }
  @media (min-width: 768px) {
    .campuses {
      background-size: 320vh;
      padding-bottom: 200px; } }
  @media (min-width: 1366px) {
    .campuses {
      background-position-y: 0, 25%, 50%, 62.5%, 75%, 100%;
      background-size: 180%;
      margin-bottom: -130px; } }
  @media (min-width: 1600px) {
    .campuses {
      background-size: 130%; } }
  @media (min-width: 1921px) {
    .campuses {
      background-size: 120%;
      background-repeat: repeat-x; } }
  .campuses__description {
    position: relative;
    z-index: 1;
    margin: 0 auto 36px;
    max-width: 452px; }
    @media (min-width: 768px) {
      .campuses__description {
        margin-bottom: 20px; } }
    @media (min-width: 1366px) {
      .campuses__description {
        margin-bottom: 80px;
        max-width: 1088px; } }
    .campuses__description .campuses__subtitle {
      font-size: 17px; }
      @media (min-width: 1366px) {
        .campuses__description .campuses__subtitle {
          font-size: 24px;
          margin-bottom: 40px; } }
  .campuses__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 40px;
    position: relative;
    z-index: 11; }
    @media (min-width: 768px) {
      .campuses__row {
        -webkit-column-gap: 62px;
           -moz-column-gap: 62px;
                column-gap: 62px;
        row-gap: 20px; } }
    @media (min-width: 1025px) {
      .campuses__row {
        -webkit-column-gap: 122px;
           -moz-column-gap: 122px;
                column-gap: 122px;
        row-gap: 80px; } }
  .campuses__col {
    width: 100%; }
    @media (min-width: 768px) {
      .campuses__col {
        width: calc(50% - 31px); } }
    @media (min-width: 1025px) {
      .campuses__col {
        width: calc(50% - 61px); } }

.description-card {
  padding: 20px 10px;
  border-radius: 14px;
  height: 100%; }
  @media (min-width: 1366px) {
    .description-card {
      padding: 20px 15px; } }
  .description-card__image {
    width: 53px;
    height: 40px;
    margin: 0 auto 20px;
    color: #2eb7c6; }
  .description-card__title {
    margin-bottom: 10px; }
    .description-card__title h2 {
      font-size: 26px;
      line-height: 28px;
      margin-bottom: 0; }
      @media (min-width: 1366px) {
        .description-card__title h2 {
          line-height: 27px; } }
  .description-card p {
    margin-bottom: 0; }
    @media (min-width: 1366px) {
      .description-card p {
        font-size: 14px;
        line-height: 17px; } }

.our-values {
  overflow: hidden;
  padding-bottom: 143px; }
  @media (min-width: 1366px) {
    .our-values {
      padding-bottom: 50px; } }
  @media (min-width: 1920px) {
    .our-values {
      padding-bottom: 20px; } }
  .our-values__inner {
    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; }
    @media (min-width: 1366px) {
      .our-values__inner {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 600px 150px 616px;
        grid-template-columns: 600px 616px;
            grid-template-areas: "circle title" "circle slider";
        -webkit-column-gap: 150px;
           -moz-column-gap: 150px;
                column-gap: 150px; } }
    @media (min-width: 1920px) {
      .our-values__inner {
        -ms-grid-columns: 700px 172px 36%;
        grid-template-columns: 700px 36%;
        -webkit-column-gap: 172px;
           -moz-column-gap: 172px;
                column-gap: 172px; } }
  @media (min-width: 1366px) {
    .our-values__title {
      grid-area: title;
      -ms-grid-row-align: end;
          align-self: end; } }
  .our-values__title h2 {
    font-size: 42px;
    line-height: 34px;
    margin-bottom: 45px; }
    @media (min-width: 1366px) {
      .our-values__title h2 {
        font-size: 80px;
        line-height: 81px;
        margin-bottom: 30px; } }
  .our-values__circle {
    position: relative;
    width: calc(100vw - 10px);
    margin: 0 -30px 20px;
    aspect-ratio: 418 / 431;
    max-width: 418px;
    padding: 30px 30px 43px; }
    @media (min-width: 1366px) {
      .our-values__circle {
        grid-area: circle;
        margin: 0;
        aspect-ratio: 600 / 620;
        max-width: 600px;
        padding: 40px 40px 60px; } }
    @media (min-width: 1920px) {
      .our-values__circle {
        aspect-ratio: 700 / 731;
        max-width: 700px;
        padding: 50px 50px 81px; } }
  .our-values__heart {
    position: absolute;
    max-width: 230px;
    width: 40vw;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    @media (min-width: 1366px) {
      .our-values__heart {
        max-width: 350px;
        z-index: -1; } }
    @media (min-width: 1920px) {
      .our-values__heart {
        max-width: 450px; } }
    .our-values__heart video {
      -o-object-fit: cover;
         object-fit: cover; }
      @media (min-width: 1366px) {
        .our-values__heart video {
          -o-object-fit: contain;
             object-fit: contain; } }
    .our-values__heart::before, .our-values__heart::after {
      content: "";
      bottom: 0;
      position: absolute; }
    .our-values__heart::before {
      height: 111px;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#ffffff00));
      background: linear-gradient(to top, #ffffff, #ffffff00); }
      @media (min-width: 1366px) {
        .our-values__heart::before {
          bottom: 60px; } }
      @media (min-width: 1366px) {
        .our-values__heart::before {
          bottom: 20px;
          height: 201px; } }
    .our-values__heart::after {
      top: 0;
      bottom: 0;
      right: 0;
      left: 72%;
      background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(#ffffff00));
      background: linear-gradient(to left, #ffffff, #ffffff00); }
  .our-values__circle-list {
    position: relative;
    height: 100%;
    width: 100%;
    border: 5px solid #f0f0f0;
    border-radius: 50%;
    z-index: 2; }
  .our-values__circle-item {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform-origin: calc( calc(125px + (179 - 125) * ((100vw - 320px) / (428 - 320))) + 30px) 30px;
        -ms-transform-origin: calc( calc(125px + (179 - 125) * ((100vw - 320px) / (428 - 320))) + 30px) 30px;
            transform-origin: calc( calc(125px + (179 - 125) * ((100vw - 320px) / (428 - 320))) + 30px) 30px;
    top: calc(50% - 30px);
    left: -30px;
    cursor: pointer; }
    @media (min-width: 428px) {
      .our-values__circle-item {
        -webkit-transform-origin: calc(179px + 30px) 30px;
            -ms-transform-origin: calc(179px + 30px) 30px;
                transform-origin: calc(179px + 30px) 30px; } }
    @media (min-width: 1366px) {
      .our-values__circle-item {
        width: 80px;
        height: 80px;
        -webkit-transform-origin: calc(260px + 40px) 40px;
            -ms-transform-origin: calc(260px + 40px) 40px;
                transform-origin: calc(260px + 40px) 40px;
        top: calc(50% - 40px);
        left: -40px; }
        .our-values__circle-item img {
          width: 40px; } }
    @media (min-width: 1920px) {
      .our-values__circle-item {
        width: 100px;
        height: 100px;
        -webkit-transform-origin: calc(300px + 50px) 50px;
            -ms-transform-origin: calc(300px + 50px) 50px;
                transform-origin: calc(300px + 50px) 50px;
        top: calc(50% - 50px);
        left: -50px; }
        .our-values__circle-item img {
          width: 48px; } }
    .our-values__circle-item.active {
      width: 94px;
      height: 94px;
      -webkit-transform-origin: calc( calc(125px + (179 - 125) * ((100vw - 320px) / (428 - 320))) + 47px) 47px;
          -ms-transform-origin: calc( calc(125px + (179 - 125) * ((100vw - 320px) / (428 - 320))) + 47px) 47px;
              transform-origin: calc( calc(125px + (179 - 125) * ((100vw - 320px) / (428 - 320))) + 47px) 47px;
      top: calc(50% - 47px);
      left: -47px;
      cursor: auto; }
      .our-values__circle-item.active img {
        width: 48px; }
        @media (min-width: 1366px) {
          .our-values__circle-item.active img {
            width: 68px; } }
        @media (min-width: 1920px) {
          .our-values__circle-item.active img {
            width: 82px; } }
      @media (min-width: 428px) {
        .our-values__circle-item.active {
          -webkit-transform-origin: calc(179px + 47px) 47px;
              -ms-transform-origin: calc(179px + 47px) 47px;
                  transform-origin: calc(179px + 47px) 47px; } }
      @media (min-width: 1366px) {
        .our-values__circle-item.active {
          width: 120px;
          height: 120px;
          -webkit-transform-origin: calc(260px + 60px) 60px;
              -ms-transform-origin: calc(260px + 60px) 60px;
                  transform-origin: calc(260px + 60px) 60px;
          top: calc(50% - 60px);
          left: -60px; } }
      @media (min-width: 1920px) {
        .our-values__circle-item.active {
          width: 160px;
          height: 160px;
          -webkit-transform-origin: calc(300px + 80px) 80px;
              -ms-transform-origin: calc(300px + 80px) 80px;
                  transform-origin: calc(300px + 80px) 80px;
          top: calc(50% - 80px);
          left: -80px; } }

.values-slider {
  width: 100%;
  max-width: 358px; }
  @media (min-width: 1366px) {
    .values-slider {
      max-width: none;
      grid-area: slider;
      -ms-grid-row-align: start;
          align-self: start; } }
  .values-slider .swiper-slide {
    text-align: center;
    margin-bottom: 40px; }
    @media (min-width: 1366px) {
      .values-slider .swiper-slide {
        text-align: left; }
        .values-slider .swiper-slide p {
          width: 500px; } }
    .values-slider .swiper-slide h2 {
      margin-bottom: 15px; }
      @media (min-width: 1366px) {
        .values-slider .swiper-slide h2 {
          margin-bottom: 30px; } }
  .values-slider__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 1366px) {
      .values-slider__navigation {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    .values-slider__navigation .swiper-button-prev,
    .values-slider__navigation .swiper-button-next {
      background-color: #4d2f91;
      border-radius: 50%;
      position: static;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      margin: 0; }
      .values-slider__navigation .swiper-button-prev svg,
      .values-slider__navigation .swiper-button-next svg {
        width: 9px;
        height: 10px; }
    .values-slider__navigation .swiper-button-prev svg {
      margin-left: -4px; }
    .values-slider__navigation .swiper-button-next svg {
      margin-right: -4px; }

.transition {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease; }

.our-care {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  gap: 40px; }
  @media (min-width: 768px) {
    .our-care {
      gap: 60px; } }
  @media (min-width: 1366px) {
    .our-care {
      padding-right: 100px;
      padding-left: 100px; } }
  @media (min-width: 768px) {
    .our-care__item {
      width: calc(50% - 30px); } }
  .our-care__photo {
    width: 100%;
    max-width: 358px;
    height: 358px;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto; }
    @media (min-width: 768px) {
      .our-care__photo {
        max-width: 621px;
        height: 273px;
        margin-bottom: 20px; } }
    @media (min-width: 1366px) {
      .our-care__photo {
        height: 388px;
        margin-bottom: 40px; } }
  .our-care__photo_plain {
    border-radius: 10px;
    margin-bottom: 40px; }
  .our-care h2 {
    line-height: 1; }
  .our-care p {
    font-weight: 300;
    margin-bottom: 0;
    text-align: left; }
    @media (min-width: 1366px) {
      .our-care p {
        padding-right: 30px;
        padding-left: 30px; } }
    @media (min-width: 1920px) {
      .our-care p {
        padding-right: 60px;
        padding-left: 60px; } }

@media (min-width: 768px) {
  .slider-anywhere {
    padding-right: 20px;
    padding-left: 20px;
    margin-right: 20px;
    margin-left: 20px; } }

@media (min-width: 1366px) {
  .slider-anywhere {
    margin-right: 20px;
    margin-left: 20px; } }

.slider-anywhere .swiper-slider {
  height: auto; }

.slider-anywhere .swiper-slide {
  height: auto; }

@media (min-width: 1920px) {
  .slider-anywhere .swiper-button-prev,
  .slider-anywhere .swiper-button-next {
    display: none; } }

@media (min-width: 768px) {
  .slider-anywhere .swiper-button-next {
    right: -9px; } }

@media (min-width: 768px) {
  .slider-anywhere .swiper-button-prev {
    left: -9px; } }

.slider-anywhere__slide {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%; }
  .slider-anywhere__slide a {
    display: none; }
    @media (min-width: 768px) {
      .slider-anywhere__slide a {
        display: block; } }
  .slider-anywhere__slide h2 {
    line-height: 1;
    margin-bottom: 20px; }
  .slider-anywhere__slide p {
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: left; }
    @media (min-width: 1366px) {
      .slider-anywhere__slide p {
        margin-bottom: 30px; } }
  .slider-anywhere__slide .button {
    display: none; }
    @media (min-width: 1366px) {
      .slider-anywhere__slide .button {
        display: block;
        margin-top: auto; } }

.slider-anywhere__slide-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100px;
  margin-bottom: 12px;
  padding-left: 40px; }
  @media (min-width: 768px) {
    .slider-anywhere__slide-icon {
      padding-left: 0px; } }
  @media (min-width: 1366px) {
    .slider-anywhere__slide-icon {
      padding-left: 20px; } }

.slider-anywhere__slide-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 40px;
  padding-left: 40px;
  height: 100%; }
  @media (min-width: 768px) {
    .slider-anywhere__slide-text {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 1366px) {
    .slider-anywhere__slide-text {
      padding-right: 20px;
      padding-left: 20px; } }

.why-jewish-care h2 {
  line-height: 1;
  margin-bottom: 40px; }

.why-jewish-care__list {
  display: -ms-grid;
  display: grid;
  list-style-type: none;
  gap: 40px 10px;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr; }
  @media (min-width: 1025px) {
    .why-jewish-care__list {
      -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media (min-width: 1366px) {
    .why-jewish-care__list {
      gap: 16px; } }

.why-jewish-care__item {
  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: 200px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.why-jewish-care__item img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px; }
  @media (min-width: 1025px) {
    .why-jewish-care__item img {
      width: 56px;
      height: 70px;
      margin-bottom: 25px; } }
  @media (min-width: 1366px) {
    .why-jewish-care__item img {
      width: 56px;
      height: 70px;
      margin-bottom: 25px; } }

.why-jewish-care__item h3 {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
  color: #4d2f91;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 20px;
  text-align: left; }
  @media (min-width: 1025px) {
    .why-jewish-care__item h3 {
      font-size: 40px; } }

.why-jewish-care__item p {
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  color: #707070; }
  @media (min-width: 1025px) {
    .why-jewish-care__item p {
      font-size: 18px; } }
  @media (min-width: 1366px) {
    .why-jewish-care__item p {
      text-align: start;
      font-size: 18px; } }

.why-jewish-care__note {
  margin-bottom: 80px;
  margin-top: 40px; }
  @media (min-width: 1366px) {
    .why-jewish-care__note {
      margin-top: 60px;
      margin-bottom: 60px; } }
  .why-jewish-care__note p {
    margin-bottom: 0; }

.section-slider-anywhere {
  padding-top: 65px;
  margin-right: -36px;
  margin-left: -36px;
  padding-right: 18px;
  padding-left: 18px; }
  @media (min-width: 768px) {
    .section-slider-anywhere {
      margin-right: -40px;
      margin-left: -40px;
      padding-right: 40px;
      padding-left: 40px; } }
  @media (min-width: 1366px) {
    .section-slider-anywhere {
      margin-right: 0;
      margin-left: 0;
      padding-right: 0;
      padding-left: 0;
      padding-top: 65px;
      padding-bottom: 75px; } }
  @media (min-width: 768px) {
    .section-slider-anywhere .container {
      padding-right: 0;
      padding-left: 0; } }
  .section-slider-anywhere__footer {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 70px; }
    @media (min-width: 1366px) {
      .section-slider-anywhere__footer {
        display: none;
        padding-top: 80px;
        padding-bottom: 0; } }
  .section-slider-anywhere__jami {
    padding-top: 40px;
    padding-bottom: 70px; }
    @media (min-width: 1366px) {
      .section-slider-anywhere__jami {
        display: block;
        padding-bottom: 0; } }
  .section-slider-anywhere__title {
    font-size: 24px;
    margin-bottom: 0; }
  .section-slider-anywhere__subtitle {
    margin-bottom: 40px; }
    @media (min-width: 1366px) {
      .section-slider-anywhere__subtitle {
        margin-bottom: 75px; } }
  .section-slider-anywhere h2 {
    line-height: 1; }

.location-info.section {
  padding-bottom: 120px;
  margin-bottom: -50px; }

.location-info.jami {
  margin-bottom: -90px; }

.location-info.wave {
  margin-top: -50px;
  background: linear-gradient(180deg, transparent 0%, transparent 50px, #2eb7c6 50px, #2eb7c6 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); }
  .location-info.wave::before {
    width: 100%; }
    @media (min-width: 768px) {
      .location-info.wave::before {
        width: 200vw; } }
  .location-info.wave:after {
    bottom: 56px; }
    @media (min-width: 1366px) {
      .location-info.wave:after {
        bottom: 0; } }

.location-info__wrapper {
  position: relative; }
  @media (min-width: 768px) {
    .location-info__wrapper {
      display: -ms-grid;
      display: grid;
          grid-template-areas: "title title" "gallery text" "facilities facilities";
      -ms-grid-columns: 1fr 62px 1fr;
      grid-template-columns: 1fr 1fr;
      -webkit-column-gap: 62px;
         -moz-column-gap: 62px;
              column-gap: 62px; }
    .location-info__wrapper > .our-values__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3; } }
  @media (min-width: 1366px) {
    .location-info__wrapper {
          grid-template-areas: "title title" "gallery text" "gallery facilities"; }
    .location-info__wrapper > .our-values__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; } }
  @media (min-width: 1440px) {
    .location-info__wrapper {
          grid-template-areas: "gallery title" "gallery text" "gallery facilities";
      -webkit-column-gap: 85px;
         -moz-column-gap: 85px;
              column-gap: 85px;
      -ms-grid-columns: 1.5fr 85px 1fr;
      grid-template-columns: 1.5fr 1fr; }
    .location-info__wrapper > .our-values__title {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1; } }
  .location-info__wrapper > h2 {
    color: #4d2f91;
    text-align: center; }
    @media (min-width: 768px) {
      .location-info__wrapper > h2 {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 40px;
        grid-area: title; } }
    @media (min-width: 1366px) {
      .location-info__wrapper > h2 {
        font-size: 40px;
        line-height: 40px;
        -ms-flex-item-align: start;
            -ms-grid-row-align: start;
            align-self: start; } }
    .location-info__wrapper > h2 span {
      display: block;
      font-size: 42px;
      line-height: 34px;
      color: #fff; }
      @media (min-width: 1366px) {
        .location-info__wrapper > h2 span {
          font-size: 80px;
          line-height: 81px; } }

.location-info__text p {
  margin-bottom: 30px; }

@media (min-width: 768px) {
  .location-info__text {
    grid-area: text; } }

@media (min-width: 1366px) {
  .location-info__text {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start; } }

@media (min-width: 768px) {
  .location-info__slider-facilities {
    grid-area: facilities;
    -ms-grid-row-align: start;
        align-self: start; } }

.location-info .gallery-slider {
  padding-bottom: 35px;
  margin-bottom: 40px;
  min-width: 1px;
  width: 100%; }
  @media (min-width: 768px) {
    .location-info .gallery-slider {
      margin-bottom: 50px;
      grid-area: gallery;
      align-self: flex-start; } }
  @media (min-width: 1366px){
      .our-values__title {
    -ms-grid-row: 1;
    -ms-grid-column: 3; }
      .our-values__circle {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; }
      .values-slider {
    -ms-grid-row: 2;
    -ms-grid-column: 3; }
      .location-info__wrapper > h2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3; }
    .location-info__wrapper > h2 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
    .location-info__wrapper > .location-info__text {
    -ms-grid-row: 2;
    -ms-grid-column: 2; }
    .location-info__wrapper > .location-info__slider-facilities {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1; }
    .location-info__wrapper > .gallery-slider {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; } }
  @media (min-width: 768px){
    .location-info__wrapper > h2 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3; }
    .location-info__text {
    -ms-grid-row: 2;
    -ms-grid-column: 3; }
    .location-info__slider-facilities {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3; }
    .location-info .gallery-slider {
    -ms-grid-row: 2;
    -ms-grid-column: 1; } }
  @media (min-width: 1440px){
    .location-info__wrapper > h2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1; }
    .location-info__wrapper > .location-info__text {
    -ms-grid-row: 2;
    -ms-grid-column: 3; }
    .location-info__wrapper > .location-info__slider-facilities {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1; }
    .location-info__wrapper > .gallery-slider {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1; } }
  @media (min-width: 1366px) {
    .location-info .gallery-slider {
      padding-bottom: 56px;
      margin-bottom: 10px; } }
  .location-info .gallery-slider .swiper-slide {
    height: 358px;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden; }
    .location-info .gallery-slider .swiper-slide img {
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    @media (min-width: 1366px) {
      .location-info .gallery-slider .swiper-slide {
        margin-bottom: 16px;
        height: 535px; } }
  .location-info .gallery-slider .swiper-pagination {
    bottom: 0; }
    .location-info .gallery-slider .swiper-pagination button.swiper-pagination-bullet {
      width: 10px;
      height: 10px; }
      @media (min-width: 1366px) {
        .location-info .gallery-slider .swiper-pagination button.swiper-pagination-bullet {
          width: 12px;
          height: 12px; } }
  .location-info .gallery-slider .gallery-nav .swiper-slide {
    margin-bottom: 0;
    aspect-ratio: 1;
    height: auto; }
    @media (min-width: 1366px) {
      .location-info .gallery-slider .gallery-nav .swiper-slide {
        height: 244px; } }

.slider-facilities {
  margin: 0 -20px;
  padding: 0 20px; }
  .slider-facilities::after, .slider-facilities::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 22px;
    background-color: #2eb7c6;
    z-index: 2; }
  .slider-facilities::after {
    right: 0; }
  .slider-facilities::before {
    left: 0; }
  .slider-facilities > h2 {
    line-height: 28px; }
    @media (min-width: 1366px) {
      .slider-facilities > h2 {
        line-height: 40px; } }
  @media (min-width: 581px) {
    .slider-facilities .swiper-wrapper {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .slider-facilities .swiper-slide {
    height: 140px;
    padding: 17px 20px;
    height: auto;
    width: 170px; }
    .slider-facilities .swiper-slide::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 1px;
      height: 100%;
      background-color: #fff; }
    .slider-facilities .swiper-slide:last-child::after {
      display: none; }
    .slider-facilities .swiper-slide h2 {
      font-size: 26px;
      line-height: 28px;
      margin-bottom: 0; }
    .slider-facilities .swiper-slide svg {
      width: 49px;
      height: 40px;
      margin: 0 auto 10px; }
  .slider-facilities .swiper-button-prev,
  .slider-facilities .swiper-button-next {
    background-color: #4d2f91;
    border-radius: 50%; }
    @media (min-width: 581px) {
      .slider-facilities .swiper-button-prev,
      .slider-facilities .swiper-button-next {
        display: none; } }
    .slider-facilities .swiper-button-prev svg,
    .slider-facilities .swiper-button-next svg {
      width: 9px;
      height: 10px; }
  .slider-facilities .swiper-button-prev svg {
    margin-right: 2px; }
  .slider-facilities .swiper-button-next svg {
    margin-left: 2px; }

.jobs-list {
  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: 20px;
  list-style-type: none; }
  @media (min-width: 768px) {
    .jobs-list {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  @media (min-width: 1366px) {
    .jobs-list {
      gap: 40px; } }

.card__header {
  padding: 25px 40px;
  background-color: #4d2f91;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  color: #fff; }

.card__body {
  padding: 40px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  background-color: #b3a8cb;
  color: #707070; }

.card h3 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase; }
  @media (min-width: 1366px) {
    .card h3 {
      font-size: 30px; } }

.card--inverse .card__body {
  background-color: #fff; }

.wave {
  z-index: 1;
  position: relative;
  min-height: 600px;
  margin-top: -103px;
  margin-bottom: -103px;
  padding-top: 64px;
  padding-bottom: 64px;
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden; }
  @media (min-width: 768px) {
    .wave {
      min-height: 687px; } }
  @media (min-width: 1366px) {
    .wave {
      padding-top: 120px;
      padding-bottom: 120px; } }
  @media (min-width: 1921px) {
    .wave {
      background-size: auto !important;
      background-repeat: repeat-x !important; } }
  .wave:after, .wave:before {
    content: "";
    z-index: 1;
    position: absolute;
    width: 200vw;
    height: 64px;
    background-repeat: no-repeat; }
    @media (min-width: 1366px) {
      .wave:after, .wave:before {
        height: 122px; } }
  .wave:before {
    top: 0;
    left: 0;
    background-size: 100% !important; }
    @media (min-width: 768px) {
      .wave:before {
        background-size: 100vw !important; } }
    @media (min-width: 1921px) {
      .wave:before {
        background-size: auto !important; } }
  .wave:after {
    bottom: 1px;
    left: 0;
    background-position: 5% 95% !important;
    height: 64px;
    background-size: 100% !important; }
    @media (min-width: 768px) {
      .wave:after {
        background-position: 0 95% !important;
        background-size: 100vw !important; } }
    @media (min-width: 1366px) {
      .wave:after {
        height: 120px; } }
    @media (min-width: 1921px) {
      .wave:after {
        background-size: auto !important; } }

#section1.section.wave {
  min-height: 500px; }
  @media (min-width: 768px) {
    #section1.section.wave {
      min-height: 530px; } }
  @media (min-width: 1025px) {
    #section1.section.wave {
      min-height: 420px; } }
  @media (min-width: 1366px) {
    #section1.section.wave {
      min-height: 670px; } }

#section2.section.wave {
  min-height: 880px; }
  @media (min-width: 768px) {
    #section2.section.wave {
      min-height: 820px; } }
  @media (min-width: 1025px) {
    #section2.section.wave {
      min-height: 700px; } }
  @media (min-width: 1366px) {
    #section2.section.wave {
      min-height: 980px; } }
  @media (min-width: 1920px) {
    #section2.section.wave {
      min-height: 920px; } }

.section.section-recent-jobs.wave {
  min-height: 500px;
  margin-top: -65px;
  padding-top: 90px;
  z-index: -1; }
  @media (min-width: 1366px) {
    .section.section-recent-jobs.wave {
      padding-top: 155px;
      margin-top: -101px; } }

.wave--primary {
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #4d2f91 64px, #4d2f91 calc(100% - 64px), transparent calc(100% - 64px), transparent 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  color: #fff; }
  @media (min-width: 1366px) {
    .wave--primary {
      background: linear-gradient(180deg, transparent 0%, transparent 120px, #4d2f91 120px, #4d2f91 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); } }
  .wave--primary:before, .wave--primary:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%234d2f91' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%234d2f91' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"); }

.wave--primary-two:after {
  background: #4d2f91; }

.wave--secondary {
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #2eb7c6 64px, #2eb7c6 calc(100% - 64px), transparent calc(100% - 64px), transparent 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  color: #fff; }
  @media (min-width: 1366px) {
    .wave--secondary {
      background: linear-gradient(180deg, transparent 0%, transparent 120px, #2eb7c6 120px, #2eb7c6 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); } }
  .wave--secondary:before, .wave--secondary:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%232eb7c6' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%232eb7c6' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"); }

.wave--accent {
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #f94792 64px, #f94792 calc(100% - 64px), transparent calc(100% - 64px), transparent 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  color: #fff; }
  @media (min-width: 1366px) {
    .wave--accent {
      background: linear-gradient(180deg, transparent 0%, transparent 120px, #f94792 120px, #f94792 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); } }
  .wave--accent:before, .wave--accent:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f94792' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f94792' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"); }

.section.section-recent-jobs.wave--accent:before {
  top: 63px;
  height: 0px; }

@media (min-width: 1366px) {
  .section.section-recent-jobs.wave--accent:before {
    background: #f94792;
    height: 25px;
    top: 100px; } }

.wave--secondary-gradient {
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #2a9fac 64px, #2ba2af calc(100% - 64px), transparent calc(100% - 64px), transparent 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  color: #fff; }
  .wave--secondary-gradient:before, .wave--secondary-gradient:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Layer_1' x='0' y='0' style='enable-background:new 0 0 1920 686.63;transform:rotate(180deg)' version='1.1' viewBox='0 0 1920 686.63'%3E%3Cstyle%3E.st0%7Bfill:%232eb7c6%7D.st1%7Bfill:%23f94792%7D.st3%7Bopacity:.2;fill:url(%23SVGID_00000034808356845797532790000005328753806133524388_)%7D.st4%7Bfill:%234d2f91%7D.st5%7Bfill:%23f0f0f0%7D%3C/style%3E%3ClinearGradient id='SVGID_1_' x1='960' x2='960' y1='0' y2='687.244' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%232a9ca8'/%3E%3Cstop offset='1' style='stop-color:%232eb7c5'/%3E%3C/linearGradient%3E%3Cpath d='M1919.56 27s-472.92 60.76-959.48 0C800.36 7.05 641.93.2 501.16 0h-11.84C218.92.32 16.34 24.83 0 26.86v633s473.13-61.61 960.07 0c476.7 60.31 940.61 2.54 959.93.08V285.11L1919.56 27z' style='fill:url(%23SVGID_1_)'/%3E%3C/svg%3E"); }

.wave--muted {
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #f0f0f0 64px, #f0f0f0 calc(100% - 64px), transparent calc(100% - 64px), transparent 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%; }
  @media (min-width: 1366px) {
    .wave--muted {
      background: linear-gradient(180deg, transparent 0%, transparent 120px, #f0f0f0 120px, #f0f0f0 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); } }
  .wave--muted:before, .wave--muted:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"); }

.landing-page .section-job-details.wave {
  z-index: -1; }

.landing-page .wave--muted:before {
  background: #f0f0f0; }

.wave--mirrored:after {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  background-position: 50% 95% !important; }
  @media (min-width: 1921px) {
    .wave--mirrored:after {
      background-size: auto !important; } }

.wave--jami {
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #29235C 64px, #29235C calc(100% - 64px), transparent calc(100% - 64px), transparent 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  color: #fff; }
  @media (min-width: 1366px) {
    .wave--jami {
      background: linear-gradient(180deg, transparent 0%, transparent 120px, #29235C 120px, #29235C calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); } }
  .wave--jami:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%2329235C' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%2329235C' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"); }
  .wave--jami:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%2329235C' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%2329235C' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"); }

.wave--jami-two {
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #62CAC7 64px, #62CAC7 calc(100% - 64px), transparent calc(100% - 64px), transparent 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  color: #fff; }
  @media (min-width: 1366px) {
    .wave--jami-two {
      background: linear-gradient(180deg, transparent 0%, transparent 120px, #62CAC7 120px, #62CAC7 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); } }
  .wave--jami-two:before, .wave--jami-two:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%2362CAC7' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%2362CAC7' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"); }

.section-form h2 {
  line-height: 1; }

.section-form .job-details {
  margin-bottom: 40px; }

.section-form__forms .form + .form {
  margin-top: 20px; }
  @media (min-width: 1366px) {
    .section-form__forms .form + .form {
      margin-top: 40px; } }

.section-form__forms .checkbox-input ~ .checkbox-box:before {
  border-color: #fff; }

.section-form__forms .checkbox-input ~ .checkbox-box svg {
  fill: #fff;
  color: #fff; }

.section-job-details__intro {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 768px) {
    .section-job-details__intro {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.overview {
  width: 100%;
  background-color: #f0f0f0;
  text-align: left;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  max-height: 62px;
  padding: 13px 34px; }
  @media (min-width: 1366px) {
    .overview {
      padding: 13px 20px; } }

.overview p {
  letter-spacing: 0;
  font-size: 28px;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  color: #4d2f91; }
  @media (min-width: 1025px) {
    .overview p {
      letter-spacing: 0.9px; } }

.section-job-details__aside {
  width: 100%; }
  @media (min-width: 768px) {
    .section-job-details__aside {
      width: 44%;
      margin-right: 31px; } }
  @media (min-width: 1025px) {
    .section-job-details__aside {
      width: 22%;
      margin-right: 0; } }

.section-job-details__aside-list {
  list-style-type: none;
  padding: 30px 20px;
  background-color: #684fa2; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list {
      padding: 36px 20px; } }

.aside-list-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%; }
  @media (min-width: 1366px) {
    .aside-list-text-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: baseline;
          -ms-flex-pack: baseline;
              justify-content: baseline; } }

.section-job-details__aside-list svg {
  height: 20px;
  width: 20px;
  margin-right: 10px; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list svg {
      margin-right: 18px; } }

.section-job-details__aside-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list li {
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline; } }

.section-job-details__aside-list ul li:not(:last-child) {
  margin-bottom: 14px; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list ul li:not(:last-child) {
      margin-bottom: 16px; } }

.section-job-details__aside-list h3 {
  letter-spacing: 0.5px;
  font-size: 14px;
  font-family: "FS Me", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #f0f0f0;
  margin-bottom: 0;
  margin-right: 4px; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list h3 {
      font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
      font-size: 24px;
      margin-right: 0px; } }

.section-job-details__aside-list h3::after {
  content: ":"; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list h3::after {
      display: none; } }

.section-job-details__aside-list p {
  color: #f0f0f0;
  margin-bottom: 0; }
  @media (min-width: 1366px) {
    .section-job-details__aside-list p {
      text-transform: uppercase; } }

.section-job-details__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 0;
  background-color: #846fb3;
  padding: 16px 18px; }

.section-job-details__article {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  color: #f0f0f0;
  margin-top: 40px; }
  @media (min-width: 768px) {
    .section-job-details__article {
      width: 44%;
      margin-left: 31px;
      padding-bottom: 0;
      margin-bottom: 80px;
      margin-top: 0px; } }
  @media (min-width: 1025px) {
    .section-job-details__article {
      width: 78%;
      padding-left: 56px;
      margin-left: 0; } }

.section-job-details__article p {
  margin-bottom: 18px;
  line-height: 22px; }
  @media (min-width: 1025px) {
    .section-job-details__article p {
      margin-bottom: 20px; } }

.section-job-details__article h3 {
  color: #2eb7c6;
  font-size: 28px;
  margin-bottom: 10px; }
  @media (min-width: 1025px) {
    .section-job-details__article h3 {
      font-size: 34px;
      font-size: 40px;
      margin-bottom: 16px; } }

.section-job-details__article ul:not(:last-child) {
  margin-bottom: 20px; }

.section-job-details__article ul li::before {
  content: "";
  display: block;
  background-color: #2eb7c6;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 8px; }
  @media (min-width: 1025px) {
    .section-job-details__article ul li::before {
      margin-top: 12px; } }

.section-job-details__article ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.section-job-details__article ul li:not(:last-child) {
  margin-bottom: 8px; }

.section-job-details__location h3 {
  color: #f0f0f0;
  font-size: 26px;
  margin-bottom: 0; }

.section-job-details__location svg {
  margin-right: 22px;
  height: 20px;
  width: 20px; }

.job-details-map {
  width: 100%;
  height: 359px; }

.job-page .header__apply-now {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 768px) {
    .job-page .header__apply-now {
      display: none; } }

.job-page .search {
  display: none; }
  @media (min-width: 1366px) {
    .job-page .search {
      display: block; } }

.job-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 17px;
  gap: 17px; }
  .job-details__icon {
    width: 20px;
    height: 20px;
    margin-right: 20px; }
  .job-details__term {
    font-weight: 700;
    text-transform: uppercase; }
  .job-details li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase; }

.our-purpose.section + .section {
  padding-top: 40px; }
  @media (min-width: 1366px) {
    .our-purpose.section + .section {
      padding-top: 0;
      margin-top: -103px; } }

.our-purpose.wave {
  margin-bottom: -50px;
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #4d2f91 64px, #4d2f91 calc(100% - 375px), transparent calc(100% - 375px), transparent 100%);
  padding-bottom: 0; }
  @media (min-width: 1366px) {
    .our-purpose.wave {
      background: linear-gradient(180deg, transparent 0%, transparent 120px, #4d2f91 120px, #4d2f91 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%);
      padding-bottom: 64px; } }
  .our-purpose.wave::after {
    bottom: 0;
    height: 120px;
    bottom: 260px; }
    @media (min-width: 1366px) {
      .our-purpose.wave::after {
        bottom: 0; } }

@media (min-width: 768px) {
  .our-purpose .subtitle {
    margin-bottom: 42px; } }

.our-purpose .slider-purpose {
  z-index: 2;
  position: relative;
  max-width: 1519px;
  overflow: visible;
  margin-top: 32px;
  padding-bottom: 40px; }
  @media (min-width: 768px) {
    .our-purpose .slider-purpose {
      margin-top: 22px; } }
  @media (min-width: 1025px) {
    .our-purpose .slider-purpose {
      overflow: hidden; } }
  @media (min-width: 1366px) {
    .our-purpose .slider-purpose {
      margin-top: 62px; } }
  .our-purpose .slider-purpose .swiper-slide {
    aspect-ratio: 1;
    max-height: 358px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 358px; }
    @media (min-width: 1366px) {
      .our-purpose .slider-purpose .swiper-slide {
        max-width: none; } }
    .our-purpose .slider-purpose .swiper-slide:last-child {
      margin-right: 0; }
    .our-purpose .slider-purpose .swiper-slide img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .our-purpose .slider-purpose .swiper-pagination {
    position: static;
    margin-top: 40px; }
    .our-purpose .slider-purpose .swiper-pagination button.swiper-pagination-bullet {
      background-color: #707070; }
      @media (min-width: 1366px) {
        .our-purpose .slider-purpose .swiper-pagination button.swiper-pagination-bullet {
          background-color: #fff; } }

.video {
  position: relative;
  line-height: 0;
  min-height: inherit; }
  .video iframe {
    width: 100%;
    opacity: 0;
    border: 0;
    height: 500px; }
    @media (min-width: 1366px) {
      .video iframe {
        height: 850px; } }
  .video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat; }
    .video__overlay:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.4)));
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
      pointer-events: none; }
    .video__overlay img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .video__play {
    z-index: 5;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    padding: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: none;
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer; }
    @media (min-width: 1366px) {
      .video__play {
        width: 100px;
        height: 100px; } }
    .video__play:focus, .video__play:hover, .video__play:active {
      color: #4d2f91; }
    .video__play svg {
      width: calc(100% - 2px);
      height: inherit;
      pointer-events: none; }

.section-video {
  min-height: auto;
  background-color: #4d2f91;
  padding-top: 80px; }
  @media (min-width: 768px) {
    .section-video {
      min-height: auto;
      padding-top: 0px;
      padding-left: 7.5%;
      padding-right: 7.5%; } }
  .section-video__wrap {
    height: calc(100vw * 221 / 393);
    margin: 0 -calc($container-padding-x / 2);
    z-index: 2;
    position: relative;
    height: 100%; }
    @media (min-width: 768px) {
      .section-video__wrap {
        height: calc(100vw * 443 / 1024);
        margin: 0; } }
    @media (min-width: 1366px) {
      .section-video__wrap {
        height: calc(100vw * 920 / 1920);
        max-height: 100vh; } }
    @media (min-width: 1920px) {
      .section-video__wrap {
        height: 920px; } }

.slider-jobs {
  margin-right: -36px;
  margin-left: -36px;
  padding-right: 36px;
  padding-left: 36px; }
  @media (min-width: 768px) {
    .slider-jobs {
      margin-right: 0;
      margin-left: 0;
      padding-right: 0;
      padding-left: 0; } }
  .slider-jobs .swiper-slide {
    height: auto; }
    .slider-jobs .swiper-slide > * {
      margin-right: auto;
      margin-left: auto; }
    .slider-jobs .swiper-slide .button {
      min-width: 250px; }
    .slider-jobs .swiper-slide .card-job__header {
      width: calc(100% + 40px); }
      @media (min-width: 1366px) {
        .slider-jobs .swiper-slide .card-job__header {
          width: 100%; } }
    .slider-jobs .swiper-slide .card-job__footer {
      margin-top: auto; }
    .slider-jobs .swiper-slide .card-job.card-job--photo {
      max-width: calc(100% + 40px);
      width: 100%;
      height: 100%; }
      @media (min-width: 1366px) {
        .slider-jobs .swiper-slide .card-job.card-job--photo {
          max-width: calc(100% + 80px); } }

.section-fair-pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 1366px) {
    .section-fair-pay {
      padding-bottom: 160px; } }
  .section-fair-pay__text {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .section-fair-pay__text {
        margin-top: 20px;
        margin-bottom: 0; } }
    .section-fair-pay__text p:first-of-type {
      font-size: 17px; }
  .section-fair-pay .section-fair-pay__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%; }
    .section-fair-pay .section-fair-pay__image img {
      border-radius: 14px;
      -o-object-fit: cover;
         object-fit: cover; }
      @media (min-width: 768px) {
        .section-fair-pay .section-fair-pay__image img {
          height: 303px; } }
      @media (min-width: 1366px) {
        .section-fair-pay .section-fair-pay__image img {
          height: 480px; } }

.jobs-page {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 20px auto 20px auto;
      grid-template-areas: "filter" "list" "form";
  gap: 20px;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%; }
  @media (min-width: 768px) {
    .jobs-page {
          grid-template-areas: "list list filter" "list list ." "list list form";
      -webkit-column-gap: 4%;
         -moz-column-gap: 4%;
              column-gap: 4%;
      -ms-grid-columns: 28% 4% 28% 4% 36%;
      grid-template-columns: 28% 28% 36%; } }
  @media (min-width: 1366px) {
    .jobs-page {
          grid-template-areas: "list list list filter" "list list list ." "list list list form";
      -webkit-column-gap: 120px;
         -moz-column-gap: 120px;
              column-gap: 120px;
      -ms-grid-columns: 3fr 120px 3fr 120px 3fr 120px 1fr;
      grid-template-columns: 3fr 3fr 3fr 1fr; } }
  @media (min-width: 1600px) {
    .jobs-page {
      -ms-grid-columns: 3fr 3fr 3fr 492px;
      grid-template-columns: 3fr 3fr 3fr 492px; } }
  .jobs-page__header p {
    margin-bottom: 40px; }
  .jobs-page__form {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: form; }
  .jobs-page__list {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: list;
    min-height: 600px; }
  .jobs-page__filter {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: filter;
    margin-top: 20px;
    min-height: 500px; }
  @media (min-width: 768px){
    .jobs-page__form {
    -ms-grid-row: 3;
    -ms-grid-column: 5; }
    .jobs-page__list {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3; }
    .jobs-page__filter {
    -ms-grid-row: 1;
    -ms-grid-column: 5; } }
  @media (min-width: 1366px){
    .jobs-page__form {
    -ms-grid-row: 3;
    -ms-grid-column: 7; }
    .jobs-page__list {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5; }
    .jobs-page__filter {
    -ms-grid-row: 1;
    -ms-grid-column: 7; } }
    .jobs-page__filter .card__body {
      padding: 20px; }
      @media (min-width: 1366px) {
        .jobs-page__filter .card__body {
          padding: 20px; } }

.jobs-page-background {
  position: relative;
  margin-top: -103px;
  margin-bottom: -103px;
  padding-bottom: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%232eb7c6' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%232eb7c6' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%232eb7c6' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%232eb7c6' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f94792' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f94792' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f94792' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f94792' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E");
  background-position-y: 0, 13.5%, 26%, 38.5%, 51%, 63.5%, 76%, 88.5%, 101%;
  background-size: 400vh;
  background-repeat: no-repeat; }
  @media (min-width: 768px) {
    .jobs-page-background {
      background-size: 250vh;
      padding-bottom: 200px; } }
  @media (min-width: 1366px) {
    .jobs-page-background {
      background-position-y: 0, 12.5%, 25%, 37.5%, 50%, 62.5%, 75%, 87.5%, 100%;
      background-size: 150%;
      margin-bottom: -130px; } }
  @media (min-width: 1600px) {
    .jobs-page-background {
      background-size: 120%; } }
  @media (min-width: 1921px) {
    .jobs-page-background {
      background-size: auto;
      background-repeat: repeat-x; } }

@media (min-width: 768px) {
  .jobs-page__form {
    margin-bottom: 340px; } }

@media (min-width: 1366px) {
  .jobs-page__form {
    margin-bottom: 0px; } }

.jobs-page__form .card__body {
  padding: 30px 20px; }
  @media (min-width: 1366px) {
    .jobs-page__form .card__body {
      padding: 40px; } }

.jobs-page__form .card__header {
  padding: 30px 20px; }
  @media (min-width: 1366px) {
    .jobs-page__form .card__header {
      padding: 25px 40px; } }

@media (min-width: 1025px) {
  .audio-player__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 311px;
    height: 60px;
    background-color: #2eb7c6;
    border-radius: 7px;
    color: #f0f0f0;
    padding: 14px; } }

@media (min-width: 1366px) {
  .audio-player__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 311px;
    height: 60px;
    background-color: #2eb7c6;
    border-radius: 7px;
    color: #f0f0f0;
    padding: 14px; } }

@media (min-width: 1025px) {
  .audio-player__body svg {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: 30px;
    height: 30px; } }

@media (min-width: 1366px) {
  .audio-player__body svg {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: 30px;
    height: 30px; } }

@media (min-width: 1025px) {
  .audio-player__body .audio-player__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: start;
    font-size: 12px;
    font-weight: 300; } }

@media (min-width: 1366px) {
  .audio-player__body .audio-player__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: start;
    font-size: 12px;
    font-weight: 300; } }

@media (min-width: 1025px) {
  .audio-player__body .audio-player__text .audio-player__time {
    font-size: 8px; } }

@media (min-width: 1366px) {
  .audio-player__body .audio-player__text .audio-player__time {
    font-size: 8px; } }

.audio-player__text input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

@media (min-width: 1025px) {
  .audio-player__body span {
    padding-left: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start; } }

@media (min-width: 1366px) {
  .audio-player__body span {
    padding-left: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start; } }

.audio-player__play {
  background: none;
  border: 0; }

.section-welcome p {
  margin-bottom: 32px; }

section.section-our-care {
  background: linear-gradient(180deg, transparent 0%, transparent 180px, #4d2f91 180px, #4d2f91 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%);
  margin-top: -220px;
  padding-top: 40px; }
  @media (min-width: 768px) {
    section.section-our-care {
      margin-top: -280px; } }
  @media (min-width: 1025px) {
    section.section-our-care {
      background: linear-gradient(180deg, transparent 0%, transparent 200px, #4d2f91 200px, #4d2f91 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%);
      padding-top: 120px;
      margin-top: -250px;
      padding-top: 60px; } }
  @media (min-width: 1366px) {
    section.section-our-care {
      background: linear-gradient(180deg, transparent 0%, transparent 250px, #4d2f91 250px, #4d2f91 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%);
      padding-top: 0;
      margin-top: -300px; } }
  @media (min-width: 1921px) {
    section.section-our-care {
      margin-top: -320px; } }
  section.section-our-care:before {
    top: 130px; }
    @media (min-width: 1025px) {
      section.section-our-care:before {
        top: 140px; } }
    @media (min-width: 1366px) {
      section.section-our-care:before {
        top: 150px; } }

/* landing page */
.landing-page section.section-our-care {
  margin-top: -130px; }
  @media (min-width: 480px) {
    .landing-page section.section-our-care {
      margin-top: -180px; } }
  @media (min-width: 768px) {
    .landing-page section.section-our-care {
      margin-top: -200px; } }
  @media (min-width: 931px) {
    .landing-page section.section-our-care {
      margin-top: -240px; } }
  @media (min-width: 1025px) {
    .landing-page section.section-our-care {
      margin-top: -160px; } }
  @media (min-width: 1366px) {
    .landing-page section.section-our-care {
      margin-top: -240px; } }
  @media (min-width: 1704px) {
    .landing-page section.section-our-care {
      margin-top: -260px; } }
  @media (min-width: 1921px) {
    .landing-page section.section-our-care {
      margin-top: -320px; } }
  .landing-page section.section-our-care:before {
    top: 116px; }
    @media (min-width: 1025px) {
      .landing-page section.section-our-care:before {
        top: 140px; } }
    @media (min-width: 1366px) {
      .landing-page section.section-our-care:before {
        top: 150px; } }

.wave--top {
  background: linear-gradient(180deg, transparent 0%, transparent 64px, #f0f0f0 64px, #f0f0f0 calc(100% - 64px), transparent calc(100% - 64px), transparent 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%; }
  @media (min-width: 1366px) {
    .wave--top {
      background: linear-gradient(180deg, transparent 0%, transparent 120px, #f0f0f0 120px, #f0f0f0 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); } }

.wave--top:before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='686.308' viewBox='0 0 1920 686.308'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23f0f0f0' d='M0 0h1920v686.308H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23f0f0f0' d='M960 26.523c390.968 59.677 960 0 960 0v583.262s-569.032 59.677-960 0-960 0-960 0V26.523s569.032-59.677 960 0'/%3E%3C/g%3E%3C/svg%3E"); }

.landing-page .section-our-care.wave--top {
  background: linear-gradient(180deg, transparent 0%, transparent 180px, #f0f0f0 180px, #f0f0f0 calc(100% - 90px), transparent calc(100% - 90px), transparent 100%); }

.landing-page .our-care__item h2 {
  color: #4d2f91; }

.landing-page .our-care__item p {
  color: #707070;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.6;
  text-align: left; }
  @media (min-width: 1366px) {
    .landing-page .our-care__item p {
      padding-right: 20px;
      padding-left: 20px;
      text-align: center; } }

.section-catering {
  padding-top: 40px; }

@media (min-width: 768px) {
  .section-catering > .container {
    padding-right: 40px;
    padding-left: 40px; } }

@media (min-width: 1366px) {
  .section-catering > .container {
    padding-right: 140px;
    padding-left: 140px; } }

.section-catering img {
  width: 100%;
  border-radius: 6px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

@media (min-width: 1366px) {
  .section-catering img {
    border-radius: 14px; } }

.section-catering__image {
  width: 100%;
  position: relative;
  border-radius: 6px;
  height: 270px; }

@media (min-width: 1366px) {
  .section-catering__image {
    border-radius: 14px;
    width: 84%;
    margin: 0 auto;
    height: 535px; } }

.section-catering__image::before {
  content: " ";
  background: #4d2f91;
  background: linear-gradient(276deg, rgba(77, 47, 145, 0.283351) 34%, rgba(77, 47, 145, 0.38139) 56%);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px; }

@media (min-width: 1366px) {
  .section-catering__image::before {
    border-radius: 14px; } }

.section-catering__text {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.section-catering__text h2 {
  color: #fff;
  text-align: center;
  margin-bottom: -12px; }

@media (min-width: 1366px) {
  .section-catering__text h2 {
    font-size: 40px;
    margin-bottom: -15px; } }

.section-catering__text h3 {
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 40px; }

@media (min-width: 1366px) {
  .section-catering__text h3 {
    font-size: 80px; } }

@media (min-width: 768px) {
  .landing-page .section-job-details > .container {
    padding-right: 40px;
    padding-left: 40px; } }

@media (min-width: 1366px) {
  .landing-page .section-job-details > .container {
    padding-right: 140px;
    padding-left: 140px; } }

.landing-page .section-job-details__intro {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 60px; }

@media (min-width: 768px) {
  .landing-page .section-job-details__intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; } }

@media (min-width: 1366px) {
  .landing-page .section-job-details__intro {
    padding: 58px 120px 0px; } }

.landing-page .overview {
  width: 100%;
  background-color: #4d2f91;
  text-align: left;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  max-height: 62px;
  padding: 13px 20px; }

.landing-page .overview p {
  letter-spacing: 0;
  font-size: 28px;
  font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  color: #fff; }

@media (min-width: 1025px) {
  .landing-page .overview p {
    letter-spacing: 0.9px; } }

.landing-page .section-job-details__aside {
  width: 100%;
  margin-bottom: 22px; }

@media (min-width: 768px) {
  .landing-page .section-job-details__aside {
    width: 40%;
    margin-right: 31px;
    margin-bottom: 0; } }

@media (min-width: 1025px) {
  .landing-page .section-job-details__aside {
    width: 27%;
    margin-right: 0;
    padding-top: 9px; } }

.landing-page .section-job-details__aside-list {
  list-style-type: none;
  padding: 30px 20px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #fff;
  padding: 20px; }

@media (min-width: 1366px) {
  .landing-page .section-job-details__aside-list {
    padding: 28px 20px; } }

.landing-page .aside-list-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-top: -3px; }

@media (min-width: 1366px) {
  .landing-page .aside-list-text-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-direction: column;
    -webkit-box-pack: baseline;
    -ms-flex-pack: baseline;
    justify-content: baseline; } }

.landing-page .section-job-details__aside-list svg {
  height: 26px;
  width: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-right: 20px;
  color: #4d2f91; }

@media (min-width: 1025px) {
  .landing-page .section-job-details__aside-list svg {
    margin-right: 18px; } }

.landing-page .section-job-details__aside-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

.landing-page .section-job-details__aside-list ul li:not(:last-child) {
  margin-bottom: 18px; }

.landing-page .section-job-details__aside-list h3 {
  letter-spacing: 0.5px;
  font-size: 14px;
  font-family: "FS Me", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #4d2f91;
  margin-bottom: 0;
  margin-right: 4px;
  font-family: "Alternate Gothic No1 D";
  font-size: 24px; }

@media (min-width: 1366px) {
  .landing-page .section-job-details__aside-list h3 {
    font-family: "Alternate Gothic No1 D", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin-right: 0px;
    margin-bottom: 4px; } }

.landing-page .section-job-details__aside-list h3::after {
  content: ":"; }

@media (min-width: 1366px) {
  .landing-page .section-job-details__aside-list h3::after {
    display: none; } }

.landing-page .section-job-details__aside-list p {
  font-size: 15px;
  color: #707070;
  margin-bottom: 0; }

@media (min-width: 768px) {
  .landing-page .section-job-details__aside-list p {
    font-size: 14px; } }

@media (min-width: 1366px) {
  .landing-page .section-job-details__aside-list p {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 21px; } }

.landing-page .section-job-details__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border: 0;
  background-color: #846fb3;
  padding: 16px 18px; }

.landing-page .section-job-details__article {
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 20px;
  color: #f0f0f0; }

@media (min-width: 768px) {
  .landing-page .section-job-details__article {
    width: 55%;
    margin-left: 0;
    padding-bottom: 38px; } }

@media (min-width: 1025px) {
  .landing-page .section-job-details__article {
    width: 78%;
    padding-left: 64px;
    margin-left: 0;
    margin-bottom: 0;
    padding-bottom: 0px; } }

.landing-page .section-job-details__article p {
  margin-bottom: 18px;
  color: #707070;
  line-height: 1.6; }

@media (min-width: 1025px) {
  .landing-page .section-job-details__article p {
    margin-bottom: 24px; } }

.landing-page .section-job-details__article h3 {
  color: #4d2f91;
  font-size: 28px;
  margin-bottom: 10px; }

@media (min-width: 1025px) {
  .landing-page .section-job-details__article h3 {
    font-size: 34px;
    font-size: 40px;
    margin-bottom: 18px; } }

.landing-page .section-job-details__article ul:not(:last-child) {
  margin-bottom: 22px; }

.landing-page .section-job-details__article ul li::before {
  content: "";
  display: block;
  background-color: #707070;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin-right: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 8px; }

@media (min-width: 1025px) {
  .landing-page .section-job-details__article ul li::before {
    margin-top: 12px; } }

.landing-page .section-job-details__article ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #707070;
  line-height: 1.6; }

.landing-page .section-job-details__article ul li:not(:last-child) {
  margin-bottom: 0; }

.landing-page .section-job-details__location h3 {
  color: #f0f0f0;
  font-size: 26px;
  margin-bottom: 0; }

.landing-page .section-job-details__location svg {
  margin-right: 22px;
  height: 20px;
  width: 20px; }

.landing-page .job-details-map {
  width: 100%;
  height: 359px; }

.landing-page .job-page .header__apply-now {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (min-width: 768px) {
  .landing-page .job-page .header__apply-now {
    display: none; } }

.landing-page .job-page .search {
  display: none; }

@media (min-width: 1366px) {
  .landing-page .job-page .search {
    display: block; } }

.landing-page .job-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 17px;
  gap: 17px; }

.landing-page .job-details__icon {
  width: 20px;
  height: 20px;
  margin-right: 20px; }

.landing-page .job-details__term {
  font-weight: 700;
  text-transform: uppercase; }

.landing-page .job-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase; }

.landing-page .padding-s {
  padding-top: 50px; }
  @media (min-width: 1366px) {
    .landing-page .padding-s {
      padding-top: 120px; } }

.landing-page .section-job-details__article ul {
  margin-bottom: 16px; }

@media (min-width: 1366px) {
  .landing-page .section-job-details__article ul {
    margin-bottom: 22px; } }

.landing-page .form {
  padding: 23px 23px 13px;
  margin-bottom: 20px; }

@media (min-width: 768px) {
  .landing-page .form {
    padding: 13px 23px 0; } }

@media (min-width: 1366px) {
  .landing-page .form {
    width: 50%;
    margin: 0 auto 20px;
    padding: 33px 40px 22px; } }

@media (min-width: 768px) {
  .landing-page .section-form {
    padding-top: 90px; } }

@media (min-width: 1366px) {
  .landing-page .section-form {
    padding-top: 130px; } }

.landing-page .section-form h2 {
  line-height: 1;
  color: #fff;
  font-size: 42px;
  text-align: center;
  margin-bottom: 32px; }

@media (min-width: 768px) {
  .landing-page .section-form h2 {
    margin-bottom: 40px; } }

@media (min-width: 1366px) {
  .landing-page .section-form h2 {
    font-size: 80px; } }

.landing-page .section-form .form h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 16px; }

@media (min-width: 1366px) {
  .landing-page .section-form .form h3 {
    font-size: 40px;
    margin-bottom: 10px; } }

.landing-page .section-form .form p {
  margin-bottom: 16px; }

@media (min-width: 1366px) {
  .landing-page .section-form .form p {
    margin-bottom: 38px; } }

.landing-page .section-form .job-details {
  margin-bottom: 40px; }

.landing-page .section-form__forms .form + .form {
  margin-top: 20px; }

@media (min-width: 1366px) {
  .landing-page .section-form__forms .form + .form {
    margin-top: 40px; } }

.landing-page .section-form__forms .checkbox-input ~ .checkbox-box:before {
  border-color: #fff; }

.landing-page .section-form__forms .checkbox-input ~ .checkbox-box svg {
  fill: #fff;
  color: #fff; }

.landing-page .form {
  padding: 23px 23px 13px;
  margin-bottom: 20px; }

@media (min-width: 768px) {
  .landing-page .form {
    padding: 13px 23px 0; } }

@media (min-width: 1366px) {
  .landing-page .form {
    width: 50%;
    margin: 0 auto 20px;
    padding: 33px 40px 22px; } }

.landing-page .search__form, .landing-page .search__select, .landing-page .header__menu .navbar, .landing-page .header__menu-toggle, .landing-page .search.bar, .navbar.landing {
  display: none; }

.landing-page .navbar.landing {
  display: block; }

.landing-page .main {
  padding-top: 0px; }

.landing-page .header__menu .navbar__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

.landing-page .header__menu {
  position: static;
  display: block;
  opacity: 1;
  margin-left: auto;
  width: auto;
  overflow: visible;
  height: auto;
  visibility: visible;
  background-color: transparent;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.landing-page .navbar__list li {
  border-bottom: 0px solid #fff; }

.landing-page .why-jewish-care__item {
  max-width: 100%; }

@media (max-width: 450px) {
  .landing-page .navbar__list .button {
    font-size: 11px;
    padding: 9px;
    min-width: 180px;
    margin-left: 10px; }
  .landing-page .section.section-welcome.wave::after {
    bottom: -21px;
    height: 95px; } }

section.section-jami-diff {
  background: linear-gradient(180deg, transparent 0%, transparent 180px, #29235C 180px, #29235C calc(100% - 120px), transparent calc(100% - 120px), transparent 100%);
  margin-top: -220px;
  padding-top: 40px; }
  @media (min-width: 768px) {
    section.section-jami-diff {
      margin-top: -280px; } }
  @media (min-width: 1025px) {
    section.section-jami-diff {
      background: linear-gradient(180deg, transparent 0%, transparent 200px, #29235C 200px, #29235C calc(100% - 120px), transparent calc(100% - 120px), transparent 100%);
      padding-top: 120px;
      margin-top: -250px;
      padding-top: 60px; } }
  @media (min-width: 1366px) {
    section.section-jami-diff {
      background: linear-gradient(180deg, transparent 0%, transparent 250px, #29235C 250px, #29235C calc(100% - 120px), transparent calc(100% - 120px), transparent 100%);
      padding-top: 0;
      margin-top: -300px; } }
  @media (min-width: 1921px) {
    section.section-jami-diff {
      margin-top: -320px; } }
  section.section-jami-diff:before {
    top: 130px; }
    @media (min-width: 1025px) {
      section.section-jami-diff:before {
        top: 140px; } }
    @media (min-width: 1366px) {
      section.section-jami-diff:before {
        top: 150px; } }

.jami-diff {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  gap: 40px; }
  @media (min-width: 768px) {
    .jami-diff {
      gap: 60px; } }
  @media (min-width: 1366px) {
    .jami-diff {
      padding-right: 100px;
      padding-left: 100px; } }
  @media (min-width: 768px) {
    .jami-diff__item {
      width: calc(50% - 30px); } }
  .jami-diff__photo {
    width: 100%;
    max-width: 358px;
    height: 358px;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto; }
    @media (min-width: 768px) {
      .jami-diff__photo {
        max-width: 621px;
        height: 273px;
        margin-bottom: 20px; } }
    @media (min-width: 1366px) {
      .jami-diff__photo {
        height: 388px;
        margin-bottom: 40px; } }
  .jami-diff__logo {
    width: 100%;
    max-width: 180px;
    margin-right: auto;
    margin-bottom: 70px;
    margin-left: auto; }
    @media (min-width: 768px) {
      .jami-diff__logo {
        max-width: 200px;
        margin-bottom: 60px; } }
    @media (min-width: 1366px) {
      .jami-diff__logo {
        max-width: 306px;
        margin-bottom: 120px; } }
  .jami-diff__photo_plain {
    border-radius: 10px;
    margin-bottom: 40px; }
  .jami-diff h2 {
    line-height: 1; }
  .jami-diff p {
    font-weight: 300;
    margin-bottom: 0;
    text-align: left; }
    @media (min-width: 1366px) {
      .jami-diff p {
        padding-right: 30px;
        padding-left: 30px; } }
    @media (min-width: 1920px) {
      .jami-diff p {
        padding-right: 60px;
        padding-left: 60px; } }

.jami.wave {
  margin-top: -50px;
  background: linear-gradient(180deg, transparent 0%, transparent 50px, #62CAC7 50px, #62CAC7 calc(100% - 120px), transparent calc(100% - 120px), transparent 100%); }
  .jami.wave::before {
    width: 100%; }
    @media (min-width: 768px) {
      .jami.wave::before {
        width: 200vw; } }
  .jami.wave:after {
    bottom: 56px; }
    @media (min-width: 1366px) {
      .jami.wave:after {
        bottom: 0; } }

.jami-orange-colour {
  color: #FF6401; }

.jami-grey-colour {
  color: #F0F0F0; }

.jami-title-colour {
  color: #29235C; }

.jami-text-colour {
  color: #707070; }

.section-recent-jobs__header p {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 10px; }
  @media (min-width: 1366px) {
    .section-recent-jobs__header p {
      font-size: 24px;
      margin-bottom: 0; } }

.section-recent-jobs__footer {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px; }
  @media (min-width: 1366px) {
    .section-recent-jobs__footer {
      padding-top: 60px;
      padding-bottom: 10px; } }

.swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.slider-thumbs-main {
  display: block; }
  .slider-thumbs-main .swiper-slide {
    height: auto; }

.desktop-swiper {
  display: none; }

.main-swiper {
  width: 56%;
  margin-left: auto;
  margin-right: 0; }
  @media (min-width: 1025px) {
    .main-swiper {
      position: sticky;
      top: 200px;
      bottom: 20px;
      right: 0;
      width: 49%;
      margin-top: 30px; } }
  @media (min-width: 1366px) {
    .main-swiper {
      width: 45%;
      top: 150px; } }

.thumb-swiper-container {
  width: 44%;
  height: auto;
  padding: 10px 0; }
  @media (min-width: 1025px) {
    .thumb-swiper-container {
      width: 50%;
      padding-top: 0; } }
  @media (min-width: 1366px) {
    .thumb-swiper-container {
      width: 52%; } }

.slider-thumbs {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1; }

@media (min-width: 1025px) {
  .slider-thumbs .swiper-wrapper {
    -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
            transform: translateY(0) !important; } }

.thumb-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: white;
  border-radius: 8px;
  z-index: 0;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
  @media (min-width: 1366px) {
    .thumb-background {
      width: 52%; } }

.thumb-slide {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
  height: auto !important;
  position: relative;
  z-index: 2; }

.thumb-slide.swiper-slide-active,
.thumb-slide.swiper-slide-thumb-active {
  opacity: 1; }

.thumb-card {
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  position: relative; }
  @media (min-width: 1366px) {
    .thumb-card {
      background-color: transparent; } }

@media (min-width: 1025px) {
  .thumb-card h3 {
    font-size: 40px;
    margin-bottom: 12px; } }

.desktop-swiper-container {
  position: relative; }
  @media (min-width: 1025px) {
    .desktop-swiper-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  @media (min-width: 1366px) {
    .desktop-swiper-container {
      max-width: 1366px;
      margin: 0 auto; } }

@media (min-width: 768px) {
  .slider-thumbs-main .swiper-slide {
    width: calc(50% - 10px) !important;
    margin-right: 20px !important; } }

@media (min-width: 1025px) {
  .slider-thumbs-main {
    display: none; }
  .desktop-swiper {
    display: block; } }

.slider-thumbs-main-next.swiper-button-next,
.slider-thumbs-main-prev.swiper-button-prev {
  position: static !important;
  color: #4d2f91; }

.slider-thumbs-main-next.swiper-button-next {
  bottom: 0;
  right: 0;
  top: auto; }

.slider-thumbs-main-next.swiper-button-prev {
  bottom: 0;
  left: 0;
  top: auto; }

.slider-thumbs-main-pagination {
  margin-top: 32px;
  position: static; }

.slider-thumbs-main-pagination > .swiper-pagination-bullets .swiper-pagination-bullet,
.slider-thumbs-main-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet,
.main-swiper-pagination > .swiper-pagination-bullets .swiper-pagination-bullet,
.main-swiper-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  width: 12px;
  height: 12px; }

.slider-thumbs-main-pagination .swiper-pagination-bullet {
  opacity: 0.3;
  background-color: #4d2f91; }

.slider-thumbs-main-pagination .swiper-pagination-bullet-active,
.main-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important; }

.slider-thumbs-main-navigation {
  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%;
  height: 20px;
  margin-top: -10px; }

.main-swiper-pagination {
  position: static;
  margin-top: 60px; }

.main-swiper-pagination .swiper-pagination-bullet {
  opacity: 0.3;
  background-color: #707070; }

.card-person {
  background: white;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.card-person b,
.card-person strong {
  font-weight: 700; }

.card-person-image {
  width: 100%;
  height: 252px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px; }
  @media (min-width: 1025px) {
    .card-person-image {
      border-radius: 12px; } }
  @media (min-width: 1366px) {
    .card-person-image {
      height: 418px; } }

.card-person-content {
  padding: 32px 0 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  @media (min-width: 1366px) {
    .card-person-content {
      padding: 45px 20px 20px; } }

.card-person h3 {
  font-size: 40px;
  letter-spacing: 0.5px;
  line-height: 0.9;
  margin-bottom: 20px; }
  @media (min-width: 1366px) {
    .card-person h3 {
      font-size: 60px;
      line-height: 1;
      letter-spacing: 0;
      margin-bottom: 40px; } }

.card-person a.button {
  min-width: 142px;
  font-weight: 300;
  margin-top: 30px; }
  @media (min-width: 1366px) {
    .card-person a.button {
      min-width: 180px;
      margin-top: 40px; } }

.card-person-text {
  color: #707070;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6; }
  @media (min-width: 1025px) {
    .card-person-text {
      font-size: 18px;
      line-height: 1.4; } }

.card-person-note {
  font-size: 16px;
  font-weight: 400;
  color: #4d2f91;
  margin-top: auto;
  margin-bottom: 0; }
  @media (min-width: 1025px) {
    .card-person-note {
      font-size: 18px; } }

/*# sourceMappingURL=main.css.map */
