*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  min-width: 0;
  font: inherit;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

@font-face {
  font-family: "Neusa Next Pro";
  src: url("../fonts/neusanextpro-bold-webfont.woff2") format("woff2"), url("../fonts/neusanextpro-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neusa Next Pro";
  src: url("../fonts/neusanextpro-medium-webfont.woff2") format("woff2"), url("../fonts/neusanextpro-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neusa Next Pro";
  src: url("../fonts/neusanextpro-regular-webfont.woff2") format("woff2"), url("../fonts/neusanextpro-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neusa Next Pro Condensed";
  src: url("../fonts/neusanextpro-condensedregular-webfont.woff2") format("woff2"), url("../fonts/neusanextpro-condensedregular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neusa Next Pro Condensed";
  src: url("../fonts/neusanextpro-condensedbold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neusa Next Thin";
  src: url("../fonts/neusa_nxt_std_light-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neusa Std Medium";
  src: url("../fonts/neusa_nxt_std_light-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  flex-shrink: 0;
  gap: 20px;
  /* Styling Logo*/
}
.nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff5501;
  z-index: -1;
}
@media (max-width: 1024px) {
  .nav:before {
    padding: 1rem;
  }
}
.nav.active:before {
  background-color: #ffffff;
}
.nav__hamburger {
  border: 0;
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  background-color: #ff5501;
}
.nav__hamburger-wrapper {
  display: none;
}
@media (max-width: 1024px) {
  .nav__hamburger-wrapper {
    z-index: 100;
    display: flex;
    padding: 18px;
    background-color: #ff5501;
  }
}
@media (max-width: 1024px) {
  .nav__hamburger {
    display: inline-flex;
  }
}
.nav__hamburger:before, .nav__hamburger:after {
  content: "";
}
.nav__hamburger:before, .nav__hamburger:after,
.nav__hamburger span {
  height: 3px;
  width: 100%;
  left: 0;
  position: absolute;
  background-color: currentColor;
  transition: 0.3s ease;
  transform-origin: center;
}
.nav__hamburger:before {
  top: 0;
}
.nav.active .nav__hamburger:before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav__hamburger:after {
  top: calc(100% - 3px);
}
.nav.active .nav__hamburger:after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.nav__hamburger span {
  top: 50%;
  transform: translateY(-50%);
}
.nav.active .nav__hamburger span {
  opacity: 0;
}
.nav__logo {
  display: grid;
  align-items: center;
  padding: 20px;
}
@media (max-width: 1024px) {
  .nav__logo {
    padding: 10px;
  }
}
.nav__logo-primary, .nav__logo-secondary {
  max-width: 234px;
  width: 100%;
  aspect-ratio: 234/30;
  z-index: 11;
  transition: opacity 0.3s ease;
  grid-row: 1/-1;
  grid-column: 1/-1;
}
.nav__logo-primary img, .nav__logo-secondary img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.nav__logo-secondary {
  opacity: 0;
}
@media (max-width: 1024px) {
  .nav.active .nav__logo-secondary {
    opacity: 1;
  }
}

.nav > .menu-main-menu-container {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: -2;
  }
  .nav.active .nav > .menu-main-menu-container {
    transform: translateY(0);
    z-index: 10;
  }
}

.nav > .menu-main-menu-container > .menu {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  list-style-type: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu {
    gap: 20px;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    background: #ff5501;
    display: flex;
    flex-direction: column;
    z-index: -2;
    min-height: calc(100vh - 58px);
  }
  .nav.active .nav > .menu-main-menu-container > .menu {
    transform: translateY(0);
    z-index: 10;
  }
}
.nav > .menu-main-menu-container > .menu .menu-item {
  position: relative;
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu .menu-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  .nav > .menu-main-menu-container > .menu .menu-item:hover .sub-menu {
    transform: translateY(0);
  }
  > .nav > .menu-main-menu-container > .menu .menu-item:hover .sub-menu a:hover {
    opacity: 0.7;
  }
}
.nav > .menu-main-menu-container > .menu .menu-item > a {
  text-decoration: none;
  color: #ffffff;
  padding: 20px;
  display: flex;
  transition: 0.3s ease;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Neusa Next Thin", sans-serif;
  line-height: 32px;
  align-items: center;
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu .menu-item > a {
    background-color: #ff5501;
    padding: 6px 16px;
  }
  .nav > .menu-main-menu-container > .menu .menu-item > a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
  }
}
.nav > .menu-main-menu-container > .menu .menu-item > a:not(:only-child) {
  pointer-events: none;
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu .menu-item > a:not(:only-child) {
    margin-right: 3em;
    position: relative;
  }
  .nav > .menu-main-menu-container > .menu .menu-item > a:not(:only-child):before {
    width: calc(100% + 3em);
  }
}
.nav > .menu-main-menu-container > .menu .menu-item > a:not(:only-child):after {
  content: "";
  border: solid currentColor;
  border-width: 0 0.1111111111em 0.1111111111em 0;
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  transform: rotate(45deg);
  margin-top: -0.2222222222em;
  transition: transform 0.3s ease;
  transform-origin: bottom 0.55em;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu .menu-item > a:not(:only-child):after {
    position: absolute;
    left: calc(100% + 1.25em);
  }
}
.nav > .menu-main-menu-container > .menu .menu-item > .sub-menu {
  width: 100%;
  position: absolute;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: -2;
  left: 0;
  top: 100%;
  list-style-type: none;
  padding: 0;
  background-color: #ff5501;
  display: flex;
  flex-direction: column;
}
.nav > .menu-main-menu-container > .menu .menu-item > .sub-menu > .menu-item > a {
  display: block;
  transition: background-color 0.3s ease;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  color: #ff5501;
  background-color: #ffffff;
  padding: 6px 16px;
  text-align: left;
}
.nav > .menu-main-menu-container > .menu .menu-item > .sub-menu > .menu-item > a:before {
  display: none;
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu .menu-item > .sub-menu {
    display: none;
    gap: 20px;
    transform: translateY(0);
    z-index: 0;
  }
  .nav > .menu-main-menu-container > .menu .menu-item > .sub-menu > .menu-item {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    position: relative;
    transform: none;
    z-index: 1;
    padding-left: 40px;
  }
}
@media (min-width: 1025px) {
  .nav > .menu-main-menu-container > .menu .current-menu-parent:before {
    content: "";
    width: calc(100% - 40px);
    position: absolute;
    height: 1px;
    left: 20px;
    bottom: 20px;
    background: #ffffff;
  }
}
@media (min-width: 1025px) {
  .nav > .menu-main-menu-container > .menu .current-menu-item > a:before {
    content: "";
    width: calc(100% - 40px);
    position: absolute;
    height: 1px;
    left: 20px;
    bottom: 20px;
    background: #ffffff;
  }
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu .current-menu-item > a:only-child {
    background-color: #ffffff;
    color: #ff5501;
  }
}
.nav > .menu-main-menu-container > .menu .current_page_parent > .sub-menu > .current-menu-item > a {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu .current_page_parent > .sub-menu > .current-menu-item > a {
    background-color: #e3e4e4;
    opacity: 0.8;
  }
}
@media (max-width: 1024px) {
  .nav > .menu-main-menu-container > .menu .menu-item.active > a:after {
    transform: rotate(-135deg);
    margin-top: 0.1666666667em;
  }
  .nav > .menu-main-menu-container > .menu .menu-item.active > .sub-menu {
    padding-top: 20px;
    display: flex;
    position: relative;
  }
  .nav > .menu-main-menu-container > .menu .menu-item.active > .sub-menu > .menu-item {
    grid-template-rows: 1fr;
  }
  .nav > .menu-main-menu-container > .menu .menu-item.active > .sub-menu > .menu-item > a:before {
    border: none;
  }
}

@media (max-width: 1024px) {
  .nav.active .menu-main-menu-container {
    transform: translateY(0);
    z-index: 10;
  }
}
@media (max-width: 1024px) {
  .nav.active .menu-main-menu-container > .menu {
    transform: translateY(0);
    z-index: 10;
  }
}

.footer {
  background-color: #000000;
  padding: 50px 126px;
  display: flex;
  flex-direction: column;
}
.footer a {
  color: white;
}
@media (max-width: 1024px) {
  .footer {
    padding-inline: clamp(30px, 30px + 30 * (100vw - 640px) / 384, 60px);
    padding-block: clamp(20px, 20px + 20 * (100vw - 640px) / 384, 40px);
  }
}

.footer__nav {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #333333;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__nav {
    flex-direction: column-reverse;
    gap: clamp(40px, 40px + 20 * (100vw - 640px) / 384, 60px);
    flex-grow: 1;
    align-items: flex-start;
  }
}

.footer__nav-left-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__nav-left-wrapper .footer__list {
    flex-direction: row;
  }
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer__container {
    gap: clamp(20px, 20px + 20 * (100vw - 640px) / 384, 40px);
  }
}

.footer__logo {
  max-width: 250px;
  width: 100%;
  aspect-ratio: 12.3333333333px;
  z-index: 2;
  padding-bottom: 40px;
}
.footer__logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .footer__logo {
    max-width: 200px;
  }
}

.footer__head {
  color: #ffffff;
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 500;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Neusa Next Thin", sans-serif;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__list {
    gap: clamp(20px, 20px + 20 * (100vw - 640px) / 384, 40px);
  }
}

