/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/pages/careers.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/ClashDisplay-Regular.woff2") format("woff2"), url("../assets/fonts/ClashDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/ClashDisplay-Medium.woff2") format("woff2"), url("../assets/fonts/ClashDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/ClashDisplay-Semibold.woff2") format("woff2"), url("../assets/fonts/ClashDisplay-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/IBMPlexMono-Regular.woff2") format("woff2"), url("../assets/fonts/IBMPlexMono-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --default-ff: "Clash Display";
  --default-fz: 18px;
  --default-fw: 400;
  --default-lh: 1.2;
  --default-color: #090B0E;
  --page-bc: #090B0E;
  --grid-padding: 32px;
}
@media (max-width: 960px) {
  :root {
    --grid-padding: 24px;
  }
}
@media (max-width: 480px) {
  :root {
    --grid-padding: 16px;
  }
}
:root {
  --Black: #090B0E;
  --White: #FFFFFF;
  --Neon-Blue: #0040FF;
  --Grey-01: #757575;
  --Grey-02: #D4D4D4;
  --Dark-Blue: #07112C;
  --Sky-Blue: #BBD1FF;
  --Light-Blue: #E9F0FF;
  --Dark-Blue: #07112C;
  --White-Background: #F5F7FF;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--default-ff);
  font-size: var(--default-fz);
  font-weight: var(--default-fw);
  line-height: var(--default-lh);
  color: var(--default-color);
  background-color: var(--page-bc);
  position: relative;
  transition: opacity 0.5s ease;
  overflow-x: hidden;
  overflow-y: hidden;
  opacity: 0;
}
body.is-loaded {
  overflow-y: auto;
  opacity: 1;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}

input,
textarea {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: var(--White);
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
}

address {
  font-style: normal;
}

a,
button {
  display: inline-flex;
  cursor: pointer;
  background-color: transparent;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}

select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  appearance: none;
}
select:focus {
  outline: none;
}

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

textarea {
  resize: none;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100vh;
  padding: 20px 0;
}
@media (max-width: 960px) {
  .wrapper {
    padding: 16px 0;
  }
}
@media (max-width: 360px) {
  .wrapper {
    gap: 12px;
  }
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-left: var(--grid-padding);
  padding-right: var(--grid-padding);
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.primary-title {
  font-size: 264px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .primary-title {
    font-size: 200px;
  }
}
@media (max-width: 960px) {
  .primary-title {
    font-size: 129px;
  }
}
@media (max-width: 480px) {
  .primary-title {
    font-size: 64px;
  }
}
@media (max-width: 360px) {
  .primary-title {
    font-size: 45px;
  }
}

.title {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--Black);
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .title {
    font-size: 60px;
  }
}
@media (max-width: 960px) {
  .title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 36px;
  }
}

.secondary-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--Black);
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .secondary-title {
    font-size: 44px;
  }
}
@media (max-width: 960px) {
  .secondary-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .secondary-title {
    font-size: 29px;
  }
}

.tertiary-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .tertiary-title {
    font-size: 32px;
  }
}
@media (max-width: 960px) {
  .tertiary-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .tertiary-title {
    font-size: 23px;
  }
}

