@charset "UTF-8";
@import url("reset.css");
@import url("fonts.css");
@import url("swiper-bundle.css");
@import url("fancybox.css");
/* stylelint-disable */
:root {
  --font-family: "Red Hat Display", Arial, sans-serif;
  --second-family: "Bebas Neue", Impact, sans-serif;
  --app-height: 100vh;
  --headroom-height: auto;
  --c0: #ffffff;
  --c1: #000000;
  --c2: #333333;
  --White: #FFF;
  --white-60: color-mix(in srgb, var(--White) 60%, transparent);
  --white-50: color-mix(in srgb, var(--White) 50%, transparent);
  --white-20: color-mix(in srgb, var(--White) 20%, transparent);
  --Black: #000;
  --Gray: #333;
  --black-70: color-mix(in srgb, var(--Black) 70%, transparent);
  --black-50: color-mix(in srgb, var(--Black) 50%, transparent);
  --black-40: color-mix(in srgb, var(--Black) 40%, transparent);
  --black-20: color-mix(in srgb, var(--Black) 20%, transparent);
  --Beige: #B9BAB0;
  --Blue: #2F3A85;
  --error-dark-bg: #F00;
  --error-light-bg: #900;
  --c3: color-mix(in srgb, currentColor 3%, transparent);
  --wr: 52rem;
  --awr: calc(-1 * var(--wr));
  --gap: clamp(24rem, 3vw, 48rem);
  --gap-2: clamp(8rem, 0.75vw, 12rem);
  --gap-3: 32rem 16rem;
  --sl: max(1px, 1rem);
  --btn: max(56px, 60rem);
  --main-cols: repeat(6, minmax(0, 1fr));
  --cols: repeat(6, minmax(0, 1fr));
  --f-link: max(48px, 64rem);
  --f-number: max(64px, 130rem);
  --f-xs: max(14px, 16rem);
  --f-s: max(16px, 18rem);
  --f-d: max(18px, 24rem);
  --f-m: max(24px, 28rem);
  --f-b: max(28px, 32rem);
  --f-l: max(32px, 36rem);
  --f-xl: max(36px, 72rem);
  --f-xxl: max(48px, 84rem);
  --mw: 192000px;
}
@media (max-width: 1239px) {
  :root {
    --cols: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  :root {
    --cols: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  :root {
    --cols: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  :root {
    --cols: repeat(2, minmax(0, 1fr));
  }
}

/* globals */
/* stylelint-disable */
@media screen {
  html {
    font-size: 0.0625vw;
    background-color: var(--c1);
  }
  .document {
    font-weight: 500;
    font-family: var(--font-family);
    font-size: var(--f-s);
    line-height: 110%;
    color: var(--c0);
    background-color: var(--c1);
    letter-spacing: -0.03em;
  }
  p {
    font-weight: 500;
    font-family: var(--font-family);
    font-size: var(--f-s);
    line-height: 110%;
    color: var(--c0);
    letter-spacing: -0.03em;
  }
  .wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--wr);
    max-width: var(--mw);
  }
  .preloader {
    z-index: 9999 !important;
    visibility: visible;
    pointer-events: none;
    -webkit-transition: visibility 0s;
    transition: visibility 0s;
  }
  .preloader .grid_column {
    --preloader-delay: 0s;
  }
  .preloader .grid_column:before {
    content: none !important;
  }
  .preloader .grid_column:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--Black);
    -webkit-transition: height 0.65s var(--preloader-delay) cubic-bezier(0.77, 0, 0.175, 1);
    transition: height 0.65s var(--preloader-delay) cubic-bezier(0.77, 0, 0.175, 1);
    will-change: height;
  }
  .preloader .grid_column:nth-child(2) {
    --preloader-delay: .12s;
  }
  .preloader .grid_column:nth-child(3) {
    --preloader-delay: .04s;
  }
  .preloader .grid_column:nth-child(4) {
    --preloader-delay: .24s;
  }
  .preloader .grid_column:nth-child(5) {
    --preloader-delay: .09s;
  }
  .preloader .grid_column:nth-child(6) {
    --preloader-delay: .3s;
  }
  .preloader .grid_column:nth-child(7) {
    --preloader-delay: .17s;
  }
  .preloader .grid_column:nth-child(8) {
    --preloader-delay: .05s;
  }
  .preloader.finished {
    visibility: hidden;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
  }
  .preloader.finished .grid_column:after {
    height: 0;
  }
  .preloader .sprite {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 292rem;
    height: 123rem;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
    z-index: 1;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.35s 0.25s ease, visibility 0s 0.6s;
    transition: opacity 0.35s 0.25s ease, visibility 0s 0.6s;
  }
}
@media screen and (max-width: 1024px) {
  .preloader .sprite {
    width: 168rem;
    height: 70rem;
  }
}
@media screen {
  .preloader.finished .sprite {
    opacity: 0;
    visibility: hidden;
  }
  .preloader svg {
    width: 100%;
    height: auto;
  }
  .loading {
    pointer-events: none;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  .preloader,
  .preloader .grid_column:after,
  .preloader .sprite {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}
@media screen {
  .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 0;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .cover,
  .contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    pointer-events: none;
  }
  .cover {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .contain {
    -o-object-fit: contain;
    object-fit: contain;
  }
  .fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  .mask-appear-inner {
    padding: 0 0 0.2em 0;
    margin: 0 0 -0.2em 0;
    opacity: 0;
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: var(--app-height);
  }
  .main {
    margin-top: 0;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: clip;
  }
  .section {
    position: relative;
    z-index: 1;
    margin-bottom: clamp(72rem, 12.5vw, 200rem);
  }
  .section:last-child {
    margin-bottom: clamp(72rem, 8.125vw, 130rem);
  }
  .section:only-child {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
  .section__contrast {
    background-color: var(--c1);
    color: var(--c0);
  }
  .section__contrast .button__secondary {
    background-color: var(--c0);
    color: var(--c1);
  }
  .section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-header.center p {
    margin-top: clamp(36px, 3vw, 4.8rem);
  }
}
@media screen and (min-width: 1024px) {
  .section-header.center {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen {
  .section-header:not(:last-child) {
    margin-bottom: 55rem;
  }
  .section-header-pretitle {
    text-transform: uppercase;
    font-size: var(--f-xs);
    letter-spacing: 0.0625em;
    padding-top: 25rem;
    border-top: var(--sl) solid;
  }
  .section-header-pretitle:not(:last-child) {
    margin-bottom: 70rem;
  }
  .section-header-title {
    max-width: 1075rem;
  }
  .section-header-title.center {
    max-width: 836rem;
    -ms-flex-item-align: center;
    align-self: center;
    text-align: center;
  }
  .section-header-subtitle {
    margin-top: 30rem;
  }
  .tabs {
    overflow: hidden;
  }
  .tabs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tabs li {
    margin: 5rem;
    border-radius: 999rem;
    border: var(--sl) solid var(--c4);
    padding: 10rem 25rem;
    text-transform: uppercase;
    font-size: var(--f-xs);
    letter-spacing: 0.0625em;
    position: relative;
    overflow: hidden;
  }
  .tabs li.current {
    background-color: var(--c1);
    color: var(--c0);
    border-color: var(--c1);
    pointer-events: none;
  }
  .breadcrumbs {
    margin: 0 0 120rem;
    overflow: hidden;
    text-transform: uppercase;
    font-size: var(--f-xs);
  }
  .breadcrumbs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -0.5em;
  }
  .breadcrumbs li {
    margin-left: 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .breadcrumbs li:last-child {
    pointer-events: none;
    color: var(--c8);
  }
  .breadcrumbs li:not(:last-child)::after {
    content: "/";
    padding-left: 0.5em;
  }
  .textbox h2 {
    margin: 3em 0 1.5em;
    text-transform: uppercase;
  }
  .textbox h2:first-child {
    margin-top: 0;
  }
  .textbox ul,
  .textbox ol {
    margin: 1em 0;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 0.65em;
    counter-reset: index;
  }
  .textbox ol {
    counter-reset: index;
  }
  .textbox ul:first-child,
  .textbox ol:first-child {
    margin-top: 0;
  }
  .textbox ul:last-child,
  .textbox ol:last-child {
    margin-bottom: 0;
  }
  .textbox li {
    position: relative;
    padding-left: 1.5em;
  }
  .textbox ul li::before {
    content: "•";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5em;
    text-align: center;
  }
  .textbox ol li::before {
    content: counter(index) ".";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5em;
    text-align: center;
    counter-increment: index;
  }
  .textbox a {
    text-decoration: underline;
  }
  .section__contrast *::-moz-selection {
    background-color: var(--c0);
    color: var(--c1);
    -webkit-text-fill-color: var(--c1);
  }
  .section__contrast *::selection {
    background-color: var(--c0);
    color: var(--c1);
    -webkit-text-fill-color: var(--c1);
  }
  .hide {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
/* Desktop entrance and scroll reveal animations */
@media screen and (min-width: 1024px) {
  .document.reveal-animations-ready .js-reveal-fade {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 1.6s cubic-bezier(0.37, 0, 0.63, 1) var(--reveal-delay, 0ms);
    transition: opacity 1.6s cubic-bezier(0.37, 0, 0.63, 1) var(--reveal-delay, 0ms);
    will-change: opacity;
  }
  .document.reveal-animations-ready .js-reveal-fade.main-button {
    -webkit-transition: opacity 1.6s cubic-bezier(0.37, 0, 0.63, 1) var(--reveal-delay, 0ms), color 0.42s cubic-bezier(0.65, 0, 0.25, 1), background 0.42s cubic-bezier(0.65, 0, 0.25, 1);
    transition: opacity 1.6s cubic-bezier(0.37, 0, 0.63, 1) var(--reveal-delay, 0ms), color 0.42s cubic-bezier(0.65, 0, 0.25, 1), background 0.42s cubic-bezier(0.65, 0, 0.25, 1);
  }
  .document.reveal-animations-ready .js-reveal-fade.s21-back {
    -webkit-transition: opacity 1.6s cubic-bezier(0.37, 0, 0.63, 1) var(--reveal-delay, 0ms), color 0.25s ease;
    transition: opacity 1.6s cubic-bezier(0.37, 0, 0.63, 1) var(--reveal-delay, 0ms), color 0.25s ease;
  }
  .document.reveal-animations-ready .js-reveal-fade.is-revealed {
    opacity: 1;
    visibility: visible;
  }
  .document.reveal-animations-ready .js-reveal-media {
    clip-path: inset(0 100% 0 0);
    -webkit-transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1) var(--reveal-delay, 0ms);
    transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1) var(--reveal-delay, 0ms);
    will-change: clip-path;
  }
  .document.reveal-animations-ready .js-reveal-media.is-revealed {
    clip-path: inset(0 0 0 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .document.reveal-animations-ready .js-reveal-fade,
  .document.reveal-animations-ready .js-reveal-fade.main-button,
  .document.reveal-animations-ready .js-reveal-fade.s21-back,
  .document.reveal-animations-ready .js-reveal-media {
    opacity: 1;
    visibility: visible;
    clip-path: none;
    -webkit-transition: none;
    transition: none;
  }
}
.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5 {
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  letter-spacing: -0.01em;
  font-family: var(--second-family);
}
@media (max-width: 1024px) {
  .h1 br, h1 br, .h2 br, h2 br, .h3 br, h3 br, .h4 br, h4 br, .h5 br, h5 br {
    display: none;
  }
}

.h1, h1 {
  font-size: var(--f-xxl);
}

.h2, h2 {
  font-size: var(--f-xl);
}

.h3, h3 {
  font-size: var(--f-l);
}

.h4, h4 {
  font-size: var(--f-b);
}

.h5, h5 {
  font-size: var(--f-m);
}

.main-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: var(--gap-2);
}
.main-top p {
  color: var(--white-50);
  margin: 0;
  font-size: var(--f-d);
}

.grid_background, .preloader {
  z-index: 80;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: var(--wr) var(--cols) var(--wr);
}
.grid_background .grid_column, .preloader .grid_column {
  position: relative;
  height: 100%;
  display: block;
  width: 100%;
}
.grid_background .grid_column:before, .preloader .grid_column:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 100%;
  background-color: var(--white-20);
}
.grid_background .grid_column.small:last-of-type:before, .preloader .grid_column.small:last-of-type:before {
  content: none;
}
@media (max-width: 1239px) {
  .grid_background .grid_column:nth-last-child(2), .preloader .grid_column:nth-last-child(2) {
    display: none;
  }
}
@media (max-width: 1024px) {
  .grid_background .grid_column:nth-last-child(3), .preloader .grid_column:nth-last-child(3) {
    display: none;
  }
}
@media (max-width: 767px) {
  .grid_background .grid_column:nth-last-child(4), .preloader .grid_column:nth-last-child(4) {
    display: none;
  }
}
@media (max-width: 576px) {
  .grid_background .grid_column:nth-last-child(5), .preloader .grid_column:nth-last-child(5) {
    display: none;
  }
}

.main-button {
  background: var(--White);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: clamp(240px, 18.75vw, 300rem);
  height: var(--btn);
  padding: 6rem clamp(18px, 1.25vw, 20rem) 6rem 24rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--Black);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-family);
  font-size: clamp(16px, 1.25vw, 20rem);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  -webkit-transition: color 42s cubic-bezier(0.65, 0, 0.25, 1), background 42s cubic-bezier(0.65, 0, 0.25, 1);
  transition: color 42s cubic-bezier(0.65, 0, 0.25, 1), background 42s cubic-bezier(0.65, 0, 0.25, 1);
}
.main-button .sprite {
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 24rem;
  height: 24rem;
  display: block;
  color: inherit;
}
.main-button .sprite svg, .main-button .sprite img {
  width: 100%;
  height: 100%;
}
.main-button .sprite use {
  -webkit-transition: -webkit-transform 0.42s cubic-bezier(0.65, 0, 0.25, 1);
  transition: -webkit-transform 0.42s cubic-bezier(0.65, 0, 0.25, 1);
  transition: transform 0.42s cubic-bezier(0.65, 0, 0.25, 1);
  transition: transform 0.42s cubic-bezier(0.65, 0, 0.25, 1), -webkit-transform 0.42s cubic-bezier(0.65, 0, 0.25, 1);
  -webkit-filter: drop-shadow(-24rem 0 0 currentColor);
  filter: drop-shadow(-24rem 0 0 currentColor);
}
.main-button__mask {
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}
.main-button__text {
  --text-duplicate-distance: 1.5em;
  text-shadow: 0px var(--text-duplicate-distance) currentColor;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.625, 0.05, 0, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.625, 0.05, 0, 1);
  transition: transform 0.45s cubic-bezier(0.625, 0.05, 0, 1);
  transition: transform 0.45s cubic-bezier(0.625, 0.05, 0, 1), -webkit-transform 0.45s cubic-bezier(0.625, 0.05, 0, 1);
}
@media (hover: hover) {
  .main-button:hover {
    color: var(--White);
    background: var(--Blue);
  }
  .main-button:hover .main-button__text {
    -webkit-transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
    -ms-transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
    transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
  }
  .main-button:hover .sprite use {
    -webkit-transform: translateX(24rem);
    -ms-transform: translateX(24rem);
    transform: translateX(24rem);
  }
}
@media (hover: none) {
  .main-button:active {
    color: var(--White);
    background: var(--Blue);
  }
  .main-button:active .main-button__text {
    -webkit-transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
    -ms-transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
    transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
  }
  .main-button:active .sprite use {
    -webkit-transform: translateX(24rem);
    -ms-transform: translateX(24rem);
    transform: translateX(24rem);
  }
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  position: relative;
  background-clip: padding-box;
}

.button:not(.fill) {
  overflow: hidden;
  position: relative;
}

.button-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.button-icon {
  background-size: cover;
}

.button__default {
  height: var(--btn);
  padding: 5rem;
  border-radius: 999rem;
  background-color: var(--c2);
  background-image: url(../img/button-gradient.svg);
  color: var(--c0);
  background-size: cover;
}

.button__default .button-icon {
  background-color: var(--c1);
  color: var(--c0);
}

.button__secondary {
  height: var(--btn);
  padding: 4rem;
  border-radius: 999rem;
  border: var(--sl) solid var(--c4);
}

.button__secondary .button-icon {
  background-color: var(--c1);
  color: var(--c0);
}

.button__default .button-icon,
.button__secondary .button-icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12rem;
}

.button__default .button-text,
.button__secondary .button-text {
  padding: 0 25rem;
  font-size: var(--f-s);
}

.button__default .button-text:first-child,
.button__secondary .button-text:first-child {
  padding-left: 30rem;
}

.button__default .button-text:last-child,
.button__secondary .button-text:last-child {
  padding-right: 30rem;
}

.button__wide {
  width: 100%;
}

/* cards */
@media screen {
  .card {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(24px, 1.625vw, 26rem);
  }
  .card-media {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    position: relative;
  }
  .card-media-bg {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    inset: 0;
  }
  .card-media-bg:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 12rem;
    background-color: var(--Blue);
    -webkit-transition: all 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
  }
  .card-media:before {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0;
    padding-top: 103%;
  }
}
@media screen and (max-width: 415px) {
  .card-media:before {
    padding-top: 110%;
  }
}
@media screen {
  .card-media img, .card-media picture {
    will-change: transform;
    -webkit-transition: -webkit-transform 0.25s;
    transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    transition: transform 0.25s, -webkit-transform 0.25s;
  }
}
@media screen and (hover: hover) {
  .card:hover .card-media-bg:after {
    width: 100%;
  }
}
@media screen and (hover: none) {
  .card:active .card-media-bg:after {
    width: 100%;
  }
}
@media screen {
  .card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(4px, 0.5vw, 8rem);
  }
  .card-inner span {
    color: var(--white-60);
    font-size: clamp(16px, 1.125vw, 18rem);
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
  }
  .card--mode .card-media:after {
    content: "";
    z-index: 2;
    inset: 0;
    pointer-events: none;
    position: absolute;
    background: var(--black-20);
  }
}
@media screen and (min-width: 415px) {
  .card--mode .card-media:before {
    padding-top: 101%;
  }
}
@media screen {
  .card--mode p {
    margin: 0;
    color: var(--white-60);
    max-width: 400rem;
  }
  .card--mode .main-button {
    margin-top: auto;
    min-width: 234rem;
  }
}
@media screen and (min-width: 768px) {
  .card--mode .main-button {
    height: 52rem;
  }
}
@media screen {
  .card-1 {
    padding: 10rem;
    border-radius: var(--br1);
    background-color: var(--c3);
  }
  .card-1:hover .card-header img, .card-1:hover .card-header picture {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .card-1 .card-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25rem;
    border-radius: var(--br1);
    overflow: hidden;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow: hidden;
  }
  .card-1 .card-header img, .card-1 .card-header picture {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: transform;
  }
  .card-1 .card-header::before {
    content: "";
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0;
    padding-top: 45%;
  }
  .card-1 .card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .card-1 .card-tag {
    position: relative;
    z-index: 1;
    border-radius: 999rem;
    padding: 10rem 25rem;
    text-transform: uppercase;
    font-size: var(--f-xs);
    letter-spacing: 0.0625em;
    overflow: hidden;
    background-color: var(--c0);
    color: var(--c1);
  }
  .card-1 .card-inner {
    padding: 35rem 25rem 25rem;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 520rem;
  }
  .card-1 .card-content {
    margin-bottom: auto;
  }
  .card-1 .card-subtitle {
    margin-top: 25rem;
  }
  .card-1 .card-footer {
    margin-top: 35rem;
  }
}
.info-card {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 4px;
  background: var(--Light-Grey);
  color: var(--c1);
  gap: 12rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  -webkit-transition: color 0.18s ease;
  transition: color 0.18s ease;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(125% 95% at 0% 0%, #ee480b 0%, #fc5800 45%, transparent 46%), linear-gradient(135deg, #ee480b 0%, #fc5800 52%, #ffcc65 100%);
  opacity: 1;
  -webkit-transition: opacity 0.18s ease;
  transition: opacity 0.18s ease;
  will-change: opacity;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .info-card::before {
    opacity: 0;
  }
}
.info-card__bg {
  display: none;
}
@media (hover: none), (pointer: coarse) {
  .info-card {
    color: var(--c0);
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .info-card:hover {
    color: var(--c0);
  }
  .info-card:hover::before {
    opacity: 1;
  }
}
.info-card .card-tag {
  z-index: 3;
  border-radius: 999rem;
  padding: 10rem 25rem;
  overflow: hidden;
  background-color: var(--c0);
  color: var(--c1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.info-card .card-tag:before {
  content: counter(li, decimal-leading-zero);
  counter-increment: li;
  display: block;
  color: var(--c1);
  text-transform: uppercase;
  font-size: var(--f-xs);
  font-weight: 600;
  letter-spacing: 0.0625em;
}
@media (min-width: 1024px) {
  .info-card .card-tag {
    position: absolute;
    top: 8rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.info-card__box {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(80px, 8.75vw, 140rem) 24rem 8rem 24rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .info-card__box * {
    text-align: center;
  }
}
.info-card__box .card-title {
  color: inherit;
  -webkit-transition: none;
  transition: none;
}
.info-card__box .card-title * {
  -webkit-transition: none;
  transition: none;
}
.info-card__box p {
  margin: 0;
  color: inherit;
  font-size: var(--f-xs);
  -webkit-transition: none;
  transition: none;
}
@media (max-width: 1024px) {
  .info-card__box {
    gap: 12rem;
    padding: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .info-card {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: clamp(320px, 22.1875vw, 355rem);
  }
}
@media (max-width: 1024px) {
  .info-card {
    padding: 32rem;
    color: var(--c0);
  }
}

.wpcf7 {
  width: 100%;
  -ms-flex-item-align: center;
  align-self: center;
}

.main-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.main-form .wpcf7-response-output {
  display: none;
}
.main-form .main-button {
  grid-column: span 1;
  margin-top: 24rem;
}
.main-form > label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-column: span 2;
  padding: 24rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9rem;
  border-right: var(--sl) solid var(--white-20);
  border-bottom: var(--sl) solid var(--white-20);
  background: var(--Black);
  height: clamp(56px, 4.75vw, 76rem);
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
.main-form > label:before {
  content: "";
  inset: -1rem;
  z-index: 2;
  opacity: 0;
  border: solid 1rem var(--white-20);
  position: absolute;
  z-index: 3;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 576px) {
  .main-form > label:nth-of-type(-n + 2) {
    border-top: var(--sl) solid var(--white-20);
  }
}
.main-form > label:nth-of-type(odd), .main-form > label.full-row {
  border-left: var(--sl) solid var(--white-20);
}
.main-form > label span {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.main-form > label:has(.wpcf7-not-valid):before {
  opacity: 1;
  border-color: var(--error-dark-bg);
}
.main-form > label:has(.wpcf7-not-valid) .wpcf7-not-valid-tip {
  display: block !important;
}
.main-form > label:has(input:focus, textarea:focus):before {
  opacity: 1;
}
.main-form > label:has(textarea) {
  min-height: clamp(126px, 9.25vw, 148rem);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.main-form > label textarea,
.main-form > label input {
  width: 100%;
  border: none;
  background: transparent;
  opacity: 1 !important;
  color: var(--White);
  font-family: var(--font-family);
  font-size: clamp(16px, 1.25vw, 20rem);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.main-form > label textarea::-webkit-input-placeholder, .main-form > label input::-webkit-input-placeholder {
  color: var(--white-60);
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.main-form > label textarea::-moz-placeholder, .main-form > label input::-moz-placeholder {
  color: var(--white-60);
  -moz-transition: color 0.4s;
  transition: color 0.4s;
}
.main-form > label textarea:-ms-input-placeholder, .main-form > label input:-ms-input-placeholder {
  color: var(--white-60);
  -ms-transition: color 0.4s;
  transition: color 0.4s;
}
.main-form > label textarea::-ms-input-placeholder, .main-form > label input::-ms-input-placeholder {
  color: var(--white-60);
  -ms-transition: color 0.4s;
  transition: color 0.4s;
}
.main-form > label textarea::placeholder,
.main-form > label input::placeholder {
  color: var(--white-60);
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.main-form > label textarea:focus,
.main-form > label input:focus {
  outline: none;
}
.main-form > label textarea:focus::-webkit-input-placeholder, .main-form > label input:focus::-webkit-input-placeholder {
  color: transparent;
}
.main-form > label textarea:focus::-moz-placeholder, .main-form > label input:focus::-moz-placeholder {
  color: transparent;
}
.main-form > label textarea:focus:-ms-input-placeholder, .main-form > label input:focus:-ms-input-placeholder {
  color: transparent;
}
.main-form > label textarea:focus::-ms-input-placeholder, .main-form > label input:focus::-ms-input-placeholder {
  color: transparent;
}
.main-form > label textarea:focus::placeholder,
.main-form > label input:focus::placeholder {
  color: transparent;
}
.main-form > label textarea {
  height: 100%;
  resize: none;
}
@media (max-width: 576px) {
  .main-form > label {
    border-right: none !important;
    border-left: none !important;
  }
}
.main-form .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.main-form .wpcf7-not-valid-tip {
  width: 100%;
  position: absolute !important;
  top: calc(100% + clamp(1px, 0.375vw, 6rem));
  left: 0;
  z-index: 2;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12px, 0.875vw, 14rem);
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--error-dark-bg);
}
.main-form .full-row {
  grid-column: 1/-1;
}
.main-form .wpcf7-list-item-label {
  grid-column: 1/-1;
  margin: 24rem 0 0 !important;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  color: var(--white-60);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.125vw, 18rem);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.main-form .wpcf7-list-item-label a {
  color: var(--White);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (hover: hover) {
  .main-form .wpcf7-list-item-label a:hover {
    color: var(--Blue);
  }
}
@media (hover: none) {
  .main-form .wpcf7-list-item-label a:active {
    color: var(--Blue);
  }
}
.main-form .wpcf7-list-item {
  margin: 0;
}
@media (min-width: 1024px) {
  .main-form {
    margin-left: -1rem;
  }
}
@media (max-width: 576px) {
  .main-form {
    grid-template-columns: 1fr;
    margin-right: 1rem;
  }
  .main-form > label,
  .main-form .full-row,
  .main-form .main-button {
    grid-column: 1;
  }
  .main-form > label {
    border-top: 0;
    border-left: var(--sl) solid var(--white-20);
  }
  .main-form > label:first-of-type {
    border-top: var(--sl) solid var(--white-20);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 92;
  padding-top: 36rem;
  margin-bottom: 50rem;
  padding-bottom: 20rem;
  pointer-events: none;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
  background: var(--Beige);
  opacity: 0;
}
.header a {
  pointer-events: all;
}
.header button,
.header .topbar {
  pointer-events: all;
}
@media (max-width: 1024px) {
  .header {
    padding-top: 16rem;
  }
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: var(--gap);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.topbar-logo {
  max-width: 145rem;
  max-height: 61rem;
  color: var(--White);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.topbar-logo a {
  max-width: 145rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 61rem;
}
@media (max-width: 1024px) {
  .topbar-logo a {
    max-width: 88rem;
    max-height: 37rem;
  }
}
@media (max-width: 1024px) {
  .topbar-logo {
    max-width: 88rem;
    max-height: 37rem;
  }
}

@media (min-width: 1024px) {
  .popup-active .topbar-logo {
    opacity: 0.6;
  }
}

.topbar-menu {
  position: absolute;
  right: var(--awr);
  top: -36rem;
  z-index: 3;
  width: 53rem;
  height: 53rem;
  background: var(--Blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  padding: 13rem;
  -webkit-transition: color 0.5s, background-color 0.5s;
  transition: color 0.5s, background-color 0.5s;
  pointer-events: all;
}
.topbar-menu span {
  display: block;
  width: 27rem;
  height: 1rem;
  background-color: var(--White);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
  transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
}
.topbar-menu span:first-child {
  -webkit-transform: translateX(-50%) translateY(-6px) translateZ(0) rotate(0) scale(1, 1);
  transform: translateX(-50%) translateY(-6px) translateZ(0) rotate(0) scale(1, 1);
}
.topbar-menu span:nth-child(2) {
  width: 19rem;
  -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
  transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
  margin-left: 4rem;
}
.topbar-menu span:nth-child(3) {
  -webkit-transform: translateX(-50%) translateY(5px) translateZ(0) rotate(0) scale(1, 1);
  transform: translateX(-50%) translateY(5px) translateZ(0) rotate(0) scale(1, 1);
}
.topbar-menu:hover span:nth-child(2) {
  margin-left: 0;
  width: 27rem;
}
.topbar-menu.active span:first-child {
  -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(45deg) scale(1, 1);
  transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(45deg) scale(1, 1);
}
.topbar-menu.active span:nth-child(2) {
  -webkit-transform: translateX(-30px) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
  transform: translateX(-30px) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
  opacity: 0;
}
.topbar-menu.active span:nth-child(3) {
  -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(-45deg) scale(1, 1);
  transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(-45deg) scale(1, 1);
}
@media (max-width: 1024px) {
  .topbar-menu {
    top: -16rem;
  }
}

.popup {
  z-index: 91;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc((100% + var(--wr)) * 2 / 6);
  -webkit-transform: translateX(100%) translateY(0) translateZ(0) rotate(0) scale(1, 1);
  transform: translateX(100%) translateY(0) translateZ(0) rotate(0) scale(1, 1);
  -webkit-transition: all 0.6s 0s ease;
  transition: all 0.6s 0s ease;
}
@media (max-width: 1024px) {
  .popup {
    width: 100%;
  }
}
.popup__inner {
  height: 100%;
  padding: 24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .popup__inner {
    margin: 0 auto;
    max-width: var(--mw);
  }
}
.popup .main-nav {
  position: absolute;
  top: 50%;
  left: 24rem;
  width: 100%;
  -webkit-transform: translateX(0) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
  transform: translateX(0) translateY(-50%) translateZ(0) rotate(0) scale(1, 1);
}
.popup .main-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: calc(100% - var(--wr));
  gap: 64rem 16rem;
}
.popup .main-nav ul a, .popup .main-nav ul button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
  font-size: var(--f-link);
  letter-spacing: -0.01em;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  opacity: 0;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
  font-weight: 700;
  font-family: var(--second-family);
}
.popup .main-nav ul a svg, .popup .main-nav ul button svg {
  width: 108rem;
  height: 16rem;
  color: var(--Blue);
}
@media (max-width: 1024px) {
  .popup .main-nav ul a svg, .popup .main-nav ul button svg {
    width: 78rem;
    height: 24rem;
  }
}
@media (max-width: 1024px) {
  .popup .main-nav ul {
    max-width: var(--mw);
  }
}
@media (max-width: 1024px) and (min-width: 576px) {
  .popup .main-nav ul {
    margin: 0 auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .popup .main-nav ul:hover a {
    opacity: 0.5;
  }
  .popup .main-nav ul a:hover {
    opacity: 1;
  }
}
.popup__footer {
  margin-top: auto;
}
.popup__footer p {
  max-width: 217rem;
  font-style: normal;
  font-weight: 500;
  font-size: 18rem;
}
.popup .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  z-index: -1;
}
.popup .overlay div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.popup .overlay div:after {
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--Black);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.6s 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.6s 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.popup.active {
  -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0) scale(1, 1);
  transform: translateX(0) translateY(0) translateZ(0) rotate(0) scale(1, 1);
}
.popup.active.active .overlay div:after {
  width: 100%;
}
.popup.active .main-nav a {
  opacity: 1;
}
.popup-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  padding: 15rem var(--wr);
  -webkit-transition: opacity 0.25s 0.25s;
  transition: opacity 0.25s 0.25s;
}
.popup-content {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.popup-footer {
  margin-top: 50rem;
  display: grid;
  grid-template-columns: auto;
  grid-gap: 25rem;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--black-40);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-active .popup-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .topbar-nav {
    height: 100%;
  }
}

.topbar-nav > ul {
  display: grid;
  grid-auto-flow: column;
  grid-gap: clamp(10px, 1.5625vw, 25rem);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--f-s);
}
@media (min-width: 1024px) {
  .topbar-nav > ul {
    height: 100%;
  }
  .topbar-nav > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.topbar-nav li {
  position: relative;
}

.has-submenu {
  position: relative;
}

.has-submenu > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.submenu-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 18rem;
  height: 18rem;
  margin-left: 4rem;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.submenu {
  display: grid;
  gap: 22rem;
  min-width: 235rem;
  max-height: min(60vh, 520rem);
  overflow: auto;
  padding: 24rem;
  background: var(--c0);
  color: var(--c1);
  border-top: 0.1rem solid #000;
  -webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
  font-size: var(--f-s);
}
@media (min-width: 1024px) {
  .submenu {
    position: absolute;
    left: 50%;
    top: calc(100% + 24.5rem);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translate(-50%, -8rem);
    -ms-transform: translate(-50%, -8rem);
    transform: translate(-50%, -8rem);
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  }
}
@media (max-width: 1024px) {
  .submenu > li:first-of-type {
    margin-top: 0.5em;
  }
}

.topbar-nav .has-submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .topbar-nav .has-submenu::after {
    content: "";
    position: absolute;
    left: -16rem;
    right: -16rem;
    top: 100%;
    height: 42rem;
  }
  .topbar-nav .has-submenu:hover > .submenu,
  .topbar-nav .has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .topbar-nav .has-submenu:hover > .submenu-toggle,
  .topbar-nav .has-submenu:focus-within > .submenu-toggle {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}
.topbar-action {
  margin-left: auto;
}

.topbar-action .button__secondary {
  background-color: var(--c0);
  color: var(--c1);
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
  background-color: var(--c1);
  color: var(--white-60);
}
.footer .wrapper {
  min-height: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: var(--cols);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  min-height: inherit;
  padding-bottom: 24rem;
  font-size: var(--f-xs);
  line-height: 1.1;
}

.footer .footer-copyright,
.footer .footer-services,
.footer .footer-market {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.footer-copyright {
  grid-column: 1;
}

.footer-services {
  grid-column: 2;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-services {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}

.footer-market {
  grid-column: 3/span 2;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-market {
    text-align: right;
  }
}

.footer-author {
  grid-column: -2/-1;
  justify-self: end;
}

.bottombar-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  color: inherit;
  white-space: nowrap;
}

.dd-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1em;
  height: 1.2em;
  margin: 0 0.3em;
  color: var(--White);
  opacity: 1;
}
.dd-icon .icon {
  position: relative;
  bottom: -3rem;
  width: 100%;
}

@media (max-width: 767px) {
  .footer-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12rem;
  }
  .footer-author {
    justify-self: auto;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .bottombar-author a {
    display: inline;
    padding-bottom: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 0 var(--sl);
    -webkit-transition: background-size 0.25s, color 0.25s;
    transition: background-size 0.25s, color 0.25s;
  }
  .bottombar-author a:hover {
    background-position: left bottom;
    background-size: 100% var(--sl);
  }
}
/* section s1 */
@media screen {
  .home .s1 {
    margin-bottom: 0 !important;
  }
  .home .s1-2 {
    position: absolute;
  }
  .s1 {
    margin-top: calc((var(--headroom-height) + 50rem) * -1);
    height: 100dvh;
    position: relative;
    z-index: 1;
  }
  .s1 .wrapper {
    height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .s1-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: var(--gap);
  }
}
@media screen and (max-width: 1024px) {
  .s1-1 {
    padding-bottom: 40rem;
  }
  .s1-1 h1 {
    max-width: 410rem;
  }
}
@media screen {
  .s1-2 {
    position: fixed;
    bottom: 0;
    right: 0;
    background: var(--Black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 552rem;
    padding: 36rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24rem;
  }
  .s1-2 p {
    max-width: 380rem;
  }
}
@media screen and (max-width: 576px) {
  .s1-2 p {
    max-width: 240rem;
  }
}
@media screen and (max-width: 1239px) {
  .s1-2 {
    width: 650rem;
  }
}
@media screen and (max-width: 1024px) {
  .s1-2 {
    width: 100%;
    padding: 24rem;
  }
}
@media screen {
  .s1-bg {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    inset: 0;
  }
  .s1--about {
    z-index: 81;
    height: auto;
    overflow: hidden;
    margin-bottom: clamp(72rem, 12.5vw, 200rem) !important;
  }
}
@media screen and (min-width: 1024px) {
  .s1--about {
    min-height: 100dvh;
  }
}
@media screen {
  .s1--about .wrapper {
    display: block;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .s1--about .wrapper {
    min-height: 100dvh;
  }
}
@media screen {
  .s1--about .s1-1-3 {
    display: grid;
    grid-template-columns: var(--cols);
  }
}
@media screen and (min-width: 1024px) {
  .s1--about .s1-1-3 {
    min-height: 100dvh;
  }
}
@media screen {
  .s1--about .s1-1-4 {
    position: relative;
    grid-column: 1/5;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    width: calc(100% + var(--wr));
    margin-left: var(--awr);
  }
  .s1--about .s1-1-4:before {
    content: "";
    z-index: 2;
    inset: 0;
    pointer-events: none;
    position: absolute;
    background: var(--black-20);
  }
}
@media screen and (max-width: 1024px) {
  .s1--about .s1-1-4 {
    width: calc(100% + var(--wr) * 2);
    aspect-ratio: 375/491;
    max-height: 600rem;
  }
}
@media screen {
  .s1--about .s1-3 {
    grid-column: 5/-1;
    min-width: 0;
  }
}
@media screen and (min-width: 1024px) {
  .s1--about .s1-3 {
    min-height: 100dvh;
  }
}
@media screen {
  .s1--about .s1-3-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: clamp(32rem, 10.625vw, 170rem) 0 24rem 16rem;
  }
}
@media screen and (min-width: 1024px) {
  .s1--about .s1-3-1 {
    min-height: 100dvh;
  }
}
@media screen {
  .s1--about .s1-3-2 {
    width: 100%;
    max-width: 410rem;
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24rem;
  }
  .s1--about .s1-3-2 p {
    margin: 0;
  }
}
@media screen and (max-width: 1239px) {
  .s1--about .s1-1-4 {
    grid-column: 1/4;
  }
  .s1--about .s1-3 {
    grid-column: 4/-1;
  }
}
@media screen and (max-width: 1024px) {
  .s1--about {
    overflow: visible;
  }
  .s1--about .wrapper,
  .s1--about .s1-1-3,
  .s1--about .s1-3,
  .s1--about .s1-3-1 {
    min-height: 0;
  }
  .s1--about .s1-1-3 {
    grid-template-columns: var(--cols);
    gap: var(--gap-3);
  }
  .s1--about .s1-1-4 {
    grid-column: 1/-1;
    grid-row: 1;
    height: auto;
  }
  .s1--about .s1-3 {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .s1--about .s1-3-1 {
    padding: 0;
  }
  .s1--about .s1-3-2 {
    max-width: 600rem;
    padding-top: 24rem;
  }
}
@media screen {
  .s1--service {
    overflow: hidden;
  }
  .s1--service .wrapper {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .s1--service .s1-1-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
  .s1--service .s1-1-4 {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(66.6666666667% + var(--wr));
    flex: 0 0 calc(66.6666666667% + var(--wr));
    height: 100%;
    min-height: 0;
    margin-left: var(--awr);
    overflow: hidden;
  }
  .s1--service .s1-1-4 img {
    opacity: 0;
    -webkit-transform: scale(1.015);
    -ms-transform: scale(1.015);
    transform: scale(1.015);
    -webkit-transition: opacity 0.7s ease, -webkit-transform 1.1s ease;
    transition: opacity 0.7s ease, -webkit-transform 1.1s ease;
    transition: opacity 0.7s ease, transform 1.1s ease;
    transition: opacity 0.7s ease, transform 1.1s ease, -webkit-transform 1.1s ease;
    will-change: opacity, transform;
  }
  .s1--service .s1-1-4 img.is-active {
    z-index: 1;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .s1--service .s1-3 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    overflow: hidden;
  }
  .s1--service .s1-3-1,
  .s1--service .s1-3-2 {
    height: 100%;
    min-height: 0;
  }
  .s1--service .s1-3-1 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: clamp(140rem, 10vw, 160rem) 0 0 16rem;
  }
  .s1--service .s1-3-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .s1--service .s1-3-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
  }
  .s1--service .s1-service-slides,
  .s1--service .s1-service-slide {
    height: 100%;
    min-height: 0;
  }
  .s1--service .s1-service-slides {
    position: relative;
  }
  .s1--service .s1-service-slide {
    position: absolute;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 clamp(20rem, 2.25vw, 36rem) 24rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.65s ease, visibility 0s 0.65s;
    transition: opacity 0.65s ease, visibility 0s 0.65s;
  }
  .s1--service .s1-service-slide:before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    content: "";
    width: 100%;
    z-index: 2;
    position: absolute;
    left: 0;
    bottom: 23rem;
    height: 107rem;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
  }
}
@media screen and (max-width: 1024px) {
  .s1--service .s1-service-slide:before {
    width: calc(100% - 1rem);
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, #000));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 70%);
  }
}
@media screen {
  .s1--service .s1-service-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}
@media screen and (max-width: 576px) {
  .s1--service .s1-service-slide:before {
    opacity: 1 !important;
  }
}
@media screen {
  .s1--service .s1-service-slide.has-scrollable-text:before {
    opacity: 1;
  }
  .s1--service .s1-service-slide > .h1 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-bottom: 20rem;
  }
  .s1--service .s1-service-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    overscroll-behavior-y: auto;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    scrollbar-color: var(--white-50) transparent;
    scrollbar-width: thin;
  }
  .s1--service .s1-service-text::-webkit-scrollbar {
    width: 3rem;
  }
  .s1--service .s1-service-text::-webkit-scrollbar-track {
    background: transparent;
  }
  .s1--service .s1-service-text::-webkit-scrollbar-thumb {
    background: var(--white-50);
  }
  .s1--service .s1-service-text:focus-visible {
    outline: 1rem solid var(--white-50);
    outline-offset: 4rem;
  }
  .s1--service .s1-service-text p {
    margin: 0;
    padding-right: 10rem;
  }
  .s1--service .s1-service-text.is-scrollable {
    overflow-y: auto;
  }
}
@media screen and (max-width: 576px) {
  .s1--service .s1-service-text {
    padding-bottom: 28rem;
  }
}
@media screen {
  .s1--service .slider-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: clamp(56px, 3.75vw, 60rem);
    margin-left: -16rem;
    border-top: var(--sl) solid var(--Gray);
    border-bottom: var(--sl) solid var(--Gray);
  }
}
@media screen and (max-width: 1024px) {
  .s1--service .slider-nav {
    width: calc(100% - 1rem);
  }
}
@media screen {
  .s1--service .slider-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background: var(--Black);
    color: var(--White);
    -webkit-transition: color 0.25s ease, background-color 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease;
  }
  .s1--service .slider-btn .icon {
    width: 24rem;
    height: 24rem;
  }
}
@media screen and (max-width: 1024px) {
  .s1--service .slider-btn:first-of-type {
    border-right: var(--sl) solid var(--Gray);
  }
}
@media screen {
  .s1--service .slider-btn.prev .icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 1239px) {
  .s1--service .s1-1-4 {
    -ms-flex-preferred-size: calc(60% + var(--wr));
    flex-basis: calc(60% + var(--wr));
  }
}
@media screen and (max-width: 1024px) {
  .s1--service {
    height: auto;
    z-index: 81;
  }
  .s1--service .wrapper {
    height: auto;
  }
  .s1--service .s1-1-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
  .s1--service .s1-1-4 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: auto;
    width: calc(100% + var(--wr) * 2);
    margin-left: var(--awr);
    aspect-ratio: 375/491;
    max-height: 600rem;
  }
  .s1--service .s1-3 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    height: auto;
  }
  .s1--service .s1-3-1,
  .s1--service .s1-3-2 {
    height: auto;
  }
  .s1--service .s1-3-1 {
    padding: 32rem 0 0;
  }
  .s1--service .s1-3-4 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .s1--service .s1-service-slides {
    height: auto;
  }
  .s1--service .s1-service-slides.is-height-animating {
    overflow: hidden;
    will-change: height;
    -webkit-transition: height 0.55s cubic-bezier(0.65, 0, 0.35, 1);
    transition: height 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .s1--service .s1-service-slide {
    height: auto;
    padding: 0 0 24rem;
  }
  .s1--service .s1-service-slide.is-active {
    position: relative;
    inset: auto;
  }
  .s1--service .s1-service-slide > .h1 {
    margin-bottom: 24rem;
  }
  .s1--service .s1-service-text {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-height: 360rem;
  }
  .s1--service .slider-nav {
    -ms-flex-preferred-size: 64rem;
    flex-basis: 64rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .s1--service .s1-service-text {
    padding-right: 30rem;
    max-height: 258rem;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  .s1--service .s1-1-4 img,
  .s1--service .s1-service-slide {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}
/* 404 page */
/* stylelint-disable */
@media screen and (min-width: 576px) {
  .error-page .container {
    min-height: var(--app-height);
  }
}
@media screen {
  .error-page .main {
    min-height: 0;
  }
  .s404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: calc((var(--headroom-height) + 50rem) * -1) 0 clamp(72px, 6.125vw, 98rem) !important;
    overflow: hidden;
    padding-top: 145rem;
  }
  .s404 .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .s404 h3 {
    margin-bottom: 32rem;
  }
}
@media screen and (min-width: 576px) {
  .s404 h3 br {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .s404 {
    padding-top: 198rem;
  }
}
@media screen {
  .s404-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .s404-2 {
    margin: 0;
    font-size: 230rem;
    line-height: 0.9;
    margin-bottom: 9rem;
  }
}
@media screen and (min-width: 576px) {
  .s404-2 {
    margin-top: 12dvh;
  }
}
@media screen {
  .s404-4 {
    margin-top: auto;
  }
}
@media screen and (max-width: 1024px) {
  .s404-2 {
    font-size: 160rem;
  }
}
@media screen and (max-width: 1023.98px) {
  :root {
    --wr: 24rem;
    --main-cols: minmax(0, 1fr);
    --btn: 56rem;
    --f-link: 48rem;
    --f-number: 64rem;
    --f-xs: 14rem;
    --f-s: 16rem;
    --f-d: 18rem;
    --f-m: 24rem;
    --f-b: 28rem;
    --f-l: 32rem;
    --f-xl: 36rem;
    --f-xxl: 48rem;
  }
  html {
    font-size: 1px;
  }
  .desktop {
    display: none !important;
  }
  .tabs ul {
    margin: -2rem;
  }
  .tabs li {
    margin: 2rem;
    padding: 10rem 15rem;
    line-height: 1;
  }
  .card-1 .card-header {
    padding: 15rem;
  }
  .card-1 .card-header::before {
    padding-top: 65%;
  }
  .card-1 .card-inner {
    padding: 25rem 10rem 10rem;
  }
  .card-1 .card-subtitle {
    margin-top: 10rem;
  }
  .s1-5 {
    padding: 0;
    grid-column: auto;
  }
  .s1-4 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }
  .s1-4-1 {
    width: 100%;
  }
  .s1-4 .carousel-pagination {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-left: none;
    border-bottom: 2rem solid var(--c4);
  }
  .s1-4 .carousel-pagination-bullet {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
  .s1-4 .carousel-pagination-runner {
    height: 2rem !important;
    top: auto !important;
    bottom: 0;
  }
  .s1-6 {
    margin-bottom: 25rem;
  }
  .s1-6-1 {
    margin: 0;
  }
  .s1-6-2 {
    margin-top: 25rem;
    max-width: 280rem;
  }
  .s1-7 {
    margin: -5rem;
  }
  .s1-7-1 {
    margin: 5rem;
  }
  .s1-8 {
    grid-column: auto;
    margin-top: auto;
    margin-bottom: 0;
  }
  .s3-1 {
    grid-gap: 25rem;
  }
  .s3-2 {
    padding-top: 25rem;
    grid-gap: 0;
  }
  .s3-2::before {
    margin-bottom: 30rem;
  }
  .s3-3 {
    grid-column: auto;
  }
  .s3-3-2 {
    margin-top: 15rem;
  }
  .s3-3-3 {
    margin-top: 25rem;
  }
  .menu > ul {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 0.5em;
    font-size: var(--f-l);
  }
  .menu li {
    min-width: 0;
  }
  .menu .has-submenu {
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 8rem;
    -moz-column-gap: 8rem;
    column-gap: 8rem;
  }
  .has-submenu.js-menu-submenu.is-open .submenu-toggle.js-submenu-toggle {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
  .menu .submenu-toggle {
    width: 24rem;
    height: 24rem;
    margin-left: 0;
    margin-bottom: -3rem;
  }
  .menu .submenu-toggle::before {
    width: 7rem;
    height: 7rem;
    border-width: max(1px, 1.5rem);
    -webkit-transform: rotate(45deg) translate(-1rem, -1rem);
    -ms-transform: rotate(45deg) translate(-1rem, -1rem);
    transform: rotate(45deg) translate(-1rem, -1rem);
  }
  .menu .has-submenu.is-open > .submenu-toggle::before {
    -webkit-transform: rotate(225deg) translate(-1rem, -1rem);
    -ms-transform: rotate(225deg) translate(-1rem, -1rem);
    transform: rotate(225deg) translate(-1rem, -1rem);
  }
  .popup-content .menu {
    color: var(--c0);
  }
  .popup-content .menu:has(.has-submenu.is-open) {
    color: rgba(255, 255, 255, 0.5);
  }
  .popup-content .menu:has(.has-submenu.is-open) .has-submenu.is-open {
    color: var(--c0);
  }
  .topbar-logo {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header:has(.topbar-menu.mobile.active) .topbar-logo {
    -webkit-filter: invert(1);
    filter: invert(1);
  }
  .menu .submenu {
    grid-column: 1/-1;
    display: grid;
    gap: 0.35em;
    min-width: 0;
    max-height: none;
    height: 0;
    overflow: hidden;
    padding: 0 0 0 24rem;
    border: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
    font-size: inherit;
    opacity: 0;
    -webkit-transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  }
  .menu .has-submenu.is-open > .submenu {
    opacity: 1;
  }
  .popup:not(.active) {
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
  }
  .popup:not(.active) .popup-inner {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}
@media screen and (min-width: 1024px) {
  .mobile {
    display: none !important;
  }
  .s1-4 .carousel-pagination-runner {
    left: 0 !important;
    width: max(1px, 2rem) !important;
  }
}
@media screen and (min-width: 192000px) {
  html {
    font-size: 1px;
  }
}
/* hover animations */
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .button__default .button-text,
  .button__secondary .button-text,
  .s16-tab .button-text {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .button__default .button-icon,
  .button__secondary .button-icon {
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
  }
  .button__default:hover .button-icon {
    background-color: var(--c0);
    color: var(--c1);
  }
  .button__secondary:hover .button-icon {
    background-image: var(--g1);
  }
  .split-letter {
    position: relative;
    -webkit-transition: -webkit-transform 0.15s;
    transition: -webkit-transform 0.15s;
    transition: transform 0.15s;
    transition: transform 0.15s, -webkit-transform 0.15s;
    will-change: transform;
    -webkit-transition-delay: calc(0.015s * var(--i));
    transition-delay: calc(0.015s * var(--i));
    white-space: pre;
  }
  .split-letter::after {
    content: attr(data-title);
    position: absolute;
    top: 100%;
    left: 0;
  }
  .button:hover .split-letter,
  .s16-tab:hover .split-letter {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .tabs li {
    -webkit-transition: border-color 0.25s;
    transition: border-color 0.25s;
  }
  .tabs li:hover {
    border-color: var(--c6);
  }
  .breadcrumbs a,
  .topbar-nav a {
    -webkit-transition: background-size 0.25s, color 0.25s;
    transition: background-size 0.25s, color 0.25s;
    background-size: 0 var(--sl);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
    background-image: linear-gradient(currentColor, currentColor);
    display: inline;
    padding-bottom: 0;
  }
  .breadcrumbs a:hover,
  .topbar-nav a:hover {
    background-size: 100% var(--sl);
    background-position: left bottom;
  }
  .textbox a {
    -webkit-transition: opacity 0.15s;
    transition: opacity 0.15s;
  }
  .textbox a:hover {
    opacity: 0.5;
  }
}
/*# sourceMappingURL=main.css.map */