.footer__nav-right-wrapper {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__nav-right-wrapper {
    gap: clamp(40px, 40px + 20 * (100vw - 640px) / 384, 60px);
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 640px) {
  .footer__nav-right-wrapper {
    flex-direction: column;
  }
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__bottom a {
  color: #999999 !important;
}
.footer__bottom a:hover {
  color: #ffffff !important;
}

.footer__logo-terms {
  max-width: 250px;
  width: 100%;
  aspect-ratio: 12.3333333333px;
  z-index: 2;
  padding-bottom: 10px;
}
.footer__logo-terms img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .footer__logo-terms {
    padding-bottom: 40px;
    max-width: 200px;
  }
}

.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 26px;
  aspect-ratio: 1/1;
  overflow: hidden;
  gap: 10px;
}
.card:hover .card__image {
  transform: scale(1.1);
}
.card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease;
  transform-origin: center;
  z-index: -1;
}
.card__header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 10px 20px;
  margin-top: auto;
  background-color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 640px) {
  .card__header {
    padding: 10px;
  }
}
.card__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card__subtitle {
  color: #333333;
  font-family: "Neusa Next Medium", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 640px) {
  .card__subtitle {
    font-size: 20px;
  }
}
.card__badge {
  padding: 10px 18px;
  width: -moz-max-content;
  width: max-content;
  background-color: #ff5501;
  font-size: 30px;
  line-height: 1.33;
  color: #ffffff;
}
.card__badge strong {
  font-weight: 700;
}

.office-card .card__header {
  background-color: #ffffff;
  width: 70%;
}

.swiper-section .heading {
  padding-bottom: 30px;
}

.carousel-actions {
  display: flex;
  flex-shrink: 0;
  gap: 30px;
  flex-direction: row-reverse;
  align-items: center;
  padding-top: 30px;
}
@media (max-width: 640px) {
  .carousel-actions {
    justify-content: center;
  }
  .carousel-actions .link {
    -webkit-text-decoration: auto;
            text-decoration: auto;
  }
}
.carousel-btn {
  width: 13px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.carousel-btn.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 640px) {
  .carousel-btn {
    display: none;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1200/475;
  padding-block: 20px;
}
@media (max-width: 640px) {
  .hero.hero-mobile {
    aspect-ratio: 720/600;
  }
}
.hero.small {
  min-height: 320px;
}
.hero.small .inner-wrapper {
  align-items: flex-start;
}
.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media (max-width: 640px) {
  .hero__picture {
    aspect-ratio: 720/600;
  }
}
.hero__heading {
  font-size: clamp(32px, 32px + 26 * (100vw - 480px) / 544, 58px);
  max-width: 8.1034482759em;
  margin: 0.3448275862em;
  width: 100%;
  color: #ffffff;
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}
.hero__heading--width {
  max-width: 100%;
}
.hero__heading span {
  background-color: #000000;
  outline: 0.3448275862em solid #000000;
}
.hero .inner-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 640px) {
  .hero .inner-wrapper {
    align-items: flex-end;
  }
}

