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

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
  font-weight: inherit;
}

a {
  font-family: var(--font-family-base), sans-serif;
  color: inherit;
  text-decoration: none;
}

ul, ol, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

input {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

input,
button,
textarea {
  font-family: var(--font-family-base), sans-serif;
}

button {
  padding: 0;
  color: inherit;
  cursor: pointer;
  background-color: inherit;
  border: none;
}

html, body {
  height: 100%;
  margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

input:-webkit-autofill {
  -webkit-background-clip: text;
          background-clip: text;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: none;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100;
  src: url("/fonts/Montserrat-Thin.woff2") format("woff2"), url("/fonts/Montserrat-Thin.woff") format("woff");
  font-display: swap;
}

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

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

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("/fonts/Montserrat-SemiBold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/Montserrat-Medium.woff2") format("woff2"), url("/fonts/Montserrat-Medium.woff") format("woff");
  font-display: swap;
}

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

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("/fonts/Montserrat-ExtraBold.woff") format("woff");
  font-display: swap;
}

:root {
  --color-primary: #196264;
  --color-primary-hover: #217b7e;
  --color-on-primary: #FFFFFF;
  --color-secondary: #0bcaca;
  --color-secondary-opacity-70: rgba(11, 202, 202, 0.7);
  --color-secondary-hover: #02fbde;
  --color-on-secondary: #fff;
  /* surface */
  --color-surface: #0C111D;
  --color-on-surface: #FFFFFF;
  --color-on-surface-opacity-80: rgba(255, 255, 255, 0.8);
  --color-on-surface-opacity-60: rgba(255, 255, 255, 0.6);
  --color-on-surface-opacity-40: rgba(255, 255, 255, 0.4);
  --color-on-surface-opacity-10: rgba(255, 255, 255, 0.1);
  --color-on-surface-opacity-5: rgba(255, 255, 255, 0.05);
  --color-on-surface-dim: #DADADA;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-size: var(--font-size-body-small);
  font-family: var(--font-family-base), sans-serif;
  background-color: var(--color-surface);
  color: var(--color-on-surface);
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 90rem;
  padding: 0 0.9375rem;
  margin: 0 auto;
  width: 100%;
}

.ibg {
  position: relative;
}