.quaternary-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .quaternary-title {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .quaternary-title {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  .quaternary-title {
    font-size: 18px;
  }
}

.section-overlay {
  border-radius: 24px;
  background-color: var(--White-Background);
}
@media (max-width: 1440px) {
  .section-overlay {
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .section-overlay {
    border-radius: 12px;
  }
}

.section-overlay-padding {
  padding: 70px 48px;
}
@media (max-width: 1440px) {
  .section-overlay-padding {
    padding: 70px 24px;
  }
}
@media (max-width: 960px) {
  .section-overlay-padding {
    padding: 60px 24px;
  }
}
@media (max-width: 480px) {
  .section-overlay-padding {
    padding: 50px 12px;
  }
}

.is-white-text {
  color: var(--White);
}

.is-black-text {
  color: var(--Black);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.marquee {
  --duration: 40s;
  --count: 4;
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: callback-marquee var(--duration) linear infinite;
  will-change: transform;
}
@keyframes callback-marquee {
  to {
    transform: translateX(calc(-100% / var(--count)));
  }
}
.marquee-text {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 72px;
}
@media (max-width: 960px) {
  .marquee-text {
    margin-right: 48px;
  }
}
@media (max-width: 480px) {
  .marquee-text {
    margin-right: 20px;
  }
}
.marquee__top-left-arrow {
  position: absolute;
  top: 0;
  left: 0;
}
.marquee__bottom-left-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}
.marquee__top-right-arrow {
  position: absolute;
  top: 0;
  right: 0;
}
.marquee__bottom-right-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 480px) {
  .marquee__arrow {
    width: 8px;
    height: 8px;
  }
  .marquee__arrow img {
    width: 100%;
    height: 100%;
  }
}

.swap-trigger {
  display: inline-flex;
}
.swap-trigger__inner {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.swap-trigger__current, .swap-trigger__next {
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.swap-trigger__next {
  position: absolute;
  inset: 0 auto auto 0;
  transform: translateY(100%);
}
.swap-trigger:hover .swap-trigger__current {
  transform: translateY(-100%);
}
.swap-trigger:hover .swap-trigger__next {
  transform: translateY(0);
}

.trigger-transparent-hover {
  transition: 0.35s;
}
.trigger-transparent-hover:hover {
  background-color: var(--White);
  color: var(--Black);
}
.trigger-transparent-hover:active {
  background-color: var(--Light-Blue);
}

.trigger-transparent-hover-2 {
  transition: 0.35s;
}
.trigger-transparent-hover-2:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
}
.trigger-transparent-hover-2:active {
  background-color: var(--Black);
  color: var(--White);
}

.trigger-white-hover {
  transition: 0.35s;
}
.trigger-white-hover:hover {
  background-color: var(--Light-Blue);
}
.trigger-white-hover:active {
  background-color: var(--Sky-Blue);
}

.trigger-blue-hover {
  transition: 0.35s;
}
.trigger-blue-hover:hover {
  background-color: var(--Dark-Blue);
}
.trigger-blue-hover:active {
  background-color: var(--Black);
}

.typing-hidden {
  visibility: hidden;
}

.Typewriter__cursor {
  opacity: 1;
  transition: opacity 0.2s;
}

.is-hidden-typing-wait .Typewriter__cursor {
  opacity: 0 !important;
}

.is-hidden-typing-wait.typing-started .Typewriter__cursor {
  opacity: 1 !important;
}

.Typewriter__cursor {
  font-family: initial !important;
}

.header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 500;
  transition: transform 0.3s ease;
}
@media (max-width: 960px) {
  .header {
    top: 36px;
  }
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  margin: 0 48px;
  transition: background-color 0.1s, backdrop-filter 0.1s, border-radius 0.1s;
}
@media (max-width: 1440px) {
  .header__inner {
    margin: 0 26px;
  }
}
@media (max-width: 960px) {
  .header__inner {
    margin: 0 24px;
  }
}
@media (max-width: 480px) {
  .header__inner {
    margin: 0 12px;
  }
}
.header__logo {
  transition: 0.1s;
}
.header__nav {
  margin-left: 360px;
}
@media (max-width: 1440px) {
  .header__nav {
    margin-left: 145px;
  }
}
@media (max-width: 960px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header__nav-item {
  position: relative;
}
.header__nav-item:last-child .header__nav-link::after {
  content: "+";
  transition: transform 0.3s ease;
}
.header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  height: 44px;
  padding: 0 12px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: 0.5s;
}
@media (max-width: 1440px) {
  .header__nav-link {
    font-size: 16px;
  }
}
.header__nav-link.is-active::after {
  transform: rotate(45deg);
}
.header__nav-link:hover::after {
  transform: rotate(45deg);
}
.header__nav-dropdown {
  display: flex;
  align-items: center;
  gap: 55px;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background-color: var(--White);
  padding: 12px;
  border-radius: 8px;
  background-color: var(--White);
  padding: 12px;
  width: 290px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.5s;
}
.header__nav-dropdown.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header__nav-sublist {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.header__nav-sublink {
  font-size: 16px;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--Black);
  transition: 0.5s;
}
.header__nav-sublink:hover {
  color: var(--Neon-Blue);
}
.header__nav-medias {
  position: relative;
  width: 132px;
  height: 132px;
}
.header__nav-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 6px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  filter: blur(12px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
}
.header__nav-content:first-child {
  background-image: url("../assets/images/decor/bg-gradient-1.jpg");
}
.header__nav-content:nth-child(2) {
  background-image: url("../assets/images/decor/bg-gradient-2.jpg");
}
.header__nav-content:nth-child(3) {
  background-image: url("../assets/images/decor/map-image.jpg");
}
.header__nav-content.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.header__nav-text {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  color: var(--White);
  text-align: center;
}
.header__book, .header__contact {
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: 0.5s;
}
@media (max-width: 960px) {
  .header__book, .header__contact {
    display: none;
  }
}
.header__book {
  margin-left: auto;
  margin-right: 2px;
  padding: 0 32px;
  transition: 0.35s;
}
.header__contact {
  padding: 0 43px;
  transition: 0.35s;
}
.header__contact svg {
  animation: contactBlinkDark 2s ease-in-out infinite;
}
.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 40px;
  width: 40px;
}
@media (max-width: 960px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  position: absolute;
  width: 32px;
  height: 2px;
  border-radius: 100px;
  transition: 0.5s;
}
.header__burger span:first-child {
  transform: translateY(6px);
}
.header__burger span:last-child {
  transform: translateY(-6px);
}
.header__menu {
  position: absolute;
  top: 95%;
  width: 100%;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s, visibility 0.1s;
}
.header__menu-inner {
  background: rgba(7, 17, 44, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 0 0 12px 12px;
  margin: 0 24px;
  padding: 24px 16px 20px;
}
@media (max-width: 480px) {
  .header__menu-inner {
    margin: 0 12px;
  }
}
.header__menu-nav {
  margin-bottom: 24px;
}
.header__menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__menu-item:not(:last-child) {
  border-bottom: 1px solid var(--Grey-01);
}
.header__menu-box.is-active .header__menu-plus span:last-child {
  transform: rotate(90deg);
  opacity: 0;
}
.header__menu-link {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--White);
  padding: 12px 10px;
}
@media (max-width: 480px) {
  .header__menu-link {
    font-size: 29px;
  }
}
.header__menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  width: 100%;
}
.header__menu-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
}
.header__menu-plus span {
  width: 2px;
  height: 12px;
  background-color: var(--White);
}
.header__menu-plus span:first-child {
  transform: rotate(90deg) translateY(-1.8px);
}
.header__menu-label {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--White);
}
@media (max-width: 480px) {
  .header__menu-label {
    font-size: 29px;
  }
}
.header__menu-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.header__menu-body {
  padding: 8px 10px 12px;
}
.header__menu-sublist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header__menu-sublink {
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  padding: 8px 0;
  text-transform: uppercase;
  color: var(--White);
}
.header__menu-buttons {
  display: flex;
  gap: 6px;
}
@media (max-width: 480px) {
  .header__menu-buttons {
    flex-direction: column;
  }
}
.header__menu-book, .header__menu-contact {
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: 0.5s;
}
.header__menu-book {
  color: var(--White);
  border: 1px solid var(--White);
  padding: 0 32px;
}
@media (max-width: 480px) {
  .header__menu-book {
    order: 2;
  }
}
.header__menu-contact {
  background-color: var(--White);
  color: var(--Black);
  padding: 0 43px;
}
.header__menu-contact svg {
  color: var(--Neon-Blue);
}
.header.header--default-light .header__logo {
  color: var(--White);
}
.header.header--default-light .header__nav-link {
  color: var(--White);
  border: 1px solid var(--White);
}
.header.header--default-light .header__nav-link:hover {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--default-light .header__nav-link.is-active {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--default-light .header__book {
  color: var(--White);
  border: 1px solid var(--White);
}
.header.header--default-light .header__book:hover {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--default-light .header__contact {
  background-color: var(--White);
  color: var(--Black);
}
.header.header--default-light .header__contact:hover {
  color: var(--Neon-Blue);
}
.header.header--default-light .header__contact svg {
  color: var(--Neon-Blue);
  animation: contactBlinkDark 2s ease-in-out infinite;
}
.header.header--default-light .header__burger span {
  background-color: var(--White);
}
.header.header--default-dark .header__logo {
  color: var(--Black);
}
.header.header--default-dark .header__nav-link {
  color: var(--Black);
  border: 1px solid var(--Black);
}
.header.header--default-dark .header__nav-link:hover {
  background-color: var(--Black);
  color: var(--White);
  border-color: var(--Black);
}
.header.header--default-dark .header__nav-link.is-active {
  background-color: var(--Black);
  color: var(--White);
  border-color: var(--Black);
}
.header.header--default-dark .header__book {
  color: var(--Black);
  border: 1px solid var(--Black);
}
.header.header--default-dark .header__book:hover {
  background-color: var(--Black);
  color: var(--White);
  border-color: var(--Black);
}
.header.header--default-dark .header__contact {
  background-color: var(--Neon-Blue);
  color: var(--White);
}
.header.header--default-dark .header__contact:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--default-dark .header__contact svg {
  color: var(--White);
  animation: contactBlinkLight 2s ease-in-out infinite;
}
.header.header--default-dark .header__burger span {
  background-color: var(--Black);
}
.header.header--light .header__inner, .header.header--dark .header__inner {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}
.header.header--light .header__logo {
  color: var(--White);
}
.header.header--light .header__nav-link {
  color: var(--White);
  border: 1px solid var(--White);
}
.header.header--light .header__nav-link:hover {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--light .header__nav-link.is-active {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--light .header__book {
  color: var(--White);
  border: 1px solid var(--White);
}
.header.header--light .header__book:hover {
  background-color: var(--White);
  color: var(--Black);
  border-color: var(--White);
}
.header.header--light .header__contact {
  background-color: var(--White);
  color: var(--Black);
}
.header.header--light .header__contact:hover {
  color: var(--Neon-Blue);
}
.header.header--light .header__contact svg {
  color: var(--Neon-Blue);
  animation: contactBlinkDark 2s ease-in-out infinite;
}
.header.header--light .header__burger span {
  background-color: var(--White);
}
.header.header--dark .header__logo {
  color: var(--Black);
}
.header.header--dark .header__nav-link {
  color: var(--Black);
  border: 1px solid var(--Black);
}
.header.header--dark .header__nav-link:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--dark .header__nav-link.is-active {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--dark .header__book {
  color: var(--Black);
  border: 1px solid var(--Black);
}
.header.header--dark .header__book:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--dark .header__contact {
  background-color: var(--Neon-Blue);
  color: var(--White);
}
.header.header--dark .header__contact:hover {
  background-color: var(--Dark-Blue);
  color: var(--White);
  border-color: var(--Dark-Blue);
}
.header.header--dark .header__contact svg {
  color: var(--White);
  animation: contactBlinkLight 2s ease-in-out infinite;
}
.header.header--dark .header__burger span {
  background-color: var(--Black);
}
@media (max-width: 360px) {
  .header.is-open-burger {
    top: 16px;
  }
}
.header.is-open-burger .header__inner {
  background: rgba(7, 17, 44, 0.7) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 12px 12px 0 0 !important;
  padding: 32px 28px 12px !important;
}
@media (max-width: 480px) {
  .header.is-open-burger .header__inner {
    padding: 20px 16px 12px !important;
  }
}
@media (max-width: 360px) {
  .header.is-open-burger .header__inner {
    margin: 0;
    padding: 32px 24px 12px !important;
  }
}
.header.is-open-burger .header__logo {
  color: var(--White) !important;
}
.header.is-open-burger .header__burger span {
  background-color: var(--White) !important;
}
.header.is-open-burger .header__burger span:first-child {
  transform: rotate(45deg);
}
.header.is-open-burger .header__burger span:last-child {
  transform: rotate(-45deg);
}
.header.is-open-burger .header__menu {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 360px) {
  .header.is-open-burger .header__menu-inner {
    margin: 0;
  }
}
.header.header--hidden {
  transform: translateY(-200%);
}

@keyframes contactBlinkDark {
  0% {
    color: var(--Neon-Blue);
  }
  100% {
    color: var(--Dark-Blue);
  }
}
@keyframes contactBlinkLight {
  0% {
    color: var(--White);
  }
  100% {
    color: var(--Sky-Blue);
  }
}
.footer__inner {
  background-image: url("../assets/images/footer/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 32px 25px 13px;
  border-radius: 24px;
}
@media (max-width: 1440px) {
  .footer__inner {
    background-image: url("../assets/images/footer/bg-laptop.jpg");
  }
}
@media (max-width: 960px) {
  .footer__inner {
    padding: 24px;
    background-image: url("../assets/images/footer/bg-tablet.jpg");
  }
}
@media (max-width: 480px) {
  .footer__inner {
    background-image: url("../assets/images/footer/bg-mobile-tablet.jpg");
  }
}
@media (max-width: 360px) {
  .footer__inner {
    padding: 24px 12px;
    background-image: url("../assets/images/footer/bg-mobile.jpg");
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 155px;
}
@media (max-width: 960px) {
  .footer__top {
    margin-bottom: 190px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer__top {
    gap: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 360px) {
  .footer__top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.footer__logo {
  color: var(--White);
  margin-bottom: 24px;
}
@media (max-width: 960px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .footer__logo {
    margin-bottom: 12px;
  }
}
.footer__address {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--White);
  max-width: 240px;
}
@media (max-width: 960px) {
  .footer__address {
    margin-bottom: 12px;
  }
}
.footer__email {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  color: var(--White);
  text-decoration: underline;
}
.footer__navs {
  display: flex;
  gap: 80px;
}
@media (max-width: 960px) {
  .footer__navs {
    gap: 60px;
  }
}
@media (max-width: 480px) {
  .footer__navs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 76px;
  }
}
@media (max-width: 360px) {
  .footer__navs {
    gap: 24px 44px;
  }
}
.footer__nav {
  margin: 0 !important;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav-link {
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  color: var(--White);
  text-transform: uppercase;
  padding: 8px 0;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 480px) {
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__copyright {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  color: var(--White);
}
@media (max-width: 480px) {
  .footer__copyright {
    order: 2;
    max-width: 170px;
  }
}
.footer__privacy-menu {
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .footer__privacy-menu {
    order: 1;
  }
}
.footer__cookies, .footer__privacy {
  position: relative;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
  color: var(--White);
}
.footer__cookies:after, .footer__privacy:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--White);
  transition: 0.5s;
}

.modal-callback {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 360px) {
  .modal-callback {
    padding: 16px;
    justify-content: center;
  }
}
.modal-callback.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-callback__overlay {
  max-width: 620px;
  width: 100%;
  background-color: var(--White);
  padding: 32px;
  border-radius: 16px;
}
@media (max-width: 960px) {
  .modal-callback__overlay {
    max-width: 590px;
  }
}
@media (max-width: 480px) {
  .modal-callback__overlay {
    padding: 25px 16px;
  }
}
@media (max-width: 360px) {
  .modal-callback__overlay {
    padding: 20px 16px;
  }
}
.modal-callback__close {
  margin-bottom: 44px;
  color: var(--Dark-Blue);
  transition: 0.5s;
}
@media (max-width: 960px) {
  .modal-callback__close {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .modal-callback__close {
    margin-bottom: 32px;
    width: 44px;
    height: 44px;
  }
}
.modal-callback__close:hover {
  color: var(--Neon-Blue);
}
.modal-callback__title {
  margin-bottom: 28px;
}
@media (max-width: 960px) {
  .modal-callback__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .modal-callback__title {
    margin-bottom: 20px;
  }
}
.modal-callback__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.modal-callback__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 960px) {
  .modal-callback__fields {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .modal-callback__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.modal-callback__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal-callback__label {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
}
.modal-callback__star {
  color: var(--Neon-Blue);
  margin-left: -8px;
}
.modal-callback__input {
  font-family: "IBM Plex Mono";
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--Black);
}
.modal-callback__input::placeholder {
  font-family: "IBM Plex Mono";
  color: var(--Grey-01);
}
.modal-callback__textarea {
  font-family: "IBM Plex Mono";
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--Black);
  height: 135px;
}
.modal-callback__textarea::placeholder {
  font-family: "IBM Plex Mono";
  color: var(--Grey-01);
}
.modal-callback__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  height: 44px;
  padding: 0 32px;
  background-color: var(--Neon-Blue);
  text-transform: uppercase;
  color: var(--White);
  border-radius: 100px;
}
.modal-callback__note {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  line-height: 1.15;
}
.modal-callback__note a {
  text-decoration: underline;
}

.modal-success {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 360px) {
  .modal-success {
    padding: 16px;
    justify-content: center;
  }
}
.modal-success.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-success__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background-color: var(--White);
  max-width: 470px;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 480px) {
  .modal-success__overlay {
    max-width: 304px;
  }
}
.modal-success__close {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  margin-left: auto;
  color: var(--Dark-Blue);
  transition: 0.5s;
}
.modal-success__close:hover {
  color: var(--Neon-Blue);
}
.modal-success__title {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 960px) {
  .modal-success__title {
    margin-bottom: 24px;
  }
}
.modal-success__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 960px) {
  .modal-success__content {
    gap: 8px;
  }
}
.modal-success__text {
  font-family: "IBM Plex Mono";
  text-align: center;
}

.modal-error {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 360px) {
  .modal-error {
    padding: 16px;
    justify-content: center;
  }
}
.modal-error.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-error__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background-color: var(--White);
  max-width: 470px;
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 480px) {
  .modal-error__overlay {
    max-width: 304px;
  }
}
.modal-error__close {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  margin-left: auto;
}
.modal-error__title {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 960px) {
  .modal-error__title {
    margin-bottom: 24px;
  }
}
.modal-error__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 960px) {
  .modal-error__content {
    gap: 8px;
  }
}
.modal-error__text {
  font-family: "IBM Plex Mono";
  text-align: center;
}

.intro-careers {
  overflow: hidden;
}
.intro-careers__inner {
  padding: 230px 0;
}
@media (max-width: 1440px) {
  .intro-careers__inner {
    padding: 211px 0;
  }
}
@media (max-width: 960px) {
  .intro-careers__inner {
    padding: 185px 0;
  }
}
@media (max-width: 480px) {
  .intro-careers__inner {
    padding: 150px 0 130px;
  }
}
@media (max-width: 320px) {
  .intro-careers__inner {
    padding: 150px 0;
  }
}

.purpose__inner {
  background-color: var(--White-Background);
  padding-top: 370px;
  padding-bottom: 370px;
  padding-inline: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1440px) {
  .purpose__inner {
    padding-top: 293px;
    padding-bottom: 293px;
  }
}
@media (max-width: 960px) {
  .purpose__inner {
    padding-top: 197px;
    padding-bottom: 197px;
  }
}
@media (max-width: 480px) {
  .purpose__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.purpose__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1492px;
  width: 100%;
}
@media (max-width: 1440px) {
  .purpose__content {
    max-width: 1206px;
  }
}
@media (max-width: 960px) {
  .purpose__content {
    max-width: 728px;
  }
}
@media (max-width: 480px) {
  .purpose__content {
    max-width: 424px;
  }
}
@media (max-width: 360px) {
  .purpose__content {
    max-width: 304px;
  }
}
.purpose__label {
  font-family: "IBM Plex Mono";
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 44px;
}
@media (max-width: 960px) {
  .purpose__label {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .purpose__label {
    margin-bottom: 32px;
  }
}
.purpose__label svg {
  color: var(--Neon-Blue);
}
.purpose__label span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--Black);
}
.purpose__title {
  text-align: center;
  margin-bottom: 72px;
}
@media (max-width: 960px) {
  .purpose__title {
    margin-bottom: 52px;
  }
}
@media (max-width: 480px) {
  .purpose__title {
    margin-bottom: 44px;
  }
}
.purpose__link {
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  text-transform: uppercase;
  padding: 0 32px;
  background-color: var(--Neon-Blue);
  border-radius: 100px;
  color: var(--White);
}

.people__inner {
  padding-block: 70px;
}
@media (max-width: 960px) {
  .people__inner {
    padding-block: 60px;
  }
}
@media (max-width: 480px) {
  .people__inner {
    padding-block: 50px;
  }
}
.people__overlay {
  padding-inline: 48px;
}
@media (max-width: 1440px) {
  .people__overlay {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .people__overlay {
    padding-inline: 12px;
  }
}
.people__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}
@media (max-width: 960px) {
  .people__top {
    margin-bottom: 40px;
    gap: 45px;
  }
}
@media (max-width: 480px) {
  .people__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }
}
.people__title {
  max-width: 570px;
}
@media (max-width: 1440px) {
  .people__title {
    max-width: 388px;
  }
}
@media (max-width: 960px) {
  .people__title {
    max-width: 299px;
  }
}
@media (max-width: 480px) {
  .people__title {
    max-width: 424px;
  }
}
@media (max-width: 360px) {
  .people__title {
    max-width: 259px;
  }
}
.people__text {
  font-family: "IBM Plex Mono";
  width: 575px;
  min-height: 64px;
}
@media (max-width: 1440px) {
  .people__text {
    width: 430px;
    min-height: 88px;
  }
}
@media (max-width: 480px) {
  .people__text {
    width: 424px;
  }
}
@media (max-width: 360px) {
  .people__text {
    width: 304px;
    min-height: 110px;
  }
}
.people__list {
  display: flex;
  gap: 15px;
  margin-bottom: 55px;
}
@media (max-width: 960px) {
  .people__list {
    margin-bottom: 40px;
    gap: 12px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .people__list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 480px) {
  .people__list {
    gap: 8px;
    margin-bottom: 32px;
  }
}
.people__item {
  max-width: 575px;
  width: 100%;
}
@media (max-width: 1440px) {
  .people__item {
    max-width: 430px;
  }
}
@media (max-width: 960px) {
  .people__item {
    max-width: initial;
    width: initial;
    flex: 0 0 380px;
  }
}
@media (max-width: 480px) {
  .people__item {
    flex: 0 0 265px;
  }
}
.people__item:first-child {
  margin-left: 48px;
}
@media (max-width: 1440px) {
  .people__item:first-child {
    margin-left: 24px;
  }
}
@media (max-width: 480px) {
  .people__item:first-child {
    margin-left: 12px;
  }
}
.people__item:last-child {
  margin-right: 48px;
}
@media (max-width: 1440px) {
  .people__item:last-child {
    margin-right: 24px;
  }
}
@media (max-width: 480px) {
  .people__item:last-child {
    margin-right: 12px;
  }
}
.people__box {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 675px;
  overflow: hidden;
  border-radius: 16px;
  padding: 24px;
}
@media (max-width: 1440px) {
  .people__box {
    height: 500px;
    padding: 20px;
  }
}
@media (max-width: 960px) {
  .people__box {
    height: 440px;
  }
}
@media (max-width: 480px) {
  .people__box {
    height: 308px;
    padding: 16px;
  }
}
.people__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.people__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.people__content {
  position: relative;
  z-index: 100;
  margin-top: auto;
}
.people__name {
  color: var(--White);
  margin-bottom: 8px;
}
@media (max-width: 960px) {
  .people__name {
    margin-bottom: 4px;
  }
}
.people__position {
  color: var(--White);
  text-transform: uppercase;
}
.people__wrapper {
  margin-left: auto;
  max-width: 575px;
}
@media (max-width: 1440px) {
  .people__wrapper {
    max-width: 430px;
  }
}
.people__label {
  margin-bottom: 12px;
}
@media (max-width: 960px) {
  .people__label {
    margin-bottom: 12px;
  }
}
.people__description {
  font-family: "IBM Plex Mono";
  margin-bottom: 32px;
}
@media (max-width: 960px) {
  .people__description {
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .people__description {
    margin-bottom: 20px;
  }
}
.people__link {
  font-family: "IBM Plex Mono";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 100px;
  padding: 0 32px;
  background-color: var(--Neon-Blue);
  color: var(--White);
  text-transform: uppercase;
  line-height: 1.3;
  max-width: max-content;
}

.experience__inner {
  padding-block: 70px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .experience__inner {
    padding-block: 60px;
  }
}
@media (max-width: 480px) {
  .experience__inner {
    padding-block: 50px;
  }
}
.experience__wrapper {
  padding-inline: 48px;
}
@media (max-width: 1440px) {
  .experience__wrapper {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .experience__wrapper {
    padding-inline: 12px;
  }
}
.experience__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}
@media (max-width: 960px) {
  .experience__top {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .experience__top {
    margin-bottom: 32px;
    justify-content: center;
  }
}
.experience__swiper {
  overflow: initial !important;
}
.experience__slide {
  max-width: 428px;
  width: 100%;
  perspective: 1000px;
}
@media (max-width: 1440px) {
  .experience__slide {
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .experience__slide {
    max-width: 280px;
  }
}
.experience__slide:hover .experience__box {
  transform: rotateY(180deg);
}
.experience__slide:nth-child(1) .experience__front {
  background-image: url("../assets/images/experience/card-1.jpg");
}
.experience__slide:nth-child(1) .experience__front .experience__label {
  color: var(--White);
}
.experience__slide:nth-child(1) .experience__title {
  color: var(--White);
}
.experience__slide:nth-child(2) .experience__front {
  background-color: var(--White);
  padding: 28px 0 !important;
}
@media (max-width: 1440px) {
  .experience__slide:nth-child(2) .experience__front {
    padding: 20px 0 !important;
  }
}
@media (max-width: 480px) {
  .experience__slide:nth-child(2) .experience__front {
    padding: 16px 0 !important;
  }
}
.experience__slide:nth-child(2) .experience__front .experience__label {
  color: var(--Black);
}
.experience__slide:nth-child(3) .experience__front {
  background-image: url("../assets/images/experience/card-2.jpg");
}
.experience__slide:nth-child(3) .experience__front .experience__label {
  color: var(--White);
}
.experience__slide:nth-child(3) .experience__title {
  color: var(--White);
}
.experience__slide:nth-child(4) .experience__front {
  background-image: url("../assets/images/experience/card-3.jpg");
}
.experience__slide:nth-child(5) .experience__front {
  background-image: url("../assets/images/experience/card-4.jpg");
}
.experience__slide:nth-child(5) .experience__title {
  color: var(--Black);
}
.experience__slide:nth-child(6) .experience__front {
  background-image: url("../assets/images/experience/card-5.jpg");
}
.experience__slide:nth-child(6) .experience__front .experience__label {
  color: var(--White);
}
.experience__slide:nth-child(6) .experience__title {
  color: var(--White);
}
.experience__box {
  position: relative;
  width: 100%;
  height: 100%;
  height: 526px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
@media (max-width: 1440px) {
  .experience__box {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .experience__box {
    height: 356px;
  }
}
.experience__front {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.experience__front .grid-padding {
  padding: 0 28px !important;
}
@media (max-width: 1440px) {
  .experience__front .grid-padding {
    padding: 0 20px !important;
  }
}
@media (max-width: 480px) {
  .experience__front .grid-padding {
    padding: 0 16px !important;
  }
}
.experience__back {
  transform: rotateY(180deg);
  background-color: var(--White);
}
.experience__front, .experience__back {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 28px;
  border-radius: 16px;
  backface-visibility: hidden;
}
@media (max-width: 1440px) {
  .experience__front, .experience__back {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .experience__front, .experience__back {
    padding: 16px;
  }
}
.experience__label {
  position: relative;
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  padding: 3px;
  max-width: max-content;
  margin-bottom: 165px;
}
@media (max-width: 1440px) {
  .experience__label {
    margin-bottom: 120px;
  }
}
@media (max-width: 480px) {
  .experience__label {
    margin-bottom: 123px;
  }
}
.experience__label-top-left-arrow {
  position: absolute;
  top: 0;
  left: 0;
}
.experience__label-top-right-arrow {
  position: absolute;
  top: 0;
  right: -2px;
}
.experience__label-bottom-left-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}
.experience__label-bottom-right-arrow {
  position: absolute;
  bottom: 0;
  right: -2px;
}
.experience__marquee {
  margin-bottom: auto;
}
.experience__tags {
  display: flex;
  align-items: center;
  gap: 2px;
}
.experience__tags:not(:last-child) {
  margin-left: 2px;
}
.experience__tag:nth-child(1) .experience__tag-text {
  background-color: var(--Light-Blue);
}
.experience__tag:nth-child(2) .experience__tag-text {
  background-color: var(--Sky-Blue);
  padding: 8px 32px;
}
.experience__tag:nth-child(3) .experience__tag-text {
  background-color: var(--White-Background);
}
.experience__tag:nth-child(4) .experience__tag-text {
  background-color: var(--Neon-Blue);
  color: var(--White);
}
.experience__tag-text {
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 99px;
  text-transform: uppercase;
}
.experience__title {
  margin-top: auto;
}
.experience__text {
  font-family: "IBM Plex Mono";
  margin-top: auto;
}
.experience__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .experience__arrows {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .experience__arrows.arrows-mobile-hidden {
    display: none;
  }
}
.experience__arrows.arrows-desktop-hidden {
  display: none;
  margin-top: 24px;
}
@media (max-width: 480px) {
  .experience__arrows.arrows-desktop-hidden {
    display: flex;
  }
}
.experience__arrow {
  width: 52px;
  height: 52px;
  position: relative;
  left: initial;
  top: initial;
  right: initial;
  bottom: initial;
  transform: initial;
  margin: 0;
}
.experience__arrow svg {
  color: var(--Black);
  fill: none;
  transition: 0.2s;
}
.experience__arrow:hover svg {
  fill: var(--Black);
  color: var(--White);
}

.roles__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.roles__title {
  text-align: center;
  margin-bottom: -75px;
}
@media (max-width: 1440px) {
  .roles__title {
    margin-bottom: -56px;
  }
}
@media (max-width: 960px) {
  .roles__title {
    margin-bottom: -27px;
  }
}
@media (max-width: 480px) {
  .roles__title {
    margin-bottom: -18px;
  }
}
@media (max-width: 360px) {
  .roles__title {
    margin-bottom: -11px;
  }
}
.roles__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
.roles__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  background-color: var(--Light-Blue);
  border-radius: 12px;
  width: 100%;
}
@media (max-width: 1440px) {
  .roles__box {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .roles__box {
    align-items: flex-end;
    padding: 16px;
    gap: 16px;
  }
}
@media (max-width: 360px) {
  .roles__box {
    gap: 10px;
  }
}
.roles__wrapper {
  display: flex;
  width: 100%;
}
@media (max-width: 480px) {
  .roles__wrapper {
    flex-direction: column;
    max-width: 325px;
  }
}
@media (max-width: 360px) {
  .roles__wrapper {
    max-width: 218px;
  }
}
.roles__name {
  max-width: 740px;
  width: 100%;
}
@media (max-width: 1440px) {
  .roles__name {
    max-width: 600px;
  }
}
@media (max-width: 960px) {
  .roles__name {
    max-width: 380px;
  }
}
@media (max-width: 480px) {
  .roles__name {
    margin-bottom: 16px;
  }
}
.roles__labels {
  display: flex;
  align-items: center;
  gap: 120px;
  margin-left: 270px;
}
@media (max-width: 1440px) {
  .roles__labels {
    margin-left: 78px;
  }
}
@media (max-width: 960px) {
  .roles__labels {
    margin-left: 58px;
    gap: 48px;
  }
}
@media (max-width: 480px) {
  .roles__labels {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    gap: 8px;
  }
}
.roles__label {
  font-family: "IBM Plex Mono";
  font-size: 16px;
  line-height: 1.3;
  flex-shrink: 0;
  text-transform: uppercase;
  color: var(--Grey-01);
}
.roles__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--Neon-Blue);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .roles__link {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 480px) {
  .roles__link svg {
    width: 15px;
    height: 15px;
  }
}
.roles__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.question__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 388px 0;
}
@media (max-width: 1440px) {
  .question__inner {
    padding: 310px 0;
  }
}
@media (max-width: 960px) {
  .question__inner {
    padding: 240px 0;
  }
}
@media (max-width: 480px) {
  .question__inner {
    padding: 160px 0;
  }
}
@media (max-width: 360px) {
  .question__inner {
    padding: 140px 0;
  }
}
.question__title {
  text-align: center;
  margin-bottom: 32px;
  max-width: 830px;
}
@media (max-width: 1440px) {
  .question__title {
    max-width: 692px;
  }
}
@media (max-width: 960px) {
  .question__title {
    margin-bottom: 24px;
    max-width: 515px;
  }
}
@media (max-width: 480px) {
  .question__title {
    max-width: 424px;
  }
}
@media (max-width: 360px) {
  .question__title {
    max-width: 284px;
  }
}
.question__text {
  --reveal-delay: 1.5s;
  max-width: 764px;
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1440px) {
  .question__text {
    max-width: 614px;
  }
}
@media (max-width: 960px) {
  .question__text {
    margin-bottom: 56px;
    max-width: 575px;
  }
}
@media (max-width: 480px) {
  .question__text {
    margin-bottom: 44px;
    max-width: 340px;
  }
}
@media (max-width: 360px) {
  .question__text {
    max-width: 304px;
  }
}
.question__contact {
  font-family: "IBM Plex Mono";
  line-height: 1.3;
  color: var(--White);
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 32px;
  border-radius: 100px;
  background-color: var(--Neon-Blue);
  text-transform: uppercase;
}

.news__inner {
  padding-block: 70px;
}
@media (max-width: 960px) {
  .news__inner {
    padding-block: 60px;
  }
}
@media (max-width: 480px) {
  .news__inner {
    padding-block: 50px;
  }
}
.news__wrapper {
  padding-inline: 48px;
}
@media (max-width: 1440px) {
  .news__wrapper {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .news__wrapper {
    padding-inline: 12px;
  }
}
.news__swiper {
  margin-top: 55px;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  .news__swiper {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .news__swiper {
    margin-top: 28px;
    margin-bottom: 24px;
  }
}
.news__swiper-slide {
  width: 655px !important;
  border-radius: 16px;
  background-color: var(--White);
}
@media (max-width: 960px) {
  .news__swiper-slide {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .news__swiper-slide {
    width: 285px !important;
  }
}
.news__swiper-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  padding: 20px;
}
@media (max-width: 960px) {
  .news__swiper-box {
    padding: 16px;
    flex-direction: column;
    gap: 20px;
  }
}
.news__swiper-content {
  display: flex;
  flex-direction: column;
  width: 300px;
}
@media (max-width: 960px) {
  .news__swiper-content {
    width: 100%;
    order: 2;
  }
}
.news__swiper-date {
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--Grey-01);
  margin-bottom: auto;
}
@media (max-width: 960px) {
  .news__swiper-date {
    margin-bottom: 16px;
  }
}
.news__swiper-label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono";
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (max-width: 960px) {
  .news__swiper-label {
    margin-bottom: 8px;
  }
}
.news__swiper-label svg {
  color: var(--Neon-Blue);
}
.news__swiper-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.news__swiper-link {
  font-size: 16px;
  font-family: "IBM Plex Mono";
  text-transform: uppercase;
}
.news__swiper-link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.news__swiper-image {
  width: 270px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .news__swiper-image {
    width: 250px;
    height: 250px;
    order: 1;
  }
}
.news__swiper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 480px) {
  .news__actions {
    justify-content: center;
  }
}
.news__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .news__arrows {
    justify-content: center;
  }
}
.news__arrow {
  position: relative !important;
  left: initial !important;
  top: initial !important;
  right: initial !important;
  bottom: initial !important;
  transform: initial !important;
  margin: 0 !important;
}
.news__arrow svg {
  color: var(--Black) !important;
  fill: none !important;
  transition: 0.2s !important;
}
.news__arrow:hover svg {
  fill: var(--Black) !important;
  color: var(--White) !important;
}
.news__progress {
  position: relative !important;
  width: 100% !important;
  height: 4px !important;
  background: var(--Light-Blue) !important;
  border-radius: 99px !important;
  overflow: hidden !important;
}
.news__progress .swiper-pagination-progressbar-fill {
  background-color: var(--Dark-Blue) !important;
  height: 100% !important;
  border-radius: 99px !important;
}
@media (max-width: 480px) {
  .news__progress {
    display: none !important;
  }
}
.news__arrow {
  width: 52px !important;
  height: 52px !important;
}
/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/swiper/swiper-bundle.css ***!
  \*******************************************************************************************************************************************************************************************/
/**
 * Swiper 14.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 28, 2026
 */

: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;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    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 */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .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-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    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;
  transform-origin: 50%;
  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-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

: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;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.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-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    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& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &: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%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* 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-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.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;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: "";
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}


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