.filter {
  font-size: 20px;
  padding-block: 30px;
  background-color: #000000;
  font-family: "Neusa Next Thin", sans-serif;
}
.filter__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .filter__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.filter__name {
  color: #ffffff;
}
.filter__name:last-of-type {
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 500;
  color: #666;
}
.filter__select-wrapper {
  position: relative;
}
.filter__select-wrapper select {
  min-width: 200px;
  height: 2em;
  padding: 0.5em;
  border: none;
  border-radius: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #333333;
  line-height: 1.25;
  cursor: pointer;
}
.filter__select-wrapper select:focus {
  outline: none;
}
@media (max-width: 768px) {
  .filter__select-wrapper select {
    width: 100%;
  }
}
.filter__select-wrapper::before {
  position: absolute;
  content: url("./../images/arrow-gray.png");
  right: 5%;
  top: 50%;
  width: 13px;
  height: auto;
  transform: translateY(-50%);
  z-index: 9;
  pointer-events: none;
}
@media (max-width: 768px) {
  .filter__select-wrapper {
    width: 100%;
  }
}

.not-found-jobs {
  font-family: "Neusa Next Pro", sans-serif;
  color: #ff5501;
  font-size: clamp(20px, 20px + 10 * (100vw - 480px) / 544, 30px);
}

.key-stats-blocks {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .key-stats-blocks {
    flex-wrap: wrap;
  }
}

.key-stats-blocks__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 340px;
  aspect-ratio: 340/160;
  padding: 26px 48px;
  border: 2px solid #ff5501;
}
@media (max-width: 768px) {
  .key-stats-blocks__block {
    width: 100%;
  }
}

.key-stats-blocks__heading {
  font-weight: 500;
  font-size: clamp(50px, 50px + 30 * (100vw - 480px) / 160, 80px);
  line-height: 1.3;
  color: #333333;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.key-stats-blocks__subheading {
  font-size: 18px;
  line-height: 1.56;
  color: #333333;
}