.ibg svg,
.ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.responsive-video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.responsive-video video,
.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 91.875em) {
  .title {
    font-size: 3.25rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (font-size: clamp( 1.5rem , 1.0130434783rem  +  2.4347826087vw , 3.25rem )) {
    .title {
      font-size: clamp( 1.5rem , 1.0130434783rem  +  2.4347826087vw , 3.25rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.0130434783rem  +  2.4347826087vw , 3.25rem )) {
    .title {
      font-size: calc(1.5rem + 1.75 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  .title {
    font-size: 1.5rem;
  }
}

.title {
  color: var(--color-on-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-base);
}

.title_center {
  text-align: center;
}

.title span {
  color: var(--color-secondary);
}

@media (min-width: 91.875em) {
  .sub-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (font-size: clamp( 1rem , 0.9304347826rem  +  0.347826087vw , 1.25rem )) {
    .sub-title {
      font-size: clamp( 1rem , 0.9304347826rem  +  0.347826087vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9304347826rem  +  0.347826087vw , 1.25rem )) {
    .sub-title {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  .sub-title {
    font-size: 1rem;
  }
}

.sub-title {
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  color: var(--color-secondary);
}

.text-14 {
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-tight);
  color: var(--color-on-surface-dim);
}

.text-16 {
  font-size: var(--font-size-body-medium);
  line-height: var(--line-height-tight);
  color: var(--color-on-surface);
}

.text-18 {
  font-size: var(--font-size-body-medium);
  line-height: var(--line-height-tight);
  color: var(--color-on-surface-dim);
}

.text-21 {
  font-size: var(--font-size-body-large);
  line-height: var(--line-height-tight);
  color: var(--color-on-surface);
}

.text-24 {
  font-size: var(--font-size-heading-small);
  line-height: var(--line-height-tight);
  color: var(--color-on-surface);
}

.text-27 {
  font-size: var(--font-size-heading-medium);
  line-height: var(--line-height-tight);
  color: var(--color-on-surface);
}

.text-32 {
  font-size: var(--font-size-heading-large);
  line-height: var(--line-height-tight);
  color: var(--color-on-surface);
}

.fw-300 {
  font-weight: var(--font-weight-light);
}

.fw-400 {
  font-weight: var(--font-weight-normal);
}

.fw-500 {
  font-weight: var(--font-weight-medium);
}

.fw-600 {
  font-weight: var(--font-weight-semibold);
}

.fw-700 {
  font-weight: var(--font-weight-bold);
}

.fw-800 {
  font-weight: var(--font-weight-extrabold);
}

:root {
  /* base spacing unit */
  --spacing-unit: 0.25rem; /* 4px */
  /* spacing scale */
  --spacing-1: calc(var(--spacing-unit) * 1); /* 4px */
  --spacing-2: calc(var(--spacing-unit) * 2); /* 8px */
  --spacing-3: calc(var(--spacing-unit) * 3); /* 12px */
  --spacing-4: calc(var(--spacing-unit) * 4); /* 16px */
  --spacing-5: calc(var(--spacing-unit) * 5); /* 20px */
  --spacing-6: calc(var(--spacing-unit) * 6); /* 24px */
  --spacing-7: calc(var(--spacing-unit) * 7); /* 28px */
  --spacing-8: calc(var(--spacing-unit) * 8); /* 32px */
  --spacing-9: calc(var(--spacing-unit) * 9); /* 36px */
  --spacing-10: calc(var(--spacing-unit) * 10); /* 40px */
  --spacing-12: calc(var(--spacing-unit) * 12); /* 48px */
  --spacing-16: calc(var(--spacing-unit) * 16); /* 64px */
  --spacing-20: calc(var(--spacing-unit) * 20); /* 80px */
  --spacing-24: calc(var(--spacing-unit) * 24); /* 96px */
  /* border radius */
  --radius-sm: 0.125rem; /* 2px */
  --radius-md: 0.25rem; /* 4px */
  --radius-lg: 0.5rem; /* 8px */
  --radius-xl: 0.75rem; /* 12px */
  --radius-2xl: 1rem; /* 16px */
  --radius-full: 9999px;
}

:root {
  --font-family-base: 'Montserrat', sans-serif;
  /* font sizes */
}

@media (min-width: 91.875em) {
  :root {
    --font-size-heading-large: 2rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (--font-size-heading-large: clamp( 1.5rem , 1.3608695652rem  +  0.6956521739vw , 2rem )) {
    :root {
      --font-size-heading-large: clamp( 1.5rem , 1.3608695652rem  +  0.6956521739vw , 2rem );
    }
  }
  @supports not (--font-size-heading-large: clamp( 1.5rem , 1.3608695652rem  +  0.6956521739vw , 2rem )) {
    :root {
      --font-size-heading-large: calc(1.5rem + 0.5 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  :root {
    --font-size-heading-large: 1.5rem;
  }
}

@media (min-width: 91.875em) {
  :root {
    --font-size-heading-medium: 1.6875rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (--font-size-heading-medium: clamp( 1.25rem , 1.1282608696rem  +  0.6086956522vw , 1.6875rem )) {
    :root {
      --font-size-heading-medium: clamp( 1.25rem , 1.1282608696rem  +  0.6086956522vw , 1.6875rem );
    }
  }
  @supports not (--font-size-heading-medium: clamp( 1.25rem , 1.1282608696rem  +  0.6086956522vw , 1.6875rem )) {
    :root {
      --font-size-heading-medium: calc(1.25rem + 0.4375 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  :root {
    --font-size-heading-medium: 1.25rem;
  }
}

@media (min-width: 91.875em) {
  :root {
    --font-size-heading-small: 1.5rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (--font-size-heading-small: clamp( 1.125rem , 1.0206521739rem  +  0.5217391304vw , 1.5rem )) {
    :root {
      --font-size-heading-small: clamp( 1.125rem , 1.0206521739rem  +  0.5217391304vw , 1.5rem );
    }
  }
  @supports not (--font-size-heading-small: clamp( 1.125rem , 1.0206521739rem  +  0.5217391304vw , 1.5rem )) {
    :root {
      --font-size-heading-small: calc(1.125rem + 0.375 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  :root {
    --font-size-heading-small: 1.125rem;
  }
}

@media (min-width: 91.875em) {
  :root {
    --font-size-body-large: 1.3125rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (--font-size-body-large: clamp( 1rem , 0.9130434783rem  +  0.4347826087vw , 1.3125rem )) {
    :root {
      --font-size-body-large: clamp( 1rem , 0.9130434783rem  +  0.4347826087vw , 1.3125rem );
    }
  }
  @supports not (--font-size-body-large: clamp( 1rem , 0.9130434783rem  +  0.4347826087vw , 1.3125rem )) {
    :root {
      --font-size-body-large: calc(1rem + 0.3125 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  :root {
    --font-size-body-large: 1rem;
  }
}

@media (min-width: 91.875em) {
  :root {
    --font-size-body-medium: 1.125rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (--font-size-body-medium: clamp( 0.875rem , 0.8054347826rem  +  0.347826087vw , 1.125rem )) {
    :root {
      --font-size-body-medium: clamp( 0.875rem , 0.8054347826rem  +  0.347826087vw , 1.125rem );
    }
  }
  @supports not (--font-size-body-medium: clamp( 0.875rem , 0.8054347826rem  +  0.347826087vw , 1.125rem )) {
    :root {
      --font-size-body-medium: calc(0.875rem + 0.25 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  :root {
    --font-size-body-medium: 0.875rem;
  }
}

@media (min-width: 91.875em) {
  :root {
    --font-size-body-small: 1rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (--font-size-body-small: clamp( 0.75rem , 0.6804347826rem  +  0.347826087vw , 1rem )) {
    :root {
      --font-size-body-small: clamp( 0.75rem , 0.6804347826rem  +  0.347826087vw , 1rem );
    }
  }
  @supports not (--font-size-body-small: clamp( 0.75rem , 0.6804347826rem  +  0.347826087vw , 1rem )) {
    :root {
      --font-size-body-small: calc(0.75rem + 0.25 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  :root {
    --font-size-body-small: 0.75rem;
  }
}

@media (min-width: 91.875em) {
  :root {
    --font-size-body-x-small: 0.875rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (--font-size-body-x-small: clamp( 0.75rem , 0.7152173913rem  +  0.1739130435vw , 0.875rem )) {
    :root {
      --font-size-body-x-small: clamp( 0.75rem , 0.7152173913rem  +  0.1739130435vw , 0.875rem );
    }
  }
  @supports not (--font-size-body-x-small: clamp( 0.75rem , 0.7152173913rem  +  0.1739130435vw , 0.875rem )) {
    :root {
      --font-size-body-x-small: calc(0.75rem + 0.125 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  :root {
    --font-size-body-x-small: 0.75rem;
  }
}

@media (min-width: 91.875em) {
  :root {
    --font-size-body-xs-small: 0.75rem;
  }
}

@media (min-width: 20em) and (max-width: 91.875em) {
  @supports (--font-size-body-xs-small: clamp( 0.625rem , 0.5902173913rem  +  0.1739130435vw , 0.75rem )) {
    :root {
      --font-size-body-xs-small: clamp( 0.625rem , 0.5902173913rem  +  0.1739130435vw , 0.75rem );
    }
  }
  @supports not (--font-size-body-xs-small: clamp( 0.625rem , 0.5902173913rem  +  0.1739130435vw , 0.75rem )) {
    :root {
      --font-size-body-xs-small: calc(0.625rem + 0.125 * (100vw - 20rem) / 71.875);
    }
  }
}

@media (max-width: 20em) {
  :root {
    --font-size-body-xs-small: 0.625rem;
  }
}

:root {
  /* font weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  /* line heights */
  --line-height-base: 1;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;
}

@layer utilities {
  @media (min-width: 91.875em) {
    .adaptive-text-xl {
      font-size: 3rem;
    }
  }
  @media (min-width: 20em) and (max-width: 91.875em) {
    @supports (font-size: clamp( 2rem , 1.7217391304rem  +  1.3913043478vw , 3rem )) {
      .adaptive-text-xl {
        font-size: clamp( 2rem , 1.7217391304rem  +  1.3913043478vw , 3rem );
      }
    }
    @supports not (font-size: clamp( 2rem , 1.7217391304rem  +  1.3913043478vw , 3rem )) {
      .adaptive-text-xl {
        font-size: calc(2rem + 1 * (100vw - 20rem) / 71.875);
      }
    }
  }
  @media (max-width: 20em) {
    .adaptive-text-xl {
      font-size: 2rem;
    }
  }
  @media (min-width: 91.875em) {
    .adaptive-text-lg {
      font-size: 2rem;
    }
  }
  @media (min-width: 20em) and (max-width: 91.875em) {
    @supports (font-size: clamp( 1.5rem , 1.3608695652rem  +  0.6956521739vw , 2rem )) {
      .adaptive-text-lg {
        font-size: clamp( 1.5rem , 1.3608695652rem  +  0.6956521739vw , 2rem );
      }
    }
    @supports not (font-size: clamp( 1.5rem , 1.3608695652rem  +  0.6956521739vw , 2rem )) {
      .adaptive-text-lg {
        font-size: calc(1.5rem + 0.5 * (100vw - 20rem) / 71.875);
      }
    }
  }
  @media (max-width: 20em) {
    .adaptive-text-lg {
      font-size: 1.5rem;
    }
  }
  @media (min-width: 91.875em) {
    .adaptive-text-md {
      font-size: 1.5rem;
    }
  }
  @media (min-width: 20em) and (max-width: 91.875em) {
    @supports (font-size: clamp( 1.125rem , 1.0206521739rem  +  0.5217391304vw , 1.5rem )) {
      .adaptive-text-md {
        font-size: clamp( 1.125rem , 1.0206521739rem  +  0.5217391304vw , 1.5rem );
      }
    }
    @supports not (font-size: clamp( 1.125rem , 1.0206521739rem  +  0.5217391304vw , 1.5rem )) {
      .adaptive-text-md {
        font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 71.875);
      }
    }
  }
  @media (max-width: 20em) {
    .adaptive-text-md {
      font-size: 1.125rem;
    }
  }
  @media (min-width: 91.875em) {
    .adaptive-text-base {
      font-size: 1.125rem;
    }
  }
  @media (min-width: 20em) and (max-width: 91.875em) {
    @supports (font-size: clamp( 1rem , 0.9652173913rem  +  0.1739130435vw , 1.125rem )) {
      .adaptive-text-base {
        font-size: clamp( 1rem , 0.9652173913rem  +  0.1739130435vw , 1.125rem );
      }
    }
    @supports not (font-size: clamp( 1rem , 0.9652173913rem  +  0.1739130435vw , 1.125rem )) {
      .adaptive-text-base {
        font-size: calc(1rem + 0.125 * (100vw - 20rem) / 71.875);
      }
    }
  }
  @media (max-width: 20em) {
    .adaptive-text-base {
      font-size: 1rem;
    }
  }
  @media (min-width: 91.875em) {
    .adaptive-gap-lg {
      gap: 3rem;
    }
  }
  @media (min-width: 20em) and (max-width: 91.875em) {
    @supports (gap: clamp( 1.5rem , 1.0826086957rem  +  2.0869565217vw , 3rem )) {
      .adaptive-gap-lg {
        gap: clamp( 1.5rem , 1.0826086957rem  +  2.0869565217vw , 3rem );
      }
    }
    @supports not (gap: clamp( 1.5rem , 1.0826086957rem  +  2.0869565217vw , 3rem )) {
      .adaptive-gap-lg {
        gap: calc(1.5rem + 1.5 * (100vw - 20rem) / 71.875);
      }
    }
  }
  @media (max-width: 20em) {
    .adaptive-gap-lg {
      gap: 1.5rem;
    }
  }
  @media (min-width: 91.875em) {
    .adaptive-gap-md {
      gap: 2rem;
    }
  }
  @media (min-width: 20em) and (max-width: 91.875em) {
    @supports (gap: clamp( 1rem , 0.7217391304rem  +  1.3913043478vw , 2rem )) {
      .adaptive-gap-md {
        gap: clamp( 1rem , 0.7217391304rem  +  1.3913043478vw , 2rem );
      }
    }
    @supports not (gap: clamp( 1rem , 0.7217391304rem  +  1.3913043478vw , 2rem )) {
      .adaptive-gap-md {
        gap: calc(1rem + 1 * (100vw - 20rem) / 71.875);
      }
    }
  }
  @media (max-width: 20em) {
    .adaptive-gap-md {
      gap: 1rem;
    }
  }
}._navbar_1kpld_1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 4px 0 rgba(38, 40, 46, 0.37);
  background: rgba(11, 202, 202, 0.09);
  transition: all 0.2s ease-in-out;
}

._navbar-inner_1kpld_13 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: 5.25rem;
  position: relative;
}

@media (max-width: 61.99875rem) {
  ._navbar-inner_1kpld_13 {
    height: 3.75rem;
  }
}

._navbar-nav_1kpld_27 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex: 1;
}

@media (max-width: 61.99875rem) {
  ._navbar-nav_1kpld_27 {
    justify-content: flex-end;
  }
}

._logo_1kpld_40 {
  max-width: 180px;
  width: 100%;
}

._logo_1kpld_40 img {
  max-width: 100%;
}

@media (max-width: 83.75rem) {
  ._logo_1kpld_40 {
    max-width: 150px;
  }
}

._navbar-menu_1kpld_53 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-5);
}

@media (max-width: 83.75rem) {
  ._navbar-menu_1kpld_53 {
    gap: var(--spacing-2);
  }
}

._navbar-list_1kpld_65 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2) var(--spacing-5);
}

@media (max-width: 61.99875rem) {
  ._navbar-list_1kpld_65 {
    display: none;
  }
}

._navbar-link_1kpld_78 {
  display: block;
  font-size: var(--font-size-body-x-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-on-primary);
  text-align: center;
  position: relative;
}

._navbar-link_1kpld_78:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-on-primary);
  transform: scaleX(0);
  border-radius: 10px;
  transition: transform 0.2s ease-in-out;
}

@media (any-hover: hover) {
  ._navbar-link_1kpld_78:hover:after {
    transform: scaleX(1);
  }
}

._links_1kpld_104 {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

@media (max-width: 37.5rem) {
  ._links_1kpld_104 {
    display: none;
  }
}

@media (max-width: 83.75rem) {
  ._link_1kpld_104._link_1kpld_104 {
    padding: 0.25rem 0.5rem;
  }
}

._burger_1kpld_121 {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.875rem;
  height: 1.1875rem;
  flex: 0 0 1.875rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

@media (max-width: 61.99875rem) {
  ._burger_1kpld_121 {
    display: flex;
  }
}

._burger_1kpld_121 span {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--color-on-primary);
  border-radius: 0.125rem;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

._burger_1kpld_121.active span:nth-child(1) {
  transform: translateY(0.65625rem) rotate(45deg);
}

._burger_1kpld_121.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(1.25rem);
}

._burger_1kpld_121.active span:nth-child(3) {
  transform: translateY(-0.65625rem) rotate(-45deg);
}

._mobile-menu_1kpld_159 {
  display: none;
}

@media (max-width: 61.99875rem) {
  ._mobile-menu_1kpld_159 {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-surface);
    z-index: 105;
    transition: right 0.3s ease-in-out;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  ._mobile-menu_1kpld_159.active {
    right: 0;
  }
}

._mobile-menu-body_1kpld_182 {
  overflow-y: auto;
}

._mobile-menu-header_1kpld_186 {
  display: flex;
  justify-content: flex-end;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

._mobile-burger_1kpld_193 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.875rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

._mobile-burger_1kpld_193 span {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--color-on-primary);
  border-radius: 0.125rem;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  position: absolute;
}

._mobile-burger_1kpld_193 span:nth-child(1) {
  top: 0;
  transform: translateY(0.65625rem) rotate(45deg);
}

._mobile-burger_1kpld_193 span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

._mobile-burger_1kpld_193 span:nth-child(3) {
  bottom: 0;
  transform: translateY(-0.65625rem) rotate(-45deg);
}

._mobile-menu-list_1kpld_229 {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 0.9375rem;
  list-style: none;
  margin: 0;
}

._mobile-menu-item_1kpld_238 {
  width: 100%;
}

._mobile-menu-link_1kpld_242 {
  display: block;
  font-size: var(--font-size-body-medium);
  font-weight: var(--font-weight-normal);
  color: var(--color-on-primary);
  padding: 0.75rem 1.25rem;
  width: 100%;
  text-align: left;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-radius: 0.25rem;
}

@media (any-hover: hover) {
  ._mobile-menu-link_1kpld_242:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

._mobile-menu-footer_1kpld_260 {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

._mobile-links_1kpld_269 {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  width: 100%;
}

._mobile-link_1kpld_269 {
  width: 100%;
  padding: 0.75rem 1.25rem;
  justify-content: center;
}

@media (max-width: 61.99875rem) {
  body.menu-open {
    overflow: hidden;
  }
}._languageSwitcher_1i22s_1 {
  position: relative;
}

._button_1i22s_5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.125rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease;
}

._button_1i22s_5:hover {
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(28, 255, 255, 0.17), 0 1px 3px 0 rgba(29, 255, 255, 0.55);
}

._button_1i22s_5:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(28, 255, 255, 0.4), 0 0 5px 0 rgba(29, 255, 255, 0.95);
}

._label_1i22s_26 {
  font-size: var(--font-size-body-x-small);
  font-weight: var(--font-weight-normal);
  color: var(--color-on-primary);
  white-space: nowrap;
}

._icon_1i22s_33 {
  width: 1rem;
  height: 1rem;
  color: var(--color-on-primary);
  transition: transform 0.2s ease;
}

._icon_1i22s_33[data-open=true] {
  transform: rotate(180deg);
}

._options_1i22s_43 {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 7.5rem;
  background: var(--color-primary);
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  z-index: 50;
  transition: all 0.2s ease-out;
}

._options_1i22s_43[data-closed] {
  opacity: 0;
  transform: translateY(-0.5rem);
}

._options--up_1i22s_59 {
  top: auto;
  bottom: calc(100% + 0.5rem);
  transform-origin: bottom center;
}

._options--up_1i22s_59[data-closed] {
  opacity: 0;
  transform: translateY(0.5rem);
}

._option_1i22s_43 {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: var(--font-size-body-x-small);
  font-weight: var(--font-weight-normal);
  color: var(--color-on-primary);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

._option_1i22s_43:hover {
  background: var(--color-primary-hover);
}

._option_1i22s_43[data-selected=true] {
  background: rgba(255, 255, 255, 0.1);
  font-weight: var(--font-weight-medium);
}

._option_1i22s_43:focus {
  outline: none;
  background: var(--color-primary-hover);
}._selector_kws4p_1 {
  position: relative;
}

._button_kws4p_5 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-3);
  background: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

._button_kws4p_5:hover {
  opacity: 0.8;
  box-shadow: 0 0 0 2px rgba(28, 255, 255, 0.3);
}

._button_kws4p_5:active {
  opacity: 0.9;
  box-shadow: 0 0 1px 2px rgba(28, 255, 255, 0.5);
}

._button_kws4p_5:focus-visible {
  outline: none;
  opacity: 0.8;
  box-shadow: 0 0 0 3px rgba(28, 255, 255, 0.4);
}

._icon_kws4p_31 {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

._label_kws4p_38 {
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-light);
  color: inherit;
  white-space: nowrap;
}

._chevron_kws4p_45 {
  width: 1rem;
  height: 1rem;
  color: inherit;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

._chevron--open_kws4p_52 {
  transform: rotate(180deg);
}

._options_kws4p_56 {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 9.375rem;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  outline: none;
  z-index: 50;
  transition: all 0.2s ease-out;
}

._options_kws4p_56[data-closed] {
  opacity: 0;
  transform: translateY(-0.5rem);
}

._options_kws4p_56:focus {
  box-shadow: 0 0 1px 2px rgba(25, 98, 100, 0.2);
}

._option_kws4p_56 {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-light);
  color: var(--color-on-primary);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

._option_kws4p_56:hover {
  background: var(--color-primary-hover, rgba(255, 255, 255, 0.1));
}

._option_kws4p_56[data-selected=true] {
  background: rgba(255, 255, 255, 0.1);
  font-weight: var(--font-weight-medium);
}

._option_kws4p_56:focus {
  outline: none;
  background: var(--color-primary-hover, rgba(255, 255, 255, 0.1));
}._footer_147hp_1 {
  background-color: #18212C;
}

._footer__inner_147hp_5 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-5);
  padding: var(--spacing-10) 0;
  position: relative;
}

._footer__inner_147hp_5:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

._footer__top_147hp_23 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-5);
}

._footer__logo_147hp_31 {
  max-width: 13.75rem;
}

._footer__logo_147hp_31 img {
  width: 100%;
}

._footer__copyright_147hp_38 {
  font-weight: 300;
  font-size: var(--font-size-body-small);
}

._footer__bottom_147hp_43 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-5);
}

._footer__nav_147hp_51 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-2) var(--spacing-5);
}

._footer__link_147hp_58 {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-body-small);
  color: #b1b5c3;
  transition: color 0.2s ease;
}

._footer__link_147hp_58 svg {
  transition: transform 0.2s ease;
}

._footer__link_147hp_58:hover {
  color: var(--color-secondary);
}

._footer__link_147hp_58:hover svg {
  transform: translateX(5px);
}