.brands-list {
  position: relative;
}
@media (max-width: 640px) {
  .brands-list {
    padding-block: 30px;
    background-color: #f6f6f6;
  }
}
.brands-list__heading {
  padding-bottom: 40px;
}
@media (max-width: 640px) {
  .brands-list__heading {
    padding-bottom: 30px;
  }
  .brands-list__heading .link {
    display: none;
  }
}
.brands-list__desktop {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 768px) {
  .brands-list__desktop {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .brands-list__desktop {
    display: none;
  }
}
.brands-list__desktop-brand img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brands-list__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.brands-list__mobile {
  display: none;
}
@media (max-width: 640px) {
  .brands-list__mobile {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
  }
}
.brands-list__carousel {
  display: flex;
  align-items: center;
}
.brands-list__carousel .swiper-button-prev, .brands-list__carousel .swiper-button-next {
  width: 16px;
  aspect-ratio: 1/1;
  mix-blend-mode: difference;
}
.brands-list__carousel .swiper-button-prev:after, .brands-list__carousel .swiper-button-next:after {
  content: "";
}
@media (max-width: 640px) {
  .brands-list__carousel-next, .brands-list__carousel-prev {
    width: 16px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    cursor: pointer;
  }
  .brands-list__carousel-next.swiper-button-disabled, .brands-list__carousel-prev.swiper-button-disabled {
    opacity: 0.5;
  }
}
.brands-list__carousel-wrapper {
  align-items: center;
}
.brands-list__carousel-slide {
  display: flex;
  justify-content: center;
  height: 100px;
}
.brands-list__carousel-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.brands-list__carousel-slide.swiper-slide-active {
  padding-inline: 32px;
}
.brands-list__btn {
  display: none;
}
@media (max-width: 640px) {
  .brands-list__btn {
    display: flex;
    justify-content: center;
  }
}

.button {
  display: inline-block;
  font-size: clamp(18px, 18px + 2 * (100vw - 360px) / 664, 20px);
  width: -moz-max-content;
  width: max-content;
  padding: 0.4em 0.75em;
  background-color: #ff5501;
  color: #ffffff;
  border: 1px solid #ff5501;
  font-family: "Neusa Next Pro", sans-serif;
  line-height: 1.2;
  cursor: pointer;
  transition: ease 0.3s;
}
@media (hover: hover) {
  .button:hover {
    background-color: #ffffff;
    color: #ff5501;
  }
}

.submit-filter-button {
  border-radius: 0.5rem;
}

.submit-filter-button-disabled {
  pointer-events: none;
}

.link {
  font-size: clamp(18px, 18px + 2 * (100vw - 360px) / 664, 20px);
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  font-family: "Neusa Next Pro", sans-serif;
  color: #ff5501;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: ease 0.3s;
}
@media (hover: hover) {
  .link:hover {
    opacity: 0.7;
  }
}
.link--white {
  color: #ffffff;
}
.link--small {
  font-size: clamp(16px, 16px + 2 * (100vw - 360px) / 664, 18px);
  font-weight: 500;
}
.link--outline {
  text-decoration: underline;
}
.link--arrow {
  display: flex;
  gap: 0.5em;
}
.link--arrow::after {
  content: "";
  background-image: url(./../images/arrow-btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  aspect-ratio: 1.5789473684;
  pointer-events: none;
  transition: ease 0.3s;
}
@media (hover: hover) {
  .link--arrow:hover {
    color: #ff5501;
  }
  .link--arrow:hover::after {
    transform: translateX(10%);
  }
}
.link--arrow-white {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5em;
}
.link--arrow-white::after {
  content: "";
  background-image: url(./../images/whitearrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  aspect-ratio: 1.5789473684;
  pointer-events: none;
  transition: ease 0.3s;
}
@media (hover: hover) {
  .link--arrow-white:hover::after {
    transform: translateX(-10%);
  }
}
.link--desktop {
  display: flex;
}
@media (max-width: 768px) {
  .link--desktop {
    display: none;
  }
}
.link--tablet {
  display: none;
}
@media (max-width: 768px) {
  .link--tablet {
    display: flex;
  }
}

.text-block {
  padding-block: 40px;
  background-color: #ff5501;
}

.text-block__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 640px) {
  .text-block__container {
    align-items: center;
  }
}

.text-block__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px 16px;
}
@media (max-width: 640px) {
  .text-block__grid {
    grid-template-columns: 1fr;
  }
}

.text {
  font-size: 18px;
  font-family: "Neusa Next Pro", sans-serif;
  color: #333333;
  line-height: 1.35;
  clear: both;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.text::after, .text::before {
  display: block;
  content: "";
  clear: both;
}
.text--small {
  font-size: 12px;
}
.text--light {
  color: #999999;
}
.text--white {
  color: #ffffff;
}
.text > * {
  margin-block: 1em;
}
.text > *:first-child {
  margin-top: 0 !important;
}
.text > *:last-child {
  margin-bottom: 0 !important;
}
.text a {
  width: -moz-max-content;
  width: max-content;
  color: #ff5501;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: ease 0.3s;
}
@media (hover: hover) {
  .text a:hover {
    color: #333333;
  }
}
.text strong {
  font-weight: 700;
}
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6,
.text p {
  margin-block: 0.75em;
}
.text h1,
.text h2 {
  font-size: clamp(35px, 35px + 5 * (100vw - 480px) / 544, 40px);
}
.text h2 {
  font-size: clamp(30px, 30px + 5 * (100vw - 480px) / 544, 35px);
}
.text h3 {
  font-size: clamp(26px, 26px + 4 * (100vw - 480px) / 544, 30px);
}
.text h4 {
  font-size: clamp(23px, 23px + 3 * (100vw - 480px) / 544, 26px);
}
.text h5 {
  font-size: clamp(20px, 20px + 3 * (100vw - 480px) / 544, 23px);
}
.text h6 {
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 544, 20px);
}
.text img {
  max-width: 100%;
  margin-bottom: 1em;
}
.text ol,
.text ul {
  margin-block: 0 1em;
}
.text ol li:not(:last-child),
.text ul li:not(:last-child) {
  padding-bottom: 10px;
}
.text li {
  position: relative;
  padding-left: 1.25em;
  list-style: none;
}
.text li::before {
  content: "";
  position: absolute;
  left: 0.1666666667em;
  top: 0.4444444444em;
  width: 0.4444444444em;
  height: 0.4444444444em;
  background-color: #ff5501;
}
.text blockquote {
  font-style: italic;
}
.text table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.text table th {
  font-weight: 700;
}
.text table th,
.text table td {
  padding: 0.4em 0.5em;
}
.text table tr:nth-child(2n) td {
  background-color: #f6f6f6;
}
.text video {
  width: 100% !important;
  aspect-ratio: 16/9;
  height: auto;
  margin-bottom: 1em;
}
.text .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.text iframe {
  width: 100%;
  height: 100%;
}
.text .wp-block-video {
  margin-inline: -85px;
}
@media (max-width: 1024px) {
  .text .wp-block-video {
    margin-inline: -30px;
  }
}
@media (max-width: 360px) {
  .text .wp-block-video {
    margin-inline: -20px;
  }
}

.divider-s {
  height: 20px;
}

.divider-m {
  height: 30px;
}

.divider-l {
  height: 40px;
}

.divider-xl {
  height: 50px;
}

.text {
  font-size: 18px;
  font-family: "Neusa Next Pro", sans-serif;
  color: #333333;
  line-height: 1.35;
  clear: both;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.text::after, .text::before {
  display: block;
  content: "";
  clear: both;
}
.text--small {
  font-size: 12px;
}
.text--light {
  color: #999999;
}
.text--white {
  color: #ffffff;
}
.text > * {
  margin-block: 1em;
}
.text > *:first-child {
  margin-top: 0 !important;
}
.text > *:last-child {
  margin-bottom: 0 !important;
}
.text a {
  width: -moz-max-content;
  width: max-content;
  color: #ff5501;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: ease 0.3s;
}
@media (hover: hover) {
  .text a:hover {
    color: #333333;
  }
}
.text strong {
  font-weight: 700;
}
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6,
.text p {
  margin-block: 0.75em;
}
.text h1,
.text h2 {
  font-size: clamp(35px, 35px + 5 * (100vw - 480px) / 544, 40px);
}
.text h2 {
  font-size: clamp(30px, 30px + 5 * (100vw - 480px) / 544, 35px);
}
.text h3 {
  font-size: clamp(26px, 26px + 4 * (100vw - 480px) / 544, 30px);
}
.text h4 {
  font-size: clamp(23px, 23px + 3 * (100vw - 480px) / 544, 26px);
}
.text h5 {
  font-size: clamp(20px, 20px + 3 * (100vw - 480px) / 544, 23px);
}
.text h6 {
  font-size: clamp(18px, 18px + 2 * (100vw - 480px) / 544, 20px);
}
.text img {
  max-width: 100%;
  margin-bottom: 1em;
}
.text ol,
.text ul {
  margin-block: 0 1em;
}
.text ol li:not(:last-child),
.text ul li:not(:last-child) {
  padding-bottom: 10px;
}
.text li {
  position: relative;
  padding-left: 1.25em;
  list-style: none;
}
.text li::before {
  content: "";
  position: absolute;
  left: 0.1666666667em;
  top: 0.4444444444em;
  width: 0.4444444444em;
  height: 0.4444444444em;
  background-color: #ff5501;
}
.text blockquote {
  font-style: italic;
}
.text table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.text table th {
  font-weight: 700;
}
.text table th,
.text table td {
  padding: 0.4em 0.5em;
}
.text table tr:nth-child(2n) td {
  background-color: #f6f6f6;
}
.text video {
  width: 100% !important;
  aspect-ratio: 16/9;
  height: auto;
  margin-bottom: 1em;
}
.text .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.text iframe {
  width: 100%;
  height: 100%;
}
.text .wp-block-video {
  margin-inline: -85px;
}
@media (max-width: 1024px) {
  .text .wp-block-video {
    margin-inline: -30px;
  }
}
@media (max-width: 360px) {
  .text .wp-block-video {
    margin-inline: -20px;
  }
}

.divider-s {
  height: 20px;
}

.divider-m {
  height: 30px;
}

.divider-l {
  height: 40px;
}

.divider-xl {
  height: 50px;
}

.timeline {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(#ff5501, #ff5501) no-repeat center/3px 100%;
  padding-block: 9em;
}
@media (max-width: 1024px) {
  .timeline {
    padding-top: 0;
  }
}
.timeline__item-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width: 1024px) {
  .timeline__item-wrapper {
    flex-direction: column;
    margin-top: 250px;
  }
}
.timeline__item-wrapper:nth-child(even) {
  flex-direction: row;
}
@media (max-width: 1024px) {
  .timeline__item-wrapper:nth-child(even) {
    flex-direction: column;
  }
}
.timeline__empty {
  flex: 0 0 50%;
}
.timeline__item {
  flex: 0 0 50%;
  position: relative;
}
.timeline__item-wrapper:nth-child(odd) .timeline__item .timeline__item-box {
  width: 100%;
  margin-left: 120px;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .timeline__item-wrapper:nth-child(odd) .timeline__item .timeline__item-box {
    margin-left: 0;
  }
}
.timeline__item-wrapper:nth-child(odd) .timeline__item .timeline__item-box::before {
  position: absolute;
  top: 50px;
  left: -40px;
  content: "";
  width: 0;
  height: 0;
  border-right: solid 40px #000000;
  border-bottom: solid 40px transparent;
  border-top: solid 40px transparent;
}
@media (max-width: 1024px) {
  .timeline__item-wrapper:nth-child(odd) .timeline__item .timeline__item-box::before {
    content: none;
  }
}
.timeline__item-wrapper:nth-child(odd) .timeline__item .timeline__date {
  left: -55px;
}
@media (max-width: 1024px) {
  .timeline__item-wrapper:nth-child(odd) .timeline__item .timeline__date {
    left: 50%;
  }
}
.timeline__item-wrapper:nth-child(even) .timeline__item .timeline__item-box {
  margin-right: 120px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .timeline__item-wrapper:nth-child(even) .timeline__item .timeline__item-box {
    margin-right: 0;
  }
}
.timeline__item-wrapper:nth-child(even) .timeline__item .timeline__item-box::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -40px;
  width: 0;
  height: 0;
  border-left: solid 40px #000000;
  border-bottom: solid 40px transparent;
  border-top: solid 40px transparent;
}
@media (max-width: 1024px) {
  .timeline__item-wrapper:nth-child(even) .timeline__item .timeline__item-box::after {
    content: none;
  }
}
.timeline__item-wrapper:nth-child(even) .timeline__item .timeline__date {
  right: -55px;
}
@media (max-width: 1024px) {
  .timeline__item-wrapper:nth-child(even) .timeline__item .timeline__date {
    left: 50%;
    right: auto;
  }
}
.timeline__date {
  position: absolute;
  font-size: clamp(30px, 30px + 20 * (100vw - 480px) / 544, 50px);
  top: 50px;
  background-color: #ffffff;
  margin-bottom: 0;
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .timeline__date {
    top: -170px;
    transform: translateX(-50%);
  }
}
.timeline__date span {
  display: block;
}
.timeline__item-box {
  max-width: 330px;
  width: 100%;
  position: relative;
  background-color: #ffffff;
}
.timeline__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.timeline__title {
  font-size: clamp(16px, 16px + 8 * (100vw - 360px) / 664, 24px);
  font-family: "Neusa Next Pro", sans-serif;
}
.timeline__text {
  font-size: clamp(16px, 16px + 4 * (100vw - 360px) / 664, 20px);
  font-family: "Neusa Next Thin", sans-serif;
}

.result-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result {
  font-size: clamp(18px, 18px + 2 * (100vw - 360px) / 664, 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ff5501;
  padding-inline: 1.5em;
  padding-block: 1em;
  font-family: "Neusa Next Thin", sans-serif;
  font-weight: 700;
  color: #666666;
  cursor: pointer;
  line-height: 1.25;
}
@media (hover: hover) {
  .result:hover .link--arrow {
    color: #ff5501;
  }
  .result:hover .link--arrow::after {
    transform: translateX(10%);
  }
}
.result__item:first-child {
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 700;
}
@media (max-width: 640px) {
  .result {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
}

.text-image {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 1024px) {
  .text-image {
    grid-template-columns: 1fr;
  }
}
.text-image .inner-wrapper {
  background-color: #f6f6f6;
}
@media (max-width: 1024px) {
  .text-image .inner-wrapper__white {
    background-color: #ffffff;
  }
}
.text-image__container {
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .text-image__container {
    align-items: center;
  }
}
.text-image__image {
  background-color: #f6f6f6;
}
.text-image__image img {
  width: 100%;
}

.timeline-years {
  padding-block: 40px;
  background-color: #f6f6f6;
}
@media (max-width: 768px) {
  .timeline-years {
    background-color: #ffffff;
  }
}
.timeline-years .inner-wrapper {
  padding-bottom: 32px;
}
.timeline-years__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 65px;
}
@media (max-width: 1024px) {
  .timeline-years__container {
    gap: 10px;
  }
}
.timeline-years .heading {
  flex-shrink: 0;
  font-size: 34px;
}
@media (max-width: 1024px) {
  .timeline-years .heading {
    flex-shrink: 1;
  }
}
.timeline-years .link {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .timeline-years .link {
    display: none;
  }
}
.timeline-years__carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .timeline-years__carousel-wrapper {
    display: none;
  }
}
.timeline-years__carousel {
  padding-inline: clamp(0px, 0px + 30 * (100vw - 1024px) / 256, 30px);
}
@media (max-width: 1024px) {
  .timeline-years__carousel {
    overflow: unset;
  }
}
.timeline-years__year {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.5;
  color: #e3e4e4;
  display: flex;
  cursor: pointer;
  justify-content: center;
}
.timeline-years__btn {
  width: 20px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  cursor: pointer;
}
.timeline-years__btn[data-disabled=true] {
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .timeline-years__btn {
    display: none;
  }
}
.timeline-years__btn-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .timeline-years__btn-mobile {
    display: flex;
    max-width: clamp(30px, 30px + 10 * (100vw - 360px) / 120, 40px);
    width: 100%;
  }
  .timeline-years__btn-mobile img {
    width: 100%;
    height: 100%;
  }
}
.timeline-years__single-year-carousel .link {
  display: none;
}
@media (max-width: 1024px) {
  .timeline-years__single-year-carousel .link {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 28px;
  }
}
.timeline-years__single-year-carousel-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: start;
  align-items: start;
  gap: clamp(20px, 20px + 20 * (100vw - 640px) / 384, 40px);
  padding-inline: clamp(30px, 30px + 35 * (100vw - 1024px) / 256, 65px);
}
@media (max-width: 1024px) {
  .timeline-years__single-year-carousel-container {
    padding-inline: clamp(20px, 20px + 10 * (100vw - 360px) / 664, 30px);
  }
}
@media (max-width: 768px) {
  .timeline-years__single-year-carousel-container {
    grid-template-columns: max-content 1fr;
  }
}
.timeline-years__title-rotate {
  font-weight: 700;
  font-size: clamp(100px, 100px + 80 * (100vw - 768px) / 256, 180px);
  line-height: 1.36;
  color: #e3e4e4;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  transform-origin: center;
}
@media (max-width: 768px) {
  .timeline-years__title-rotate {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ff5501;
    margin-right: -0.2em;
    line-height: 0.92;
  }
}
.timeline-years__single-year-carousel-image {
  max-width: 260px;
  max-height: 310px;
}
.timeline-years__single-year-carousel-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .timeline-years__single-year-carousel-image {
    display: none;
  }
}
.timeline-years .swiper-slide-thumb-active .timeline-years__year {
  color: #ff5501;
}

.small-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 375px;
  padding: 20px;
}
.small-hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.small-hero__heading {
  font-size: clamp(32px, 32px + 26 * (100vw - 480px) / 544, 58px);
  width: 100%;
  color: #ffffff;
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(0px, 0px + 20 * (100vw - 480px) / 544, 20px);
  line-height: 1.3;
  display: flex;
  justify-content: center;
}
.small-hero__heading.left-aligned {
  justify-content: flex-start;
  letter-spacing: unset;
  color: #000000;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.cards-grid-large {
  gap: 80px 30px;
}
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  gap: 30px;
}
@media (max-width: 768px) {
  .team-card {
    aspect-ratio: 1/1.5;
  }
}
.team-card:hover .team-card__image {
  transform: scale(1.1);
}
.team-card:hover .team-card__title, .team-card:hover .team-card__subtitle {
  color: #ff5501;
}
.team-card__image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.team-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease;
  transform-origin: center;
  z-index: -1;
}
.team-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-inline: 10px;
}
.team-card__title, .team-card__subtitle {
  line-height: 1;
  color: #333333;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.team-card__title {
  font-size: clamp(24px, 24px + 6 * (100vw - 640px) / 384, 30px);
  font-weight: 700;
}
.team-card__subtitle {
  font-size: clamp(20px, 20px + 6 * (100vw - 640px) / 384, 26px);
  font-weight: 500;
}

.social-share-wrapper {
  display: flex;
  gap: 10px;
  position: relative;
  transition: ease 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 480px) {
  .social-share-wrapper {
    flex-wrap: wrap;
  }
}

.social-button {
  display: flex;
  gap: clamp(30px, 30px + 10 * (100vw - 480px) / 544, 40px);
  font-size: 16px;
  align-items: center;
  max-width: 240px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #ff5501;
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: ease 0.3s;
  border-radius: 0.5rem;
}
@media (hover: hover) {
  .social-button:hover {
    background-color: #ff5501;
    color: #ffffff;
  }
  .social-button:hover .social-button__icon {
    fill: #ffffff;
  }
}
.social-button__icon {
  min-width: 30px;
  width: clamp(40px, 40px + 10 * (100vw - 480px) / 544, 50px);
  height: auto;
  fill: #ff5501;
  transition: ease 0.3s;
}
.social-button__iconWrapper {
  padding: 16px;
  padding-right: 0;
}
.social-button__text {
  padding-block: clamp(20px, 20px + 10 * (100vw - 480px) / 544, 30px);
  padding-right: clamp(40px, 40px + 10 * (100vw - 480px) / 544, 50px);
  font-size: clamp(14px, 14px + 2 * (100vw - 480px) / 544, 16px);
}

.social-share-expanded {
  justify-content: center;
  width: clamp(400px, 400px + 100 * (100vw - 480px) / 160, 500px);
  height: 190px;
  border: 1px solid #ff5501;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  transition: ease 0.3s;
  transform: scale(0);
  pointer-events: none;
  transform-origin: top left;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 30px + 10 * (100vw - 480px) / 544, 40px);
  padding-inline: clamp(10px, 10px + 6 * (100vw - 480px) / 544, 16px);
  padding-top: 10px;
  padding-bottom: clamp(16px, 16px + 4 * (100vw - 480px) / 544, 20px);
  z-index: 10;
}
@media (max-width: 480px) {
  .social-share-expanded {
    width: clamp(250px, 250px + 150 * (100vw - 360px) / 120, 400px);
  }
}

.icons {
  display: flex;
  gap: clamp(30px, 30px + 20 * (100vw - 480px) / 544, 50px);
  justify-content: space-between;
}

.smIcons {
  width: 50px;
  width: clamp(30px, 30px + 20 * (100vw - 360px) / 664, 50px);
  transition: ease 0.3s;
  cursor: pointer;
}
@media (hover: hover) {
  .smIcons:hover {
    transform: scale(1.1);
  }
}

.smIcons-expanded {
  width: clamp(30px, 30px + 36 * (100vw - 480px) / 544, 66px);
  height: auto;
}

.close {
  position: relative;
  height: 34px;
  width: clamp(30px, 30px + 20 * (100vw - 360px) / 120, 50px);
  cursor: pointer;
  transition: ease 0.3s;
}
.close:after, .close:before {
  position: absolute;
  right: 0;
  top: 15px;
  content: "";
  width: clamp(30px, 30px + 20 * (100vw - 360px) / 408, 50px);
  height: 3px; /* thickness */
  background-color: #ff5501;
  transition: ease 0.3s;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .close:hover:before {
    transform: rotate(140deg);
  }
  .close:hover:after {
    transform: rotate(45deg);
  }
}

.input-wrapper {
  display: flex;
  width: 100%;
}

.url-input {
  width: 75%;
  height: 50px;
  border: 1px solid #ff5501;
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 544, 24px);
  color: #000000;
  border-right: none;
  font-family: "Neusa Next Thin", sans-serif, arial;
  padding-left: clamp(16px, 16px + 4 * (100vw - 480px) / 544, 20px);
}

.social-button--copy {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: "Neusa Next Thin", sans-serif, arial;
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 544, 24px);
}

.tabs {
  border: 1px solid #ff5501;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tabs-nav {
  display: flex;
  flex-grow: 1;
  background-color: #ffffff;
  overflow-x: auto;
}
.tabs-nav button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background-color: transparent;
  padding-left: 20px;
  font-family: "Neusa Next Pro", sans-serif;
  color: #000000;
  padding: 16px 16px 16px 40px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
}
.tabs-nav button:before {
  position: absolute;
  content: "";
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #ffffff;
  height: 30px;
}
.tabs-nav button:last-child:before, .tabs-nav button.active:before {
  display: none;
}
.tabs-nav button.active {
  background-color: #ff5501;
  padding: 16px 16px 16px 60px;
  color: #ffffff;
}

.tab-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 20px;
}
.tab-content:not(.active) {
  display: none;
}
.tab-content__button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background-color: transparent;
  display: none;
  cursor: pointer;
}
@media (hover: hover) {
  .tab-content__button:hover {
    opacity: 0.5;
    transition: ease 0.3s;
  }
}
.tab-content__button img {
  width: 50px;
  aspect-ratio: 1/1;
}

.tab-item {
  display: flex;
  gap: 20px 40px;
  align-items: center;
  padding-block: 20px;
  margin-inline: clamp(20px, 20px + 30 * (100vw - 640px) / 384, 50px);
}
.tab-item:not(:last-of-type) {
  border-bottom: 1px solid #ff5501;
}
.tab-item:not(.active) {
  pointer-events: none;
}
@media (max-width: 1024px) {
  .tab-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .tab-content:not(.items-visible) .tab-item:nth-of-type(n + 4) {
    display: none;
  }
  .tab-content:not(.items-visible) .tab-item:nth-of-type(n + 4) + .tab-content__button {
    display: flex;
    justify-content: center;
  }
}
.tab-item.no-file .active {
  color: #e3e4e4;
}
.tab-item__wrapper {
  display: flex;
  gap: clamp(20px, 20px + 20 * (100vw - 640px) / 384, 40px);
  align-items: center;
  flex-shrink: 0;
  padding-left: 10px;
}
@media (max-width: 1024px) {
  .tab-item__wrapper {
    width: 100%;
    flex-grow: 1;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.tab-item__date, .tab-item__description {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.tab-item__description {
  padding-right: 10px;
}
@media (max-width: 1024px) {
  .tab-item__description {
    padding-left: 10px;
  }
}
.tab-item__label {
  font-size: 18px;
  line-height: 1;
  color: #e3e4e4;
}
.tab-item__label.active {
  color: #ff5501;
}

.text-and-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px 5.2777777778em;
  margin-bottom: 1.9444444444em;
  padding-left: 4.7222222222em;
}
@media (max-width: 1024px) {
  .text-and-media {
    display: flex;
    flex-direction: column-reverse;
    padding-inline: clamp(20px, 20px + 10 * (100vw - 360px) / 664, 30px);
  }
}
.text-and-media.reversed {
  padding-right: 4.7222222222em;
  padding-left: 0;
}
@media (max-width: 1024px) {
  .text-and-media.reversed {
    display: flex;
    flex-direction: column;
    padding-inline: clamp(20px, 20px + 10 * (100vw - 360px) / 664, 30px);
  }
}

.text {
  flex: 1 1;
}

.image {
  flex: 1 1;
  display: flex;
  justify-content: center;
}

.hero-content {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 375px;
  padding-top: clamp(30px, 30px + 55 * (100vw - 1024px) / 256, 85px);
}
@media (max-width: 1024px) {
  .hero-content {
    padding-top: clamp(20px, 20px + 10 * (100vw - 360px) / 664, 30px);
  }
}
.hero-content:before {
  position: absolute;
  content: "";
  background-color: #000000;
  top: 0;
  left: 0;
  bottom: 80px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .hero-content:before {
    bottom: clamp(230px, 230px + 100 * (100vw - 360px) / 120, 330px);
  }
}
.hero-content .inner-wrapper {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  gap: 20px;
}
.hero-content .inner-wrapper .link {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background-color: transparent;
}
@media (max-width: 768px) {
  .hero-content .inner-wrapper {
    flex-direction: column-reverse;
  }
}
.hero-content__left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-content__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-block: auto;
  padding-block: 20px 100px;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero-content__header {
    padding-block: 0;
  }
}
.hero-content__heading {
  font-size: clamp(32px, 32px + 26 * (100vw - 480px) / 544, 58px);
  max-width: 8.1034482759em;
  width: 100%;
  color: #ffffff;
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .hero-content__heading {
    color: #000000;
    max-width: 11.75em;
  }
}
.hero-content__date {
  font-size: 18px;
  color: #ffffff;
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-content__date {
    font-size: 24px;
    color: #000000;
  }
}
.hero-content__image {
  max-width: clamp(300px, 300px + 100 * (100vw - 768px) / 256, 400px);
  width: 100%;
  aspect-ratio: 1/1;
  align-self: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-content__image {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 20px + 20 * (100vw - 480px) / 288, 40px);
    align-self: center;
    aspect-ratio: unset;
    align-items: center;
  }
  .hero-content__image .link {
    font-size: clamp(30px, 30px + 10 * (100vw - 480px) / 288, 40px);
  }
  .hero-content__image .link:after {
    width: clamp(40px, 40px + 20 * (100vw - 480px) / 288, 60px);
    height: clamp(24px, 24px + 6 * (100vw - 480px) / 288, 30px);
  }
}
.hero-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-content--img:before {
  background-image: url(./../images/good-bet-ds.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero-content--img:before {
    background-image: url(./../images/good-bet-mb.svg);
  }
}

.single-job-page {
  border: 1px solid #ff5501;
  padding-inline: 30px;
  padding-block: 16px;
}
.single-job-page__title {
  font-size: clamp(16px, 16px + 4 * (100vw - 480px) / 544, 20px);
  color: #666666;
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 700;
}
.single-job-page__location {
  font-family: "Neusa Next Thin", sans-serif;
  color: #666666;
  font-size: clamp(16px, 16px + 4 * (100vw - 480px) / 544, 20px);
}
.single-job-page__departmentTitle {
  font-family: "Neusa Next Thin", sans-serif;
  color: #666666;
  font-size: clamp(16px, 16px + 4 * (100vw - 480px) / 544, 20px);
}
.single-job-page__about {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-job-page__about--job {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 10px + 4 * (100vw - 480px) / 544, 14px);
}
.single-job-page__content {
  color: #333333;
  padding-top: clamp(20px, 20px + 10 * (100vw - 480px) / 544, 30px);
}
.single-job-page__content strong {
  font-family: "Neusa Next Pro", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 544, 18px);
}
.single-job-page__content *:not(:last-child) {
  padding-bottom: clamp(30px, 30px + 8 * (100vw - 480px) / 544, 38px);
}
.single-job-page__content li:not(:last-child) {
  padding-bottom: clamp(10px, 10px + 4 * (100vw - 480px) / 544, 14px);
}
.single-job-page__content ul {
  padding-left: clamp(10px, 10px + 6 * (100vw - 480px) / 544, 16px);
}
.single-job-page__content li {
  list-style-type: disc;
}

.awards-carousels {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 640px) {
  .awards-carousels {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.award-logo-container {
  width: 216px;
  aspect-ratio: 216/58;
  flex-shrink: 0;
}

.award-logo {
  width: 100%;
  height: 100%;
}

.swiper-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.award-btn-prev,
.award-btn-next {
  width: 16px;
  aspect-ratio: 1/1;
  cursor: pointer;
  flex-shrink: 0;
}
.award-btn-prev:after,
.award-btn-next:after {
  content: "";
}

.awards-list {
  position: relative;
}
@media (max-width: 640px) {
  .awards-list {
    padding-block: 30px;
    background-color: #f6f6f6;
  }
}
.awards-list__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.awards-list__carousel {
  display: flex;
  align-items: center;
}
.awards-list__carousel-wrapper {
  align-items: center;
}
.awards-list__carousel-slide {
  display: flex;
  justify-content: center;
  height: 200px;
  width: 136px;
}
.awards-list__carousel-slide img {
  width: 250px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.greybg {
  background-color: #f6f6f6;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
}
.wpcf7-form p {
  display: flex;
  flex-direction: column;
}

.wpcf7-form-control {
  width: 100%;
  background-color: #f6f6f6;
  border: 1px solid #333333;
  outline: 0;
  margin-top: 4px;
  padding: 16px;
  font-weight: 500;
  pointer-events: auto;
}

.wpcf7-submit {
  margin: 0;
  display: inline-block;
  font-size: clamp(18px, 18px + 2 * (100vw - 360px) / 664, 20px);
  width: -moz-max-content;
  width: max-content;
  background-color: #ff5501;
  color: #ffffff;
  border: 1px solid #ff5501;
  line-height: 1.2;
  cursor: pointer;
  transition: opacity ease 0.3s;
  border-radius: 4px;
}
@media (hover: hover) {
  .wpcf7-submit:hover {
    opacity: 0.8;
  }
}

.wpcf7-exclusive-checkbox {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1024px) {
  .wpcf7-exclusive-checkbox {
    flex-direction: column;
    align-items: flex-start;
  }
}

body {
  font-family: "Neusa Next Pro Condensed", sans-serif;
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.inner-wrapper {
  padding-inline: clamp(30px, 30px + 55 * (100vw - 1024px) / 256, 85px);
}
@media (max-width: 1024px) {
  .inner-wrapper {
    padding-inline: clamp(20px, 20px + 10 * (100vw - 360px) / 664, 30px);
  }
}

@media (max-width: 1280px) {
  .inner-wrapper-mobile {
    padding-inline: clamp(20px, 20px + 10 * (100vw - 360px) / 664, 30px);
  }
}

.inner-wrapper-breakpoint {
  padding-inline: 85px;
}
@media (max-width: 1024px) {
  .inner-wrapper-breakpoint {
    padding-inline: 30px;
  }
}
@media (max-width: 360px) {
  .inner-wrapper-breakpoint {
    padding-inline: 20px;
  }
}

.heading {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25;
  color: #333333;
}
.heading--white {
  color: #ffffff;
}
@media (max-width: 640px) {
  .heading {
    text-align: center;
  }
}

.main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.primary-button {
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  padding: 0 13px;
  background-color: #ff5501;
  color: #ffffff;
  border: none;
  font-family: "Neusa Next Pro", sans-serif;
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */