@charset "UTF-8";
/* Стили для затемнения фона */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

/* Стили для popup-контейнера */
.thank-you-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    max-width: 90%;
    width: 900px;
    height: 500px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.thank-popup-content {
    display: block;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 2;
}

.thank-popup-content h3 {
display: block;
position: static;
float: none;
clear: both;
width: 100%;
font-family: "Suisse Int'l", sans-serif;
color: #fff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
font-weight: 400;
font-style: Regular;
font-size: 50px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-transform: uppercase;
text-align: center;
margin: 0 0 16px;
}

.thank-popup-content p {
display: block;
position: static;
float: none;
clear: both;
width: 100%;
font-family: Montserrat;
color: #fff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
font-weight: 400;
font-style: Regular;
font-size: 22px;
leading-trim: NONE;
line-height: 32px;
letter-spacing: 0%;
text-align: center;
margin: 0;
}

/* smallcube.png - справа сверху внутри контейнера */
.thank-you-decor-top {
    position: absolute;
    width: 255px;
    height: 216px;
    top: -100px;
    right: -120px;
    opacity: 1;
    z-index: 10000;
    pointer-events: none;
}

.thank-you-decor-bottom {
  display: none;
  position: fixed;
  width: 523px;
  height: 443px;
  bottom: 150px;
  left: calc(50% - 450px - 150px);
  opacity: 1;
  z-index: 9999;
  pointer-events: none;
}

/* Кнопка закрытия */
.close-popup {
  position: fixed;
  top: 150px;
  background: none;
  border: none;
  font-size: 100px;
  cursor: pointer;
  color: #999;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10001;
  left: 300px;
  display: none;
}

.close-popup:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Анимация появления */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.thank-you-container.show {
    animation: popupFadeIn 0.3s ease forwards;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .thank-you-container {
        padding: 30px 20px;
        width: 95%;
        height: auto;
    }
    
    .thank-you-content h3 {
        font-size: 20px;
    }
    
    .thank-you-decor-top,
    .thank-you-decor-bottom {
        display: none;
    }
}

@media (max-width: 480px) {
    .thank-you-container {
        padding: 25px 15px;
    }
    
    .thank-you-content h3 {
        font-size: 18px;
    }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
::-webkit-scrollbar:horizontal {
    display: none !important;
}
.is-visually-hidden {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.row-gutter-120 {
  margin: 0 -6rem;
}
.row-gutter-120 > [class^=col] {
  padding: 0 6rem;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */


.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Планшеты (768px - 1024px) */
@media (max-width: 1024px) {
    .video-container {
        margin-bottom: 6rem;
        padding: 0 15px;
        max-width: 900px;
    }
    
    .video-container iframe {
        border-radius: 10px;
    }
}

/* Большие телефоны (576px - 768px) */
@media (max-width: 768px) {
    .video-container {
        margin-bottom: 4rem;
        padding: 0 12px;
        max-width: 100%;
    }
    
    .video-container iframe {
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Телефоны (до 576px) */
@media (max-width: 576px) {
    .video-container {
        margin-bottom: 3rem;
        padding: 0 10px;
    }
    
    .video-container iframe {
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Очень маленькие телефоны (до 375px) */
@media (max-width: 375px) {
    .video-container {
        margin-bottom: 2rem;
        padding: 0 8px;
    }
    
    .video-container iframe {
        border-radius: 4px;
    }
}

/* Большие экраны (более 1440px) */
@media (min-width: 1440px) {
    .video-container {
        max-width: 1400px;
    }
}


@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

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

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 120rem;
}

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

.swiper-3d {
  perspective: 120rem;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
          scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 0.1rem;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 0.1rem;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -2.1rem;
  margin-top: -2.1rem;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 0.4rem solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-prev,
.swiper-next {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 400 2.8rem/1 var(--font-secondary);
  text-transform: uppercase;
  gap: 0.5rem;
  cursor: pointer;
  color: #8a8a8a;
  transition: 0.25s;
}
.swiper-prev svg,
.swiper-next svg {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
}
.swiper-prev:hover,
.swiper-next:hover {
  color: #101010;
}

.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 1px;
  --f-button-outline-color: rgba(0, 0, 0, .7);
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  -webkit-backdrop-filter: var(--f-button-backdrop-filter);
          backdrop-filter: var(--f-button-backdrop-filter);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: all;
  cursor: pointer;
  overflow: hidden;
}

@media (hover: hover) {
  .f-button:hover:not([aria-disabled]) {
    color: var(--f-button-hover-color, var(--f-button-color));
    background-color: var(--f-button-hover-bg, var(--f-button-bg));
  }
}
.f-button:active:not([aria-disabled]) {
  color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));
  background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
}

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
  position: relative;
  z-index: 1;
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  transform: var(--f-button-svg-transform);
  fill: var(--f-button-svg-fill);
  filter: var(--f-button-svg-filter);
  opacity: var(--f-button-svg-opacity, 1);
  transition: var(--f-button-svg-transition);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.f-button[aria-disabled] {
  cursor: default;
}

.f-button[aria-disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

:root {
  --f-spinner-color-1: rgba(0, 0, 0, .1);
  --f-spinner-color-2: rgba(17, 24, 28, .8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
}

.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: calc(var(--f-spinner-width) * -0.5) 0 0 calc(var(--f-spinner-height) * -0.5);
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  border-radius: var(--f-spinner-border-radius);
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  animation: f-spinner 0.75s linear infinite, f-fadeIn 0.2s ease 0.2s both;
}

@keyframes f-spinner {
  to {
    transform: rotate(360deg);
  }
}
.f-panzoom, .f-zoomable {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
  display: block;
  content: "";
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
  margin-top: auto;
}

.f-panzoom__wrapper {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
  display: none;
}

.f-panzoom__content {
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
  visibility: hidden;
}

img.f-panzoom__content {
  vertical-align: top;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.f-panzoom__wrapper > img.f-panzoom__content, .f-panzoom__wrapper > picture.f-panzoom__content {
  visibility: hidden;
}

.f-panzoom__viewport {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.f-panzoom__viewport > .f-panzoom__content {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

picture.f-panzoom__content img {
  vertical-align: top;
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.f-panzoom__protected {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.2) ease calc(var(--f-transition-duration, 0.2s) * 0.8) both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  to {
    opacity: 0;
  }
}
.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextX;
}

.is-horizontal .f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevX;
}

.is-horizontal .f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextX;
}

.is-horizontal .f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevX;
}

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextY;
}

.is-vertical .f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevY;
}

.is-vertical .f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextY;
}

.is-vertical .f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevY;
}

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, 0.975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }
  to {
    transform: scale(1) translateZ(0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, 0.975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, 0.2s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throwOutDown-duration, 0.2s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0;
  }
}
.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
  padding: 0;
}

.f-html {
  position: relative;
  box-sizing: border-box;
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg);
}

.f-html.is-error {
  text-align: center;
}

.f-iframe {
  display: block;
  margin: 0;
  border: 0;
  height: 100%;
  width: 100%;
}

.f-caption {
  align-self: center;
  flex-shrink: 0;
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 8px);
  max-width: 100%;
  max-height: calc(80vh - 10rem);
  overflow: auto;
  overflow-wrap: anywhere;
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font);
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, rgba(0, 0, 0, 0.9));
}

.f-html5video {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var( --f-arrow-active-color, var(--f-arrow-hover-color) );
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  position: absolute;
  transform: translate(0);
  z-index: 20;
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

.is-vertical .f-button.is-arrow.is-prev svg, .is-vertical .f-button.is-arrow.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 8px);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  -webkit-backdrop-filter: var(--f-toolbar-backdrop-filter);
          backdrop-filter: var(--f-toolbar-backdrop-filter);
  position: relative;
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 17px);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none;
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.f-carousel__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
  pointer-events: none;
}

.f-carousel__toolbar__column.is-left {
  justify-self: flex-start;
  justify-content: flex-start;
}

.f-carousel__toolbar__column.is-middle {
  justify-content: center;
}

.f-carousel__toolbar__column.is-right {
  justify-self: flex-end;
  justify-content: flex-end;
  flex-flow: nowrap;
}

.f-carousel__toolbar__column > * {
  pointer-events: all;
}

.f-carousel:has(.f-carousel__slide.is-fullsize) [data-panzoom-action=toggleFull] g {
  display: none;
}

[data-autoplay-action=toggle] svg g:first-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:last-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
  display: flex;
}

:-webkit-full-screen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

.f-carousel__counter {
  position: relative;
  display: flex;
  flex-direction: row;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 4px);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius);
}

.f-carousel__counter span {
  padding: 0 var(--f-counter-gap, 4px);
}

:root {
  --f-thumbs-gap: 8px;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-z-index: 1;
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-fit: cover;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 4px;
  --f-thumb-transfors: none;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
  --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
}

.f-thumbs {
  flex-shrink: 0;
  margin: var(--f-thumbs-margin);
  padding: 0;
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: max-height 0.3s ease, max-width 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: var(--f-thumbs-z-index);
}

.f-thumbs.is-horizontal {
  max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2 + var(--f-thumbs-gap) * 2);
}

.f-thumbs.is-vertical {
  max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-gap) * 2);
}

.f-thumbs.is-ltr {
  direction: ltr;
}

.f-thumbs.is-rtl {
  direction: rtl;
}

.f-thumbs__viewport {
  margin: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  overflow: visible;
  display: grid;
}

.f-thumbs.is-vertical .f-thumbs__viewport {
  height: calc(100% - var(--f-thumbs-padding-y) * 2);
}

.f-thumbs__slide {
  position: relative;
  box-sizing: border-box;
  grid-area: 1/1;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
  outline: none;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
}

.f-thumbs__slide button:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: none;
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--f-thumb-fit);
     object-fit: var(--f-thumb-fit);
  border-radius: inherit;
  pointer-events: none;
}

.f-thumbs__slide img.has-lazyerror {
  display: none;
}

.f-thumbs.is-classic {
  --f-carousel-slide-width: var(--f-thumb-width);
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: var(--f-thumbs-gap);
}

.f-thumbs.is-modern {
  --f-carousel-slide-width: calc( var(--f-thumb-clip-width) + var(--f-thumbs-gap) );
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: 0;
  --width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--f-carousel-slide-width) * 2);
  margin-inline: calc(var(--f-carousel-slide-width) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset( 0 var(--clip-shift) round var(--f-thumb-border-radius, 0) );
  padding: 0;
  overflow: visible;
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button {
  display: block;
  margin-inline: 50%;
  width: var(--f-thumb-width);
  -webkit-clip-path: var(--clip-path);
          clip-path: var(--clip-path);
  border: none;
  box-shadow: none;
  transition: opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease), -webkit-clip-path var(--f-transition-duration) var(--f-transition-easing);
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease);
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease), -webkit-clip-path var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

:root {
  --f-progressbar-height: 3px;
  --f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
  --f-progressbar-opacity: 1;
  --f-progressbar-z-index: 30;
}

.f-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--f-progressbar-z-index);
  height: var(--f-progressbar-height);
  transform: scaleX(0);
  transform-origin: 0;
  opacity: var(--f-progressbar-opacity);
  background: var(--f-progressbar-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-play-state: running;
  animation-timing-function: linear;
}

button > .f-progressbar {
  --f-progressbar-height: 100%;
  --f-progressbar-opacity: .2;
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
[data-fullscreen-action=toggle] svg g:first-child {
  display: flex;
}

[data-fullscreen-action=toggle] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

:fullscreen [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

.in-fullscreen-mode > .f-carousel {
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--f-body-margin, 0px) + var(--f-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__dialog {
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  touch-action: none;
}

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh;
  }
}
div.fancybox__dialog {
  position: fixed;
  inset: 0;
  z-index: 1050;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: rgba(24, 24, 27, .95);
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 0.8rem;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 1.6rem;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, .75);
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0 1rem;
  --f-counter-gap: 0.4rem;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 1.7rem;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 1.6rem 0.8rem;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: rgba(255, 255, 255, .2);
  --f-spinner-color-2: rgba(255, 255, 255, .8);
  --f-spinner-width: 5rem;
  --f-spinner-height: 5rem;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 0.4rem;
  --f-progressbar-color: rgba(255, 255, 255);
  --f-button-width: 4.6rem;
  --f-button-height: 4.6rem;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 0.1rem;
  --f-button-outline-color: rgba(255, 255, 255, .75);
  --f-button-outline-offset: 0;
  --f-button-bg: rgba(54, 54, 54, .75);
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 2.4rem;
  --f-button-svg-height: 2.4rem;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(0.1rem 0.1rem 0.1rem rgba(24, 24, 27, .01)), drop-shadow(0.1rem 0.2rem 0.1rem rgba(24, 24, 27, .05));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 3.2rem;
  --f-arrow-width: 5rem;
  --f-arrow-height: 5rem;
  --f-arrow-svg-width: 2.4rem;
  --f-arrow-svg-height: 2.4rem;
  --f-arrow-svg-stroke-width: 2;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: rgba(54, 54, 54, .65);
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 0.8rem;
  --f-thumbs-padding-y: 0.8rem;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 9.4rem;
  --f-thumb-height: 7.6rem;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 0.2rem rgba(255, 255, 255, .65);
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 0.2rem #fff;
  --f-thumb-selected-transform: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  outline: none;
  display: flex;
  flex-direction: column;
}

.fancybox__container[theme=light] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: rgba(255, 255, 255, .97);
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: rgba(0, 0, 0, .2);
  --f-spinner-color-2: rgba(0, 0, 0, .8);
  --f-spinner-border-width: 0.35rem;
  --f-progressbar-color: rgba(111, 111, 116);
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: rgba(0, 0, 0, .85);
  --f-button-bg: rgba(255, 255, 255, .85);
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: rgba(255, 255, 255, .85);
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 0.18rem #fff, 0 0 0 0.225rem #888;
  --f-thumb-selected-shadow: 0 0 0 0.18rem #fff, 0 0 0 0.225rem #000;
}

.fancybox__container::backdrop {
  background-color: transparent;
}

.fancybox__container.has-vertical-thumbs {
  flex-direction: row-reverse;
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
  overflow-x: clip;
  overflow-y: visible;
}

.fancybox__container > *:not(.fancybox__carousel), .fancybox__container .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden;
}

.fancybox__container.is-revealing > *:not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  animation: var(--f-interface-enter-duration, 0.35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > *:not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--fancybox-backdrop-bg);
}

.fancybox__carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  position: relative;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
  direction: ltr;
}

.fancybox__carousel.is-rtl {
  direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
  position: absolute;
  content: "";
  inset: -3rem;
  z-index: 1;
}

.fancybox__viewport {
  display: grid;
  flex: 1;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__viewport [data-selectable], .fancybox__viewport [contenteditable] {
  cursor: auto;
}

.fancybox__slide {
  box-sizing: border-box;
  position: relative;
  grid-area: 1/1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  margin: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.fancybox__slide:before, .fancybox__slide:after {
  display: block;
  content: "";
}

.fancybox__slide:before {
  margin-bottom: auto;
}

.fancybox__slide:after {
  margin-top: auto;
}

.fancybox__slide.is-selected {
  z-index: 1;
}

.fancybox__slide.f-zoomable {
  overflow: visible;
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
  overflow: auto;
  padding: 8px;
}

.fancybox__slide.has-close-btn {
  padding-top: 3.4rem;
}

.fancybox__slide .f-button[data-fancybox-close] {
  --f-button-width: var(--f-close-button-width, 34px);
  --f-button-height: var(--f-close-button-height, 34px);
  --f-button-border-radius: var(--f-close-border-radius, 4px);
  --f-button-color: var(--f-close-button-color, #fff);
  --f-button-hover-color: var(--f-close-button-hover-color, #fff);
  --f-button-bg: var(--f-close-button-bg, transparent);
  --f-button-hover-bg: var(--f-close-button-hover-bg, transparent);
  --f-button-active-bg: var(--f-close-button-active-bg, transparent);
  --f-button-svg-width: var(--f-close-button-svg-width, 22px);
  --f-button-svg-height: var(--f-close-button-svg-height, 22px);
  position: absolute;
  top: calc(var(--f-button-height) * -1);
  right: 0;
  z-index: 40;
}

.fancybox__slide .f-spinner {
  cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
  visibility: hidden;
}

.fancybox__container.is-closing .fancybox__carousel {
  overflow: visible;
}

.fancybox__container {
  --fancybox-backdrop-bg: rgba(255, 255, 255, 1);
  --f-html-color: #101010;
  --f-html-bg: transparent;
}
@media (min-width: 992px) {
  .fancybox__container {
    --fancybox-backdrop-bg: rgba(0, 0, 0, 0.8);
  }
}

.fancybox__dialog:has(.modal) .fancybox__viewport {
  cursor: unset;
  transform: unset;
}
.fancybox__dialog:has(.modal) .fancybox__slide {
  pointer-events: auto;
  will-change: transform;
}
.fancybox__dialog:has(.modal) .fancybox__slide.has-html {
  padding: 0;
}
.fancybox__dialog:has(.modal) .is-ready .fancybox__slide {
  animation: 0.4s ease 0s both f-fadeHtmlIn;
}
.fancybox__dialog:has(.modal) .is-closing .fancybox__slide {
  animation: 0.4s ease 0s both f-fadeHtmlOut;
}

@keyframes f-fadeHtmlIn {
  0% {
    transform: translate(100%, 0%);
  }
  to {
    transform: translate(0%, 0%);
  }
}
@keyframes f-fadeHtmlOut {
  to {
    transform: translate(100%, 0%);
  }
}
.f-panzoom__viewport > .f-panzoom__content {
  border-radius: 3rem;
}
@media (min-width: 992px) {
  .f-panzoom__viewport > .f-panzoom__content {
    border-radius: 5rem;
  }
}

.scrollbar-track-y {
  position: absolute;
  top: 0;
  left: 0.5rem;
  bottom: 0;
  z-index: 200;
  width: 0.2rem;
}

.scrollbar-thumb-y {
  position: absolute;
  top: 0;
  left: -0.4rem;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom, rgb(129, 72, 236) 0%, rgb(234, 163, 138) 100%);
  cursor: -webkit-grab;
}
.scrollbar-thumb-y:active {
  cursor: -webkit-grabbing;
}

:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "SuisseIntl", sans-serif;
  --body-bg: #fff;
  --body-color: #101010;
  --breakpoint-xs: 420px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-hd: 1440px;
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
}

* {
  outline: none;
  box-sizing: border-box;
  min-width: 0;
}
*:before, *:after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  scrollbar-gutter: stable;
  overscroll-behavior: none;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (max-width: 360px) {
  html {
    font-size: 2.7777777778vw;
  }
}
@media (min-width: 992px) and (max-width: 1919px) {
  html {
    font-size: 0.46875vw;
  }
}

body {
  background: var(--body-bg);
  color: var(--body-color);
  font: 400 18px/1.5 var(--font-primary);
}

.app {
  position: relative;
  min-height: 100%;
  min-width: 32rem;
  display: flex;
  flex-direction: column;
  background: url("/local/templates/leadspace/assets/images/bg.webp") 50% 50% repeat;
}
.app::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("/local/templates/leadspace/assets/images/bg.webp") 50% 50% repeat;
  pointer-events: none;
  background-size: 40rem 40rem;
}

html:not(.is-gsap-ready) .app {
  opacity: 0;
  height: 100%;
}

.container-fluid {
  width: 100%;
  max-width: 192rem;
  padding: 0 1rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container-fluid {
    padding: 0 3.5rem;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    padding: 0 7rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0, 4rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.is-nav-open .header__nav-toggle {
  pointer-events: auto;
}
.is-nav-open .header__nav-toggle svg:nth-child(1), .is-nav-open .header__nav-toggle:hover svg:nth-child(1) {
  opacity: 0;
  transform: scale(0);
}
.is-nav-open .header__nav-toggle svg:nth-child(2), .is-nav-open .header__nav-toggle:hover svg:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.is-nav-open .header__nav-toggle svg:nth-child(3), .is-nav-open .header__nav-toggle:hover svg:nth-child(3) {
  opacity: 1;
  transform: scale(1);
}
.is-nav-open .header__nav-offcanvas {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.is-nav-open .header__nav-menu > li,
.is-nav-open .header__nav-social > li,
.is-nav-open .header__nav-contacts {
  opacity: 0;
  animation: fadeInUp 0.4s forwards ease-out;
}
.is-nav-open .header__nav-menu > li:nth-child(1) {
  animation-delay: 0s;
}
.is-nav-open .header__nav-menu > li:nth-child(2) {
  animation-delay: 0.05s;
}
.is-nav-open .header__nav-menu > li:nth-child(3) {
  animation-delay: 0.1s;
}
.is-nav-open .header__nav-menu > li:nth-child(4) {
  animation-delay: 0.15s;
}
.is-nav-open .header__nav-menu > li:nth-child(5) {
  animation-delay: 0.2s;
}
.is-nav-open .header__nav-social > li {
  animation-delay: 0.25s;
}
.is-nav-open .header__nav-contacts {
  animation-delay: 0.3s;
}
@media (hover: none) {
  .is-nav-open body {
    overflow: hidden;
    pointer-events: none;
  }
}

html:not(.is-nav-open) .header {
  mix-blend-mode: difference;
}
html:not(.is-nav-open) .header .header__logo,
html:not(.is-nav-open) .header .header__nav-toggle,
html:not(.is-nav-open) .header .header__nav-link {
  color: #fff;
}
html:not(.is-nav-open) .header .header__logo:hover,
html:not(.is-nav-open) .header .header__nav-toggle:hover,
html:not(.is-nav-open) .header .header__nav-link:hover {
  color: #fff;
}

.header {
  position: fixed;
  top: -0.1rem;
  left: 0;
  right: 0;
  z-index: 994;
  height: 6rem;
}
.header > .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 992px) {
  .header {
    height: 10rem;
  }
  .header > .container-fluid {
    gap: 15.5rem;
  }
}

.header__logo {
  position: relative;
  z-index: 200;
  display: block;
  flex: 0 0 auto;
  width: 10.6rem;
  height: 2.3rem;
  color: #101010;
  overflow: hidden;
}
.header__logo img,
.header__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .header__logo {
    width: 17.7rem;
    height: 3.9rem;
  }
}

.header__nav {
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .header__nav {
    flex: 1;
  }
}

.header__nav-toggle {
  display: block;
  position: relative;
  z-index: 300;
  width: 2.4rem;
  height: 2.4rem;
  color: #222222;
  margin: 0 1rem;
}
.header__nav-toggle:before {
  content: "";
  display: block;
  position: absolute;
  inset: -2rem;
}
.header__nav-toggle svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}
.header__nav-toggle svg:nth-child(1) {
  opacity: 1;
  transform: scale(1);
}
.header__nav-toggle svg:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.header__nav-toggle svg:nth-child(3) {
  opacity: 0;
  transform: scale(0);
}
.header__nav-toggle:hover svg:nth-child(1) {
  opacity: 0;
  transform: scale(0);
}
.header__nav-toggle:hover svg:nth-child(2) {
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 992px) {
  .header__nav-toggle {
    display: none;
  }
}

.header__nav-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  padding: 6rem 0 0 0;
  display: flex;
  flex-direction: column;
  transition: none;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .header__nav-offcanvas {
    position: relative;
    background: none;
    padding: 0;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.header__nav-offcanvas-in {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 2.4rem 1rem;
}
.header__nav-offcanvas-in::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .header__nav-offcanvas-in {
    padding: 2.4rem 3.5rem;
  }
}
@media (min-width: 992px) {
  .header__nav-offcanvas-in {
    overflow: unset;
    display: block;
    padding: 0;
    gap: 0;
  }
}

.header__nav-valign {
  margin: auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 992px) {
  .header__nav-valign {
    margin: 0;
    display: block;
  }
}

.header__nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  font: 400 2rem/1.3 var(--font-secondary);
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .header__nav-menu {
    display: flex;
    justify-content: space-between;
    font-size: 2.4rem;
    letter-spacing: 0.0275em;
  }
}

.header__nav-social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
@media (min-width: 992px) {
  .header__nav-social {
    display: none;
  }
}

.header__nav-link {
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-decoration: none;
  border-bottom: 0.1rem solid transparent;
  color: #101010;
  transition: 0.2s;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 0.5rem;
  height: 0.1rem;
  top: 100%;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  opacity: 0.7;
}
.header__nav-link u {
  text-decoration: none;
  transition: inherit;
}
.header__nav-link svg {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  transition: inherit;
}
.header__nav-link:hover {
  text-decoration: none;
  color: #101010;
}
.header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header__nav-link:has(u)::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header__nav-link:has(u):hover::after {
  transform-origin: bottom right;
  transform: scaleX(0);
}
.header__nav-link:has(svg)::after {
  display: none;
}
.header__nav-link:has(svg):hover {
  opacity: 0.5;
}

.header__nav-contacts {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}
.header__nav-contacts th,
.header__nav-contacts td {
  padding: 0.4rem;
  vertical-align: top;
}
.header__nav-contacts th:first-child,
.header__nav-contacts td:first-child {
  padding-left: 0;
}
.header__nav-contacts th:last-child,
.header__nav-contacts td:last-child {
  padding-right: 0;
}
.header__nav-contacts th {
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
.header__nav-contacts td {
  text-align: right;
}
@media (min-width: 992px) {
  .header__nav-contacts {
    display: none;
  }
}

.main {
  flex: 1;
  padding: 6rem 0 0 0;
}
@media (min-width: 992px) {
  .main {
    padding: 10rem 0 0 0;
  }
}

.footer {
  position: relative;
  z-index: 200;
  padding: 7rem 0 3.5rem;
  background: #fff url(../assets/images/bg.webp) 50% 50% repeat;
}
@media (min-width: 992px) {
  .footer {
    padding: 7rem 0 3.5rem;
  }
  .footer > .container-fluid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "desc nav" "line line" "copyright copyright";
    align-items: start;
    gap: 0 4rem;
  }
}

.footer__desc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 7rem;
  align-items: start;
}
@media (min-width: 992px) {
  .footer__desc {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 0 0 3rem;
    grid-area: desc;
  }
}

.footer__logo {
  width: 14.8rem;
  height: 3.2rem;
  display: block;
  color: #101010;
}
.footer__logo img,
.footer__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .footer__logo {
    width: 27.7rem;
    height: 6.1rem;
  }
}

.footer__requisites {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: right;
}
.footer__requisites b {
  font-weight: 500;
}
@media (min-width: 992px) {
  .footer__requisites {
    font-size: 1.6rem;
    text-align: left;
  }
}

.footer__nav {
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .footer__nav {
    grid-area: nav;
    padding: 4rem 0 0;
    margin: 0 0 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0 4rem;
  }
}

.footer__nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (min-width: 992px) {
  .footer__nav-menu {
    display: flex;
    flex-direction: row;
    font: 400 2rem/1.3 var(--font-secondary);
    letter-spacing: 0.03em;
    gap: 8rem;
  }
}

.footer__nav-social {
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
@media (min-width: 992px) {
  .footer__nav-social {
    margin: 0;
  }
}

.footer__nav-divider {
  display: none;
}
@media (min-width: 992px) {
  .footer__nav-divider {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 3rem;
  }
}

.footer__nav-contacts {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.footer__nav-contacts th,
.footer__nav-contacts td {
  padding: 0.4rem;
  vertical-align: middle;
}
.footer__nav-contacts th:first-child,
.footer__nav-contacts td:first-child {
  padding-left: 0;
}
.footer__nav-contacts th:last-child,
.footer__nav-contacts td:last-child {
  padding-right: 0;
}
.footer__nav-contacts th {
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
.footer__nav-contacts td {
  text-align: right;
}
.footer__nav-contacts .footer__nav-link {
  padding: 0.4rem;
}
.footer__nav-office-label {
  font-weight: 700;
}
@media (max-width: 991px) {
  .footer__nav-contacts {
    display: block;
  }
  .footer__nav-contacts thead,
  .footer__nav-contacts tbody,
  .footer__nav-contacts tfoot,
  .footer__nav-contacts tr,
  .footer__nav-contacts th,
  .footer__nav-contacts td {
    display: block;
    padding: 0;
  }
  .footer__nav-contacts tr {
    display: flex;
    flex-direction: row-reverse;
    gap: 0 2rem;
    margin: 0 0 0.8rem;
  }
  .footer__nav-contacts tr:last-child {
    margin-bottom: 0;
  }
  .footer__nav-contacts th {
    flex: 0 0 auto;
  }
  .footer__nav-contacts td {
    flex: 1;
  }
}
@media (min-width: 992px) {
  .footer__nav-contacts {
    width: auto;
    margin: 0 0 0 auto;
    font-size: 1.6rem;
  }
  .footer__nav-contacts th {
    text-align: right;
  }
  .footer__nav-contacts th,
  .footer__nav-contacts td {
    padding: 0.2rem 1rem;
  }
  .footer__nav-contacts th:first-child,
  .footer__nav-contacts td:first-child {
    padding-left: 0;
  }
  .footer__nav-contacts th:last-child,
  .footer__nav-contacts td:last-child {
    padding-right: 0;
  }
}

.footer__nav-link {
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-decoration: none;
  border-bottom: 0.1rem solid transparent;
  color: #101010;
  transition: 0.2s;
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 0.5rem;
  height: 0.1rem;
  top: 100%;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  opacity: 0.7;
  will-change: transform;
}
.footer__nav-link u {
  text-decoration: none;
  transition: inherit;
}
.footer__nav-link:has(u) {
  border: none;
}
.footer__nav-link svg {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  transition: inherit;
}
.footer__nav-link:hover {
  text-decoration: none;
  color: #101010;
}
.footer__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.footer__nav-link:has(u)::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.footer__nav-link:has(u):hover::after {
  transform-origin: bottom right;
  transform: scaleX(0);
}
.footer__nav-link:has(svg)::after {
  display: none;
}
.footer__nav-link:has(svg):hover {
  opacity: 0.5;
}

.footer__line {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 0 0 1.5rem -50vw;
  border: none;
  border-bottom: 0.1rem solid #c9c9c9;
}
@media (min-width: 992px) {
  .footer__line {
    grid-area: line;
    margin-bottom: 3.5rem;
  }
}

.footer__copyright {
  display: block;
  margin: 0;
  font: 400 1.2rem/1.2 var(--font-secondary);
  text-align: center;
  color: #868686;
}
@media (min-width: 992px) {
  .footer__copyright {
    grid-area: copyright;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
  }
}

.footer__copyright-text {
  display: block;
  margin: 0 0 1.2rem;
}
@media (min-width: 992px) {
  .footer__copyright-text {
    margin: 0;
  }
}

.footer__copyright-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.footer__copyright-list > li {
  position: relative;
}
.footer__copyright-list > li::before {
  content: "|";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1.2rem;
}
.footer__copyright-list > li:first-child:before {
  display: none;
}
.footer__copyright-list a {
  text-decoration: none;
  color: #868686;
  border-bottom: 0.1rem solid transparent;
  transition: 0.2s;
}
.footer__copyright-list a:hover {
  text-decoration: none;
  color: #868686;
  border-color: currentColor;
}
@media (min-width: 992px) {
  .footer__copyright-list > li:first-child::before {
    display: flex;
  }
}

.container,
.container-fluid,
.container-hd,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 420px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 54rem;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 72rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 96rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 114rem;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 132rem;
  }
}

@media (min-width: 420px) {
  .container-xs {
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .container-sm {
    max-width: 54rem;
  }
}
@media (min-width: 768px) {
  .container-md {
    max-width: 72rem;
  }
}
@media (min-width: 992px) {
  .container-lg {
    max-width: 96rem;
  }
}
@media (min-width: 1200px) {
  .container-xl {
    max-width: 114rem;
  }
}
@media (min-width: 1440px) {
  .container-hd {
    max-width: 132rem;
  }
}
.row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  position: relative;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 1 0;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

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

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 420px) {
  .col-xs {
    flex: 1 1 0;
    max-width: 100%;
  }
  .col-xs-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xs-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xs-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xs-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xs-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xs-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xs-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .offset-xs-0 {
    margin-left: 0;
  }
  .offset-xs-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xs-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xs-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xs-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xs-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 1 0;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 1 0;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 1 0;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 1 0;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1440px) {
  .col-hd {
    flex: 1 1 0;
    max-width: 100%;
  }
  .col-hd-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-hd-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-hd-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-hd-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-hd-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-hd-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-hd-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-hd-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-hd-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-hd-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-hd-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-hd-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-hd-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .offset-hd-0 {
    margin-left: 0;
  }
  .offset-hd-1 {
    margin-left: 8.3333333333%;
  }
  .offset-hd-2 {
    margin-left: 16.6666666667%;
  }
  .offset-hd-3 {
    margin-left: 25%;
  }
  .offset-hd-4 {
    margin-left: 33.3333333333%;
  }
  .offset-hd-5 {
    margin-left: 41.6666666667%;
  }
  .offset-hd-6 {
    margin-left: 50%;
  }
  .offset-hd-7 {
    margin-left: 58.3333333333%;
  }
  .offset-hd-8 {
    margin-left: 66.6666666667%;
  }
  .offset-hd-9 {
    margin-left: 75%;
  }
  .offset-hd-10 {
    margin-left: 83.3333333333%;
  }
  .offset-hd-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 420px) {
  .g-xs-0,
  .gx-xs-0 {
    --bs-gutter-x: 0;
  }
  .g-xs-0,
  .gy-xs-0 {
    --bs-gutter-y: 0;
  }
  .g-xs-1,
  .gx-xs-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xs-1,
  .gy-xs-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xs-2,
  .gx-xs-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xs-2,
  .gy-xs-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xs-3,
  .gx-xs-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xs-3,
  .gy-xs-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xs-4,
  .gx-xs-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xs-4,
  .gy-xs-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xs-5,
  .gx-xs-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xs-5,
  .gy-xs-5 {
    --bs-gutter-y: 1.25rem;
  }
}
@media (min-width: 576px) {
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 1.25rem;
  }
}
@media (min-width: 768px) {
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 1.25rem;
  }
}
@media (min-width: 992px) {
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 1.25rem;
  }
}
@media (min-width: 1440px) {
  .g-hd-0,
  .gx-hd-0 {
    --bs-gutter-x: 0;
  }
  .g-hd-0,
  .gy-hd-0 {
    --bs-gutter-y: 0;
  }
  .g-hd-1,
  .gx-hd-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-hd-1,
  .gy-hd-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-hd-2,
  .gx-hd-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-hd-2,
  .gy-hd-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-hd-3,
  .gx-hd-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-hd-3,
  .gy-hd-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-hd-4,
  .gx-hd-4 {
    --bs-gutter-x: 1rem;
  }
  .g-hd-4,
  .gy-hd-4 {
    --bs-gutter-y: 1rem;
  }
  .g-hd-5,
  .gx-hd-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-hd-5,
  .gy-hd-5 {
    --bs-gutter-y: 1.25rem;
  }
}
@media (min-width: 420px) {
  .order-xs-first {
    order: -1;
  }
  .order-xs-0 {
    order: 0;
  }
  .order-xs-1 {
    order: 1;
  }
  .order-xs-2 {
    order: 2;
  }
  .order-xs-3 {
    order: 3;
  }
  .order-xs-4 {
    order: 4;
  }
  .order-xs-5 {
    order: 5;
  }
  .order-xs-last {
    order: 6;
  }
}
@media (min-width: 576px) {
  .order-sm-first {
    order: -1;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-last {
    order: 6;
  }
}
@media (min-width: 768px) {
  .order-md-first {
    order: -1;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-last {
    order: 6;
  }
}
@media (min-width: 992px) {
  .order-lg-first {
    order: -1;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-last {
    order: 6;
  }
}
@media (min-width: 1200px) {
  .order-xl-first {
    order: -1;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-last {
    order: 6;
  }
}
@media (min-width: 1440px) {
  .order-hd-first {
    order: -1;
  }
  .order-hd-0 {
    order: 0;
  }
  .order-hd-1 {
    order: 1;
  }
  .order-hd-2 {
    order: 2;
  }
  .order-hd-3 {
    order: 3;
  }
  .order-hd-4 {
    order: 4;
  }
  .order-hd-5 {
    order: 5;
  }
  .order-hd-last {
    order: 6;
  }
}
@media (min-width: 420px) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-grid {
    display: grid !important;
  }
  .d-xs-table {
    display: table !important;
  }
  .d-xs-table-row {
    display: table-row !important;
  }
  .d-xs-table-cell {
    display: table-cell !important;
  }
  .d-xs-flex {
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1440px) {
  .d-hd-none {
    display: none !important;
  }
  .d-hd-inline {
    display: inline !important;
  }
  .d-hd-inline-block {
    display: inline-block !important;
  }
  .d-hd-block {
    display: block !important;
  }
  .d-hd-grid {
    display: grid !important;
  }
  .d-hd-table {
    display: table !important;
  }
  .d-hd-table-row {
    display: table-row !important;
  }
  .d-hd-table-cell {
    display: table-cell !important;
  }
  .d-hd-flex {
    display: flex !important;
  }
  .d-hd-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 420px) {
  .push-xs-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .pull-xs-1 {
    position: relative;
    right: 8.3333333333%;
  }
  .push-xs-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .pull-xs-2 {
    position: relative;
    right: 16.6666666667%;
  }
  .push-xs-3 {
    position: relative;
    left: 25%;
  }
  .pull-xs-3 {
    position: relative;
    right: 25%;
  }
  .push-xs-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .pull-xs-4 {
    position: relative;
    right: 33.3333333333%;
  }
  .push-xs-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .pull-xs-5 {
    position: relative;
    right: 41.6666666667%;
  }
  .push-xs-6 {
    position: relative;
    left: 50%;
  }
  .pull-xs-6 {
    position: relative;
    right: 50%;
  }
  .push-xs-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .pull-xs-7 {
    position: relative;
    right: 58.3333333333%;
  }
  .push-xs-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .pull-xs-8 {
    position: relative;
    right: 66.6666666667%;
  }
  .push-xs-9 {
    position: relative;
    left: 75%;
  }
  .pull-xs-9 {
    position: relative;
    right: 75%;
  }
  .push-xs-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .pull-xs-10 {
    position: relative;
    right: 83.3333333333%;
  }
  .push-xs-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .pull-xs-11 {
    position: relative;
    right: 91.6666666667%;
  }
  .push-xs-12 {
    position: relative;
    left: 100%;
  }
  .pull-xs-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 576px) {
  .push-sm-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .pull-sm-1 {
    position: relative;
    right: 8.3333333333%;
  }
  .push-sm-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .pull-sm-2 {
    position: relative;
    right: 16.6666666667%;
  }
  .push-sm-3 {
    position: relative;
    left: 25%;
  }
  .pull-sm-3 {
    position: relative;
    right: 25%;
  }
  .push-sm-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .pull-sm-4 {
    position: relative;
    right: 33.3333333333%;
  }
  .push-sm-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .pull-sm-5 {
    position: relative;
    right: 41.6666666667%;
  }
  .push-sm-6 {
    position: relative;
    left: 50%;
  }
  .pull-sm-6 {
    position: relative;
    right: 50%;
  }
  .push-sm-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .pull-sm-7 {
    position: relative;
    right: 58.3333333333%;
  }
  .push-sm-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .pull-sm-8 {
    position: relative;
    right: 66.6666666667%;
  }
  .push-sm-9 {
    position: relative;
    left: 75%;
  }
  .pull-sm-9 {
    position: relative;
    right: 75%;
  }
  .push-sm-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .pull-sm-10 {
    position: relative;
    right: 83.3333333333%;
  }
  .push-sm-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .pull-sm-11 {
    position: relative;
    right: 91.6666666667%;
  }
  .push-sm-12 {
    position: relative;
    left: 100%;
  }
  .pull-sm-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 768px) {
  .push-md-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .pull-md-1 {
    position: relative;
    right: 8.3333333333%;
  }
  .push-md-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .pull-md-2 {
    position: relative;
    right: 16.6666666667%;
  }
  .push-md-3 {
    position: relative;
    left: 25%;
  }
  .pull-md-3 {
    position: relative;
    right: 25%;
  }
  .push-md-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .pull-md-4 {
    position: relative;
    right: 33.3333333333%;
  }
  .push-md-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .pull-md-5 {
    position: relative;
    right: 41.6666666667%;
  }
  .push-md-6 {
    position: relative;
    left: 50%;
  }
  .pull-md-6 {
    position: relative;
    right: 50%;
  }
  .push-md-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .pull-md-7 {
    position: relative;
    right: 58.3333333333%;
  }
  .push-md-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .pull-md-8 {
    position: relative;
    right: 66.6666666667%;
  }
  .push-md-9 {
    position: relative;
    left: 75%;
  }
  .pull-md-9 {
    position: relative;
    right: 75%;
  }
  .push-md-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .pull-md-10 {
    position: relative;
    right: 83.3333333333%;
  }
  .push-md-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .pull-md-11 {
    position: relative;
    right: 91.6666666667%;
  }
  .push-md-12 {
    position: relative;
    left: 100%;
  }
  .pull-md-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 992px) {
  .push-lg-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .pull-lg-1 {
    position: relative;
    right: 8.3333333333%;
  }
  .push-lg-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .pull-lg-2 {
    position: relative;
    right: 16.6666666667%;
  }
  .push-lg-3 {
    position: relative;
    left: 25%;
  }
  .pull-lg-3 {
    position: relative;
    right: 25%;
  }
  .push-lg-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .pull-lg-4 {
    position: relative;
    right: 33.3333333333%;
  }
  .push-lg-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .pull-lg-5 {
    position: relative;
    right: 41.6666666667%;
  }
  .push-lg-6 {
    position: relative;
    left: 50%;
  }
  .pull-lg-6 {
    position: relative;
    right: 50%;
  }
  .push-lg-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .pull-lg-7 {
    position: relative;
    right: 58.3333333333%;
  }
  .push-lg-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .pull-lg-8 {
    position: relative;
    right: 66.6666666667%;
  }
  .push-lg-9 {
    position: relative;
    left: 75%;
  }
  .pull-lg-9 {
    position: relative;
    right: 75%;
  }
  .push-lg-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .pull-lg-10 {
    position: relative;
    right: 83.3333333333%;
  }
  .push-lg-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .pull-lg-11 {
    position: relative;
    right: 91.6666666667%;
  }
  .push-lg-12 {
    position: relative;
    left: 100%;
  }
  .pull-lg-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 1200px) {
  .push-xl-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .pull-xl-1 {
    position: relative;
    right: 8.3333333333%;
  }
  .push-xl-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .pull-xl-2 {
    position: relative;
    right: 16.6666666667%;
  }
  .push-xl-3 {
    position: relative;
    left: 25%;
  }
  .pull-xl-3 {
    position: relative;
    right: 25%;
  }
  .push-xl-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .pull-xl-4 {
    position: relative;
    right: 33.3333333333%;
  }
  .push-xl-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .pull-xl-5 {
    position: relative;
    right: 41.6666666667%;
  }
  .push-xl-6 {
    position: relative;
    left: 50%;
  }
  .pull-xl-6 {
    position: relative;
    right: 50%;
  }
  .push-xl-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .pull-xl-7 {
    position: relative;
    right: 58.3333333333%;
  }
  .push-xl-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .pull-xl-8 {
    position: relative;
    right: 66.6666666667%;
  }
  .push-xl-9 {
    position: relative;
    left: 75%;
  }
  .pull-xl-9 {
    position: relative;
    right: 75%;
  }
  .push-xl-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .pull-xl-10 {
    position: relative;
    right: 83.3333333333%;
  }
  .push-xl-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .pull-xl-11 {
    position: relative;
    right: 91.6666666667%;
  }
  .push-xl-12 {
    position: relative;
    left: 100%;
  }
  .pull-xl-12 {
    position: relative;
    right: 100%;
  }
}
@media (min-width: 1440px) {
  .push-hd-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .pull-hd-1 {
    position: relative;
    right: 8.3333333333%;
  }
  .push-hd-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .pull-hd-2 {
    position: relative;
    right: 16.6666666667%;
  }
  .push-hd-3 {
    position: relative;
    left: 25%;
  }
  .pull-hd-3 {
    position: relative;
    right: 25%;
  }
  .push-hd-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .pull-hd-4 {
    position: relative;
    right: 33.3333333333%;
  }
  .push-hd-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .pull-hd-5 {
    position: relative;
    right: 41.6666666667%;
  }
  .push-hd-6 {
    position: relative;
    left: 50%;
  }
  .pull-hd-6 {
    position: relative;
    right: 50%;
  }
  .push-hd-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .pull-hd-7 {
    position: relative;
    right: 58.3333333333%;
  }
  .push-hd-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .pull-hd-8 {
    position: relative;
    right: 66.6666666667%;
  }
  .push-hd-9 {
    position: relative;
    left: 75%;
  }
  .pull-hd-9 {
    position: relative;
    right: 75%;
  }
  .push-hd-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .pull-hd-10 {
    position: relative;
    right: 83.3333333333%;
  }
  .push-hd-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .pull-hd-11 {
    position: relative;
    right: 91.6666666667%;
  }
  .push-hd-12 {
    position: relative;
    left: 100%;
  }
  .pull-hd-12 {
    position: relative;
    right: 100%;
  }
}
.social {
  margin: 0;
  padding: 2.4rem 0;
  list-style: none;
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 900;
  width: 5.6rem;
  background: linear-gradient(to bottom, rgb(129, 72, 236) 0%, rgb(234, 163, 138) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border-radius: 3rem 0 0 3rem;
}
@media (max-width: 991px) {
  .social {
    width: 3.6rem;
    border-radius: 1.6rem 0 0 1.6rem;
    padding: 1.6rem 0;
  }
}
@media (max-width: 767px) {
  .social {
    opacity: 0;
    visibility: hidden;
  }
}

.social__link {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.social__link svg {
  display: block;
  width: 100%;
  height: 100%;
}
.social__link:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .social__link {
    width: 2rem;
    height: 2rem;
  }
}

.glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: 0.4s;
  pointer-events: none;
  height: 6rem;
}
@media (min-width: 992px) {
  .glass {
    height: 10rem;
  }
}

.is-sticky .glass {
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
}

.cursor {
  display: none;
}
@media (min-width: 992px) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    margin: -1rem 0 0 -1rem;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: difference;
    transition: opacity 0.25s, visibility 0.25s;
    opacity: 0;
  }
}

.ruler {
  display: none;
}
@media (min-width: 992px) {
  .ruler {
    position: fixed;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    margin: -1rem 0 0 -1rem;
    pointer-events: none;
    z-index: 2000;
    transition: opacity 0.4s;
    opacity: 0;
    display: block;
    perspective: 100rem;
  }
  .ruler::before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 132.8rem;
    height: 14rem;
    background: url(../assets/images/ruler.webp) center top no-repeat;
    background-size: contain;
    margin: -1rem 0 0 -66.4rem;
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
  }
}

@media (hover: hover) and (min-width: 992px) {
  .is-ruler-active .ruler {
    opacity: 1;
  }
  .is-ruler-active .cursor {
    opacity: 0 !important;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  overflow-x: hidden;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0.1rem dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -0.2rem; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Defaults
 ========================================================================== */
picture {
  display: block;
}

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

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

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

input::-ms-clear {
  display: none;
}

button,
input,
textarea,
select {
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

::-moz-selection {
  color: #fff;
  background: #101010;
}

::selection {
  color: #fff;
  background: #101010;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

svg {
  overflow: unset;
}

section {
  overflow: hidden;
}

mark {
  background: none;
  color: inherit;
}

@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/Montserrat-Light.woff2") format("woff2"), url("../assets/fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/Montserrat-Regular.woff2") format("woff2"), url("../assets/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/Montserrat-Medium.woff2") format("woff2"), url("../assets/fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../assets/fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("../assets/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../assets/fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: SuisseIntl;
  src: url("../assets/fonts/SuisseIntl-Light.woff2") format("woff2"), url("../assets/fonts/SuisseIntl-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: SuisseIntl;
  src: url("../assets/fonts/SuisseIntl-Regular.woff2") format("woff2"), url("../assets/fonts/SuisseIntl-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.ui-btn {
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  border-radius: 1.2rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}
.ui-btn:hover {
  text-decoration: none;
}
.ui-btn--gradient {
  color: #fff;
}
.ui-btn--gradient::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(130, 71, 237, 0.7) 0%, #eb8f73 100%), conic-gradient(from 90deg, rgba(255, 255, 255, 0) 0deg, rgba(0, 0, 0, 0.2) 72deg, rgba(255, 255, 255, 0.2) 144deg, rgba(0, 0, 0, 0.2) 216deg, rgba(255, 255, 255, 0.2) 288deg, rgba(0, 0, 0, 0.2) 360deg);
  background-blend-mode: difference;
  transition: 0.2s;
}
.ui-btn--gradient:hover {
  color: #fff;
}
.ui-btn--dark {
  background: #080808;
  color: #fff;
}
.ui-btn--dark:hover {
  color: #fff;
}
@media (min-width: 992px) {
  .ui-btn {
    height: 5.9rem;
    font-size: 2.4rem;
    padding: 0 4rem;
    border-radius: 2rem;
  }
}

.ui-placeholder {
  position: relative;
   /* height: 6.4rem; */
  text-align: left;
}
.ui-placeholder:has(.ui-placeholder__textarea) {
  height: 9.6rem;
}
.ui-placeholder:has(.ui-placeholder__textarea) .ui-placeholder__label {
  height: 6.4rem;
}

.ui-placeholder__input,
.ui-placeholder__textarea {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-top: 0.2rem solid transparent;
  border-bottom: 0.2rem solid #6c6c6c;
  box-shadow: none;
  border-radius: 0;
  padding: 1.2rem 1.2rem 0;
  cursor: pointer;
  transition: 0.25s;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #343434;
  height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.ui-placeholder__input::-webkit-input-placeholder, .ui-placeholder__textarea::-webkit-input-placeholder {
  opacity: 0;
}
.ui-placeholder__input::-moz-placeholder, .ui-placeholder__textarea::-moz-placeholder {
  opacity: 0;
}
.ui-placeholder__input::placeholder,
.ui-placeholder__textarea::placeholder {
  opacity: 0;
}
.ui-placeholder__input:not(:-moz-placeholder) ~ .ui-placeholder__label, .ui-placeholder__textarea:not(:-moz-placeholder) ~ .ui-placeholder__label {
  opacity: 0.3;
  transform: translate(0, -33%);
}
.ui-placeholder__input:focus ~ .ui-placeholder__label, .ui-placeholder__input:not(:placeholder-shown) ~ .ui-placeholder__label,
.ui-placeholder__textarea:focus ~ .ui-placeholder__label,
.ui-placeholder__textarea:not(:placeholder-shown) ~ .ui-placeholder__label {
  opacity: 0.3;
  transform: translate(0, -33%);
}
@media (min-width: 992px) {
  .ui-placeholder__input,
  .ui-placeholder__textarea {
    font-size: 2rem;
  }
}

.ui-placeholder__textarea {
  resize: none;
  padding: 3.2rem 1.2rem 0;
}

.ui-placeholder__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  padding: 0.8rem 1.2rem 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  display: flex;
  align-items: center;
  color: #343434;
  transition: 0.2s;
  transform-origin: 1.2rem center;
  gap: 0.6rem;
}
.ui-placeholder__label sup {
  top: 0;
  font-size: inherit;
  color: #e10000;
}
.ui-placeholder__label small {
  position: relative;
  top: 0.1em;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  vertical-align: baseline;
}
@media (min-width: 992px) {
  .ui-placeholder__label {
    font-size: 2rem;
  }
  .ui-placeholder__label small {
    top: 0.2em;
  }
}

.ui-check {
  display: inline-flex;
  align-items: flex-start;
  vertical-align: top;
  position: relative;
  gap: 1.2rem;
  cursor: pointer;
}

.ui-check__input {
  position: absolute;
  opacity: 0;
}
.ui-check__input:checked ~ .ui-check__checkbox {
  border-color: #101010;
}
.ui-check__input:checked ~ .ui-check__checkbox::after {
  opacity: 1;
}

.ui-check__checkbox {
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  border: 0.1rem solid #6c6c6c;
  border-radius: 0.4rem;
  flex: 0 0 auto;
  position: relative;
}
.ui-check__checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.999999 11.1818L5.1405 14.3931C5.57393 14.7292 6.19724 14.6535 6.53757 14.2233L17 1' stroke='%23101010' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: -1.2rem 0 0 -0.6rem;
  transition: 0.2s;
  opacity: 0;
}

.ui-check__text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 300;
  text-align: left;
}
.ui-check__text a {
  text-decoration: none;
  color: #101010;
  border-bottom: 0.1rem solid currentColor;
  transition: 0.2s;
}
.ui-check__text a:hover {
  text-decoration: none;
  color: #101010;
  border-color: transparent;
}
@media (min-width: 992px) {
  .ui-check__text {
    font-size: 1.4rem;
  }
}

.modal {
  display: none;
  padding: 3.5rem 1rem 2rem;
  background: #fff;
  position: relative;
  z-index: 500;
  width: 100%;
  height: auto;
  max-width: 192rem;
  margin: 0 0 0 auto;
  will-change: transform;
}
@media (min-width: 992px) {
  .modal {
    padding: 11.5rem 1rem 11.5rem 21rem;
    background: transparent;
    justify-content: flex-end;
  }
}

.modal__close {
  position: absolute;
  top: 2rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  z-index: 200;
  cursor: pointer;
  color: #33363f;
  transition: 0.4s;
}
.modal__close::before {
  content: "";
  display: block;
  position: absolute;
  inset: -1rem;
}
.modal__close svg {
  display: block;
  width: 100%;
  height: 100%;
}
.modal__close:hover {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .modal__close {
    position: absolute;
    top: 13.5rem;
    left: 7rem;
    right: auto;
    bottom: auto;
    width: 6rem;
    height: 6rem;
    color: #fff;
  }
}

@media (min-width: 992px) {
  .modal__feedback {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 3rem 0 0 3rem;
    padding: 6rem 6rem 5rem 16rem;
  }
}

.modal__feedback-head {
  margin: 0 0 4rem;
  padding: 0 9rem 0 0;
}
@media (min-width: 992px) {
  .modal__feedback-head {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title contacts" "text contacts";
    align-items: start;
  }
}

.modal__feedback-title {
  display: block;
  margin: 0 0 1.6rem;
  font: 400 2.6rem/1.3 var(--font-secondary);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .modal__feedback-title {
    font-size: 5rem;
    margin: 0;
    grid-area: title;
  }
}

.modal__feedback-text {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
}
@media (min-width: 992px) {
  .modal__feedback-text {
    font-size: 2.2rem;
    grid-area: text;
  }
}

.modal__feedback-contacts {
  display: none;
}
@media (min-width: 992px) {
  .modal__feedback-contacts {
    margin: 0;
    padding: 0;
    list-style: none;
    grid-area: contacts;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 400;
    text-align: right;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .modal__feedback-contacts > li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
  }
  .modal__feedback-contacts svg {
    width: 2.3rem;
    height: 2.3rem;
    display: block;
  }
  .modal__feedback-contacts a {
    color: #101010;
    text-decoration: none;
    transition: 0.2s;
  }
  .modal__feedback-contacts a:hover {
    text-decoration: none;
    color: #101010;
    opacity: 0.5;
  }
}

.modal__feedback-form .row {
  gap: 1.2rem 0;
}
.modal__feedback-form .ui-placeholder {
  margin: 0 0 1.2rem;
}
.modal__feedback-form .ui-placeholder:last-child {
  margin-bottom: 0;
}
.modal__feedback-form .ui-file {
  margin: 2.4rem 0 1.2rem;
}
.modal__feedback-form .ui-caption {
  margin: 0 0 4rem;
}
.modal__feedback-form .ui-action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
.modal__feedback-form .ui-btn {
  height: 4.1rem;
  border-radius: 1rem;
  font-size: 2rem;
  text-transform: none;
}
@media (min-width: 992px) {
  .modal__feedback-form {
    max-width: 133.2rem;
  }
  .modal__feedback-form .row {
    gap: 1.6rem 0;
    margin: 0 -8.2rem;
  }
  .modal__feedback-form .row > [class^=col] {
    padding: 0 8.2rem;
  }
  .modal__feedback-form .ui-placeholder {
    margin: 0 0 1.6rem;
  }
  .modal__feedback-form .ui-file {
    margin: 1.6rem 0 0.8rem;
  }
  .modal__feedback-form .ui-caption {
    margin: 0 0 5rem;
  }
  .modal__feedback-form .ui-action {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3.2rem;
  }
  .modal__feedback-form .ui-btn {
    height: 5.9rem;
    padding: 0 2.6rem;
    font-size: 3.2rem;
    border-radius: 2rem;
    flex: 0 0 auto;
  }
}

.ui-file {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  vertical-align: top;
  position: relative;
  cursor: pointer;
  gap: 2rem;
}
@media (min-width: 992px) {
  .ui-file {
    gap: 2.2rem;
  }
}

.ui-file__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.ui-file__btn {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  color: #343434;
  gap: 0.6rem;
  cursor: pointer;
  transition: 0.2s;
}
.ui-file__btn svg {
  display: block;
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
}
.ui-file__btn:hover {
  opacity: 0.5;
}
@media (min-width: 992px) {
  .ui-file__btn {
    font-size: 2rem;
    gap: 1.2rem;
  }
  .ui-file__btn svg {
    width: 2.7rem;
    height: 2.7rem;
  }
}

.ui-file__name {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  color: #9576ad;
}
.ui-caption {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 400;
}
.ui-caption p {
  margin: 0 0 0.8rem;
}
.ui-caption p:last-child {
  margin-bottom: 0;
}

:has(.hero) .main {
  padding: 0;
}

.hero {
  position: relative;
  padding: 12rem 0 8rem;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 10.5rem 0 10.5rem;
    margin: 0 0 6rem;
  }
  .hero > .container-fluid {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-areas: "copyright year blockquote" "title title title";
    align-items: end;
    gap: 5.5rem 4rem;
  }
}
@media (min-width: 992px) {
  .hero {
    padding: 25rem 0 12.5rem 0;
    margin: 0 0 12rem;
  }
  .hero > .container-fluid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-areas: "copyright year blockquote" "title title title";
    align-items: end;
    gap: 5.5rem 0;
  }
}

.hero__blockquote {
  position: relative;
  margin: 0 0 4rem;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
  max-width: 34rem;
}
.hero__blockquote p {
  margin: 0 0 0.5rem;
}
.hero__blockquote p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero__blockquote {
    grid-area: blockquote;
    margin: 0;
    text-align: right;
    max-width: none;
  }
}
@media (min-width: 992px) {
  .hero__blockquote {
    grid-area: blockquote;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 400;
    text-align: right;
    position: relative;
    margin: 0;
    height: 9rem;
  }
  .hero__blockquote p {
    margin: 0;
  }
}

.hero__blockquote-clip {
  position: relative;
  display: flex;
}

.hero__blockquote-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
}
.hero__blockquote-slide:first-of-type ~ * {
  transform: translate(-100%, 100%);
}
@media (min-width: 768px) {
  .hero__title {
    grid-area: title;
  }
}

.hero__title-row {
  font: 400 4.5rem/1 var(--font-secondary);
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  padding: 1rem 0;
  margin: -2rem 0;
}
.hero__title-row small {
  display: block;
  font: 600 1.2rem/1 var(--font-primary);
  text-transform: none;
  padding: 1rem 0 0;
}
.hero__title-row sub {
  font: 400 1.2rem/1 var(--font-primary);
  text-transform: none;
  padding: 1rem 0 0;
  position: relative;
  top: -0.1em;
}
@media (min-width: 768px) {
  .hero__title-row {
    grid-area: title;
  }
}
@media (min-width: 992px) {
  .hero__title-row {
    grid-area: title;
    font-size: 21.5rem;
    margin: 0;
  }
  .hero__title-row small {
    font-size: 2.4rem;
    position: relative;
    top: -1.25em;
  }
  .hero__title-row sub {
    font-size: 4.4rem;
    line-height: 1;
    font-weight: 400;
    position: relative;
    top: -0.55em;
  }
}

.hero__title-clip {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex: 0 0 100%;
}
.hero__title-slide {
  position: relative;
  display: block;
  flex: 0 0 100%;
  padding: 1rem 0;
  min-height: 100%;
}
.hero__title-slide:first-of-type ~ * {
  transform: translate(-100%, 100%);
}
@media (min-width: 992px) {
  .hero__title-slide {
    display: flex;
    align-items: flex-end;
    gap: 6rem;
    padding: 2rem 0;
  }
}

.hero__copyright {
  display: none;
}
@media (min-width: 768px) {
  .hero__copyright {
    grid-area: copyright;
    display: block;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .hero__copyright {
    display: block;
    margin: 0;
    grid-area: copyright;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 400;
  }
}

.hero__copyright-clip {
  display: block;
}

.hero__year {
  display: none;
}
@media (min-width: 768px) {
  .hero__year {
    grid-area: year;
    display: block;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .hero__year {
    display: block;
    margin: 0;
    grid-area: year;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
  }
}

.hero__year-clip {
  display: block;
}

.hero__scrolldown {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  left: 50%;
  bottom: 4rem;
  margin: 0 0 -1.2rem -1.2rem;
  pointer-events: none;
  overflow: unset;
}
.hero__scrolldown svg {
  display: block;
  width: 100%;
  height: 100%;
  animation: pulseDown 1s ease-in-out infinite;
}
@media (min-width: 992px) {
  .hero__scrolldown {
    width: 4.8rem;
    height: 4.8rem;
    margin: 0 0 -2.4rem -2.4rem;
    bottom: 12rem;
  }
}

@keyframes pulseDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.8rem); /* смещение вниз */
  }
}
.tiles {
  margin: 0 0 7.2rem;
}
@media (min-width: 992px) {
  .tiles {
    margin: 0 0 20rem;
  }
}

.tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.255rem;
  width: 100%;
  height: auto;
  aspect-ratio: 340/212;
}
@media (min-width: 768px) {
  .tiles__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    aspect-ratio: 1780/830;
  }
}

.tiles__card {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  overflow: unset;
  perspective: 100vw;
  display: block;
}
.tiles__card:nth-child(1) .tiles__card-front,
.tiles__card:nth-child(1) .tiles__card-back {
  background-position: 0 0;
}
.tiles__card:nth-child(2) .tiles__card-front,
.tiles__card:nth-child(2) .tiles__card-back {
  background-position: 33.333% 0%;
}
.tiles__card:nth-child(3) .tiles__card-front,
.tiles__card:nth-child(3) .tiles__card-back {
  background-position: 66.666% 0;
}
.tiles__card:nth-child(4) .tiles__card-front,
.tiles__card:nth-child(4) .tiles__card-back {
  background-position: 0 50%;
}
.tiles__card:nth-child(5) .tiles__card-front,
.tiles__card:nth-child(5) .tiles__card-back {
  background-position: 33.333% 50%;
}
.tiles__card:nth-child(6) .tiles__card-front,
.tiles__card:nth-child(6) .tiles__card-back {
  background-position: 66.666% 50%;
}
.tiles__card:nth-child(7) .tiles__card-front,
.tiles__card:nth-child(7) .tiles__card-back {
  background-position: 0 100%;
}
.tiles__card:nth-child(8) .tiles__card-front,
.tiles__card:nth-child(8) .tiles__card-back {
  background-position: 33.333% 100%;
}
.tiles__card:nth-child(9) .tiles__card-front,
.tiles__card:nth-child(9) .tiles__card-back {
  background-position: 66.666% 100%;
}
.tiles__card:nth-child(9) ~ * {
  display: none;
}
@media (min-width: 768px) {
  .tiles__card {
    border-radius: 1rem;
  }
  .tiles__card:nth-child(1) .tiles__card-front,
  .tiles__card:nth-child(1) .tiles__card-back {
    background-position: 0% 0%;
  }
  .tiles__card:nth-child(2) {
    opacity: 0;
  }
  .tiles__card:nth-child(2) .tiles__card-front,
  .tiles__card:nth-child(2) .tiles__card-back {
    background-position: 33.333% 0%;
  }
  .tiles__card:nth-child(3) .tiles__card-front,
  .tiles__card:nth-child(3) .tiles__card-back {
    background-position: 66.666% 0%;
  }
  .tiles__card:nth-child(4) .tiles__card-front,
  .tiles__card:nth-child(4) .tiles__card-back {
    background-position: 100% 0%;
  }
  .tiles__card:nth-child(5) .tiles__card-front,
  .tiles__card:nth-child(5) .tiles__card-back {
    background-position: 0% 50%;
  }
  .tiles__card:nth-child(6) .tiles__card-front,
  .tiles__card:nth-child(6) .tiles__card-back {
    background-position: 33.333% 50%;
  }
  .tiles__card:nth-child(7) .tiles__card-front,
  .tiles__card:nth-child(7) .tiles__card-back {
    background-position: 66.666% 50%;
  }
  .tiles__card:nth-child(8) {
    opacity: 0;
  }
  .tiles__card:nth-child(8) .tiles__card-front,
  .tiles__card:nth-child(8) .tiles__card-back {
    background-position: 100% 50%;
  }
  .tiles__card:nth-child(9) {
    opacity: 0;
  }
  .tiles__card:nth-child(9) .tiles__card-front,
  .tiles__card:nth-child(9) .tiles__card-back {
    background-position: 0% 100%;
  }
  .tiles__card:nth-child(9) ~ * {
    display: block;
  }
  .tiles__card:nth-child(10) .tiles__card-front,
  .tiles__card:nth-child(10) .tiles__card-back {
    background-position: 33.333% 100%;
  }
  .tiles__card:nth-child(11) {
    opacity: 0;
  }
  .tiles__card:nth-child(11) .tiles__card-front,
  .tiles__card:nth-child(11) .tiles__card-back {
    background-position: 66.666% 100%;
  }
  .tiles__card:nth-child(12) .tiles__card-front,
  .tiles__card:nth-child(12) .tiles__card-back {
    background-position: 100% 100%;
  }
  .tiles__card:nth-child(12) ~ * {
    display: none;
  }
}

.tiles__card-flip,
.tiles__card-back,
.tiles__card-front {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.tiles__card-back {
  z-index: 1;
  background: url("/local/templates/leadspace/assets/images/tiles/cover.webp") 0 0 no-repeat;
  background-size: 400% 300%;
  transform: rotateX(-180deg);
}
.tiles__card-front {
  z-index: 2;
  background: url("/local/templates/leadspace/assets/images/tiles/cover.webp") 0 0 no-repeat;
  background-size: 400% 300% !important;
}
.services {
  overflow: hidden;
}
@media (min-width: 768px) {
  .services {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .services {
    margin: 0;
  }
}

.services__head {
  padding: 0 0 4rem;
  margin: 0;
  position: relative;
}
@media (min-width: 768px) {
  .services__head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "title title" "text mark";
    align-items: end;
    gap: 4rem;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .services__head {
    padding: 0 0 7rem;
    gap: 5.5rem;
  }
}

.services__line {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  margin: 0 0 0 -50vw;
  border: none;
  border-bottom: 0.1rem solid #c9c9c9;
}

.services__title {
  display: block;
  margin: 0 0 1.5rem;
  font: 400 2rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 768px) {
  .services__title {
    flex: 0 0 100%;
    margin: 0;
    grid-area: title;
  }
}
@media (min-width: 992px) {
  .services__title {
    font-size: 7.7rem;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.035em;
    margin: 0;
    flex: 0 0 100%;
  }
}

.services__text {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 768px) {
  .services__text {
    margin: 0 auto 0 0;
    grid-area: text;
  }
}
@media (min-width: 992px) {
  .services__text {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 300;
    max-width: 85.2rem;
    margin: 0 auto 0 0;
  }
}

.services__mark {
  display: none;
}
@media (min-width: 768px) {
  .services__mark {
    display: block;
    margin: 0;
    font: 400 1.2rem/1.2 var(--font-secondary);
    text-transform: uppercase;
    color: #8a8a8a;
    grid-area: mark;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .services__mark {
    display: block;
    margin: 0;
    font: 400 2.2rem/1.2 var(--font-secondary);
    text-transform: uppercase;
    color: #8a8a8a;
  }
}

.services__body {
  overflow: hidden;
}
@media (min-width: 768px) {
  .services__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .services__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.services__carousel {
  position: relative;
  font: 400 3.2rem/5rem var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.0275em;
  height: 50svh;
}
@media (min-width: 768px) {
  .services__carousel {
    height: 100vh;
  }
}
@media (min-width: 992px) {
  .services__carousel {
    font-size: 8rem;
    line-height: 10rem;
    font-weight: 400;
  }
}

.services__carousel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  font: 400 3.2rem/5rem var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.0275em;
  height: 10rem;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -5rem 0 0 0;
  perspective: 100rem;
}
.services__carousel-list > li {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.services__carousel-list > li::before {
  content: attr(data-text);
}
@media (min-width: 992px) {
  .services__carousel-list {
    display: flex;
    flex-direction: column;
    font-size: 8rem;
    line-height: 10rem;
    font-weight: 400;
    height: 20rem;
    margin: -10rem 0 0;
  }
}

.services__cards {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  overflow: hidden;
  height: 100svh;
}
@media (min-width: 768px) {
  .services__cards {
    padding: 6rem 0 0;
    height: 100vh;
    overflow: unset;
  }
}
@media (min-width: 992px) {
  .services__cards {
    padding: 12rem 0 0;
  }
}

.services__cards-list {
  position: relative;
  margin: 0;
  padding: 0 0 4.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}
.services__cards-list:nth-child(1) {
  top: 4.5rem;
}
.services__cards-list:nth-child(2) {
  top: 0;
}
.services__cards-list > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 165/174;
  background: #202020;
  color: #fff;
  border-radius: 0.8rem;
  padding: 2rem;
}
.services__cards-list > li:nth-child(6) ~ * {
  display: none;
}
@media (min-width: 768px) {
  .services__cards-list > li:nth-child(6) ~ * {
    display: flex;
  }
}
@media (min-width: 992px) {
  .services__cards-list {
    gap: 1.2rem;
    font-size: 3.4rem;
    padding: 0 0 20rem;
  }
  .services__cards-list:nth-child(1) {
    top: 0;
  }
  .services__cards-list:nth-child(2) {
    top: 15rem;
  }
  .services__cards-list > li {
    border-radius: 2rem;
    aspect-ratio: 436/460;
  }
}

.approaches {
  background: #202020;
  color: #fff;
  padding: 7rem 0;
  margin: 0 0 8rem;
}
@media (min-width: 992px) {
  .approaches {
    padding: 14rem 0 0;
    margin: 0 0 16rem;
  }
}

.approaches__title {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 3.2rem/1.3 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .approaches__title {
    font-size: 9rem;
    margin: 0 0 4rem;
    letter-spacing: -0.015em;
  }
}

.approaches__text {
  display: block;
  margin: 0 0 4.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
}
@media (min-width: 992px) {
  .approaches__text {
    margin: 0 0 6rem;
    max-width: 89rem;
    font-size: 2.4rem;
  }
}

.approaches__tabs {
  position: relative;
}
@media (min-width: 992px) {
  .approaches__tabs {
    will-change: transform;
  }
}

.approaches__tabs-control {
  display: flex;
  margin: 0 0 4rem;
  background: #414141;
  border-radius: 0.8rem;
  position: relative;
  z-index: 100;
}
.approaches__tabs-control::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #202020;
  border: 0.1rem solid #bcbcbc;
  z-index: -1;
  border-radius: inherit;
  transition: 0.4s;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 0;
}
.approaches__tabs-control:has(.approaches__tabs-btn.is-active:nth-child(1))::before {
  transform: translate(0%, 0);
  opacity: 1;
}
.approaches__tabs-control:has(.approaches__tabs-btn.is-active:nth-child(2))::before {
  transform: translate(100%, 0);
  opacity: 1;
}
@media (min-width: 992px) {
  .approaches__tabs-control {
    display: none;
  }
}

.approaches__tabs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50%;
  height: 4.8rem;
  padding: 0 0.8rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  color: #949494;
  border-radius: 0.8rem;
  transition: 0.2s;
}
.approaches__tabs-btn:hover {
  color: #fff;
}
.approaches__tabs-btn.is-active {
  color: #fff;
}

.approaches__tabs-wrapper {
  position: relative;
}
@media (min-width: 992px) {
  .approaches__tabs-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    height: auto;
    aspect-ratio: 1920/892;
    position: relative;
  }
  .approaches__tabs-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -7rem;
    right: -7rem;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='1920' height='892' viewBox='0 0 1920 892' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-inside-1_1_786' fill='white'%3E%3Cpath d='M1323.5 893C1323.5 845.133 1314.08 797.735 1295.79 753.512C1277.5 709.289 1250.69 669.106 1216.89 635.26C1183.09 601.413 1142.96 574.564 1098.8 556.246C1054.63 537.928 1007.3 528.5 959.5 528.5L959.5 893L1323.5 893Z'/%3E%3C/mask%3E%3Cpath d='M1323.5 893C1323.5 845.133 1314.08 797.735 1295.79 753.512C1277.5 709.289 1250.69 669.106 1216.89 635.26C1183.09 601.413 1142.96 574.564 1098.8 556.246C1054.63 537.928 1007.3 528.5 959.5 528.5L959.5 893L1323.5 893Z' stroke='white' stroke-opacity='0.2' stroke-width='2' mask='url(%23path-1-inside-1_1_786)'/%3E%3Cmask id='path-2-inside-2_1_786' fill='white'%3E%3Cpath d='M959.5 326C1034.94 326 1109.65 340.86 1179.35 369.731C1249.05 398.603 1312.39 440.92 1365.73 494.267C1419.08 547.614 1461.4 610.947 1490.27 680.648C1519.14 750.35 1534 825.056 1534 900.5L959.5 900.5L959.5 326Z'/%3E%3C/mask%3E%3Cpath d='M959.5 326C1034.94 326 1109.65 340.86 1179.35 369.731C1249.05 398.603 1312.39 440.92 1365.73 494.267C1419.08 547.614 1461.4 610.947 1490.27 680.648C1519.14 750.35 1534 825.056 1534 900.5L959.5 900.5L959.5 326Z' stroke='white' stroke-opacity='0.1' stroke-width='2' mask='url(%23path-2-inside-2_1_786)'/%3E%3Cmask id='path-3-inside-3_1_786' fill='white'%3E%3Cpath d='M1847 894C1847 777.386 1824.03 661.914 1779.41 554.177C1734.78 446.44 1669.37 348.547 1586.91 266.089C1504.45 183.631 1406.56 118.221 1298.82 73.5949C1191.09 28.9687 1075.61 5.99995 959 5.99996L959 894L1847 894Z'/%3E%3C/mask%3E%3Cpath d='M1847 894C1847 777.386 1824.03 661.914 1779.41 554.177C1734.78 446.44 1669.37 348.547 1586.91 266.089C1504.45 183.631 1406.56 118.221 1298.82 73.5949C1191.09 28.9687 1075.61 5.99995 959 5.99996L959 894L1847 894Z' stroke='white' stroke-opacity='0.1' stroke-width='2' mask='url(%23path-3-inside-3_1_786)'/%3E%3Cg opacity='0.7'%3E%3Cmask id='path-4-inside-4_1_786' fill='white'%3E%3Cpath d='M596 893C596 845.133 605.415 797.735 623.708 753.512C642.001 709.289 668.813 669.106 702.613 635.26C736.414 601.413 776.541 574.564 820.703 556.246C864.866 537.928 912.199 528.5 960 528.5L960 893L596 893Z'/%3E%3C/mask%3E%3Cpath d='M596 893C596 845.133 605.415 797.735 623.708 753.512C642.001 709.289 668.813 669.106 702.613 635.26C736.414 601.413 776.541 574.564 820.703 556.246C864.866 537.928 912.199 528.5 960 528.5L960 893L596 893Z' stroke='white' stroke-width='2' stroke-dasharray='10 10' mask='url(%23path-4-inside-4_1_786)'/%3E%3Cg filter='url(%23filter0_f_1_786)'%3E%3Cmask id='path-5-inside-5_1_786' fill='white'%3E%3Cpath d='M596 893C596 845.133 605.415 797.735 623.708 753.512C642.001 709.289 668.813 669.106 702.613 635.26C736.414 601.413 776.541 574.564 820.703 556.246C864.866 537.928 912.199 528.5 960 528.5L960 893L596 893Z'/%3E%3C/mask%3E%3Cpath d='M596 893C596 845.133 605.415 797.735 623.708 753.512C642.001 709.289 668.813 669.106 702.613 635.26C736.414 601.413 776.541 574.564 820.703 556.246C864.866 537.928 912.199 528.5 960 528.5L960 893L596 893Z' stroke='url(%23paint0_linear_1_786)' stroke-width='2' stroke-dasharray='10 10' mask='url(%23path-5-inside-5_1_786)'/%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.7'%3E%3Cmask id='path-6-inside-6_1_786' fill='white'%3E%3Cpath d='M960 326C884.556 326 809.85 340.86 740.148 369.731C670.447 398.603 607.114 440.92 553.767 494.267C500.42 547.614 458.102 610.947 429.231 680.648C400.36 750.35 385.5 825.056 385.5 900.5L960 900.5L960 326Z'/%3E%3C/mask%3E%3Cpath d='M960 326C884.556 326 809.85 340.86 740.148 369.731C670.447 398.603 607.114 440.92 553.767 494.267C500.42 547.614 458.102 610.947 429.231 680.648C400.36 750.35 385.5 825.056 385.5 900.5L960 900.5L960 326Z' stroke='white' stroke-width='2' stroke-dasharray='12 12' mask='url(%23path-6-inside-6_1_786)'/%3E%3Cg filter='url(%23filter1_f_1_786)'%3E%3Cmask id='path-7-inside-7_1_786' fill='white'%3E%3Cpath d='M960 326C884.556 326 809.85 340.86 740.148 369.731C670.447 398.603 607.114 440.92 553.767 494.267C500.42 547.614 458.102 610.947 429.231 680.648C400.36 750.35 385.5 825.056 385.5 900.5L960 900.5L960 326Z'/%3E%3C/mask%3E%3Cpath d='M960 326C884.556 326 809.85 340.86 740.148 369.731C670.447 398.603 607.114 440.92 553.767 494.267C500.42 547.614 458.102 610.947 429.231 680.648C400.36 750.35 385.5 825.056 385.5 900.5L960 900.5L960 326Z' stroke='url(%23paint1_linear_1_786)' stroke-width='2' stroke-dasharray='12 12' mask='url(%23path-7-inside-7_1_786)'/%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.7'%3E%3Cmask id='path-8-inside-8_1_786' fill='white'%3E%3Cpath d='M72.5 894C72.5 777.386 95.4687 661.914 140.095 554.177C184.721 446.44 250.131 348.547 332.589 266.089C415.048 183.631 512.94 118.221 620.677 73.5949C728.414 28.9687 843.886 5.99995 960.5 5.99996L960.5 894L72.5 894Z'/%3E%3C/mask%3E%3Cpath d='M72.5 894C72.5 777.386 95.4687 661.914 140.095 554.177C184.721 446.44 250.131 348.547 332.589 266.089C415.048 183.631 512.94 118.221 620.677 73.5949C728.414 28.9687 843.886 5.99995 960.5 5.99996L960.5 894L72.5 894Z' stroke='white' stroke-width='2' stroke-miterlimit='3.99933' stroke-dasharray='18 18' mask='url(%23path-8-inside-8_1_786)'/%3E%3Cg filter='url(%23filter2_f_1_786)'%3E%3Cmask id='path-9-inside-9_1_786' fill='white'%3E%3Cpath d='M72.5 894C72.5 777.386 95.4687 661.914 140.095 554.177C184.721 446.44 250.131 348.547 332.589 266.089C415.048 183.631 512.94 118.221 620.677 73.5949C728.414 28.9687 843.886 5.99995 960.5 5.99996L960.5 894L72.5 894Z'/%3E%3C/mask%3E%3Cpath d='M72.5 894C72.5 777.386 95.4687 661.914 140.095 554.177C184.721 446.44 250.131 348.547 332.589 266.089C415.048 183.631 512.94 118.221 620.677 73.5949C728.414 28.9687 843.886 5.99995 960.5 5.99996L960.5 894L72.5 894Z' stroke='url(%23paint2_linear_1_786)' stroke-width='2' stroke-dasharray='18 18' mask='url(%23path-9-inside-9_1_786)'/%3E%3C/g%3E%3C/g%3E%3Cline x1='959.75' y1='529' x2='959.75' y2='1246' stroke='%23636363' stroke-width='1.5'/%3E%3Cline x1='959.75' y1='326.998' x2='959.75' y2='528.486' stroke='%23636363' stroke-width='1.5'/%3E%3Cline x1='959.75' y1='7' x2='959.75' y2='326' stroke='%23636363' stroke-width='1.5'/%3E%3Cline x1='960' y1='528.486' x2='960' y2='529.5' stroke='%23A6A6A6' stroke-width='2'/%3E%3Cline x1='959.885' y1='325.989' x2='959.885' y2='326.998' stroke='%23636363' stroke-width='2'/%3E%3Cline x1='960' y1='5.99512' x2='960' y2='7' stroke='%234D4D4D' stroke-width='2'/%3E%3Cdefs%3E%3Cfilter id='filter0_f_1_786' x='590' y='522.5' width='376' height='376.5' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1_786'/%3E%3C/filter%3E%3Cfilter id='filter1_f_1_786' x='379.5' y='320' width='586.5' height='586.5' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1_786'/%3E%3C/filter%3E%3Cfilter id='filter2_f_1_786' x='66.5' y='0' width='900' height='900' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_1_786'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_1_786' x1='688' y1='646' x2='864' y2='780' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_1_786' x1='532.5' y1='542.5' x2='839' y2='739' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_1_786' x1='440' y1='221.5' x2='811' y2='393' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
  }
}

.approaches__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.5rem;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.approaches__card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}
@media (min-width: 992px) {
  .approaches__card {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: unset;
    gap: 0;
    padding: 1.5rem 0 14rem;
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.5);
  }
  .approaches__card > *:not(.approaches__card-arrow) {
    transition: filter 0.4s;
    filter: blur(1rem);
  }
  .approaches__card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 100;
    background: rgba(32, 32, 32, 0.4);
    transition: 0.4s;
    pointer-events: none;
  }
  .approaches__card.is-active {
    color: #fff;
  }
  .approaches__card.is-active::before {
    opacity: 0;
  }
  .approaches__card.is-active .approaches__card-arrow {
    opacity: 0;
  }
  .approaches__card.is-active > * {
    filter: blur(0);
  }
  .approaches__card:first-child .approaches__card-title {
    text-align: left;
    margin-left: 7rem;
  }
  .approaches__card:first-child .approaches__card-list > li:nth-child(1) {
    max-width: 45.5rem;
    margin: 0 0 0 39rem;
  }
  .approaches__card:first-child .approaches__card-list > li:nth-child(1)::before {
    top: 3rem;
  }
  .approaches__card:first-child .approaches__card-list > li:nth-child(1)::after {
    top: 2.5rem;
  }
  .approaches__card:first-child .approaches__card-list > li:nth-child(2) {
    margin: 0 0 0 25.5rem;
  }
  .approaches__card:first-child .approaches__card-list > li:nth-child(3) {
    margin: 0 0 0 16.5rem;
  }
  .approaches__card:first-child .approaches__card-info {
    padding: 0 2rem 0 4.5rem;
  }
  .approaches__card:last-child .approaches__card-title {
    text-align: right;
    margin-right: 7rem;
  }
  .approaches__card:last-child .approaches__card-list {
    align-items: flex-end;
  }
  .approaches__card:last-child .approaches__card-list > li {
    padding: 2rem 0.5rem 1.5rem 0;
  }
  .approaches__card:last-child .approaches__card-list > li::before {
    left: 100%;
    right: auto;
    background: linear-gradient(to bottom right, transparent calc(50% - 0.1rem), #fff, transparent calc(50% + 0.1rem));
  }
  .approaches__card:last-child .approaches__card-list > li::after {
    left: auto;
    right: -4.5rem;
  }
  .approaches__card:last-child .approaches__card-list > li:nth-child(1) {
    margin: 0 43rem 0 0;
  }
  .approaches__card:last-child .approaches__card-list > li:nth-child(2) {
    margin: 0 28rem 0 0;
  }
  .approaches__card:last-child .approaches__card-list > li:nth-child(3) {
    margin: 0 18.5rem 0 0;
  }
  .approaches__card:last-child .approaches__card-info {
    padding: 0 2rem 0 4.5rem;
  }
}

.approaches__card-arrow {
  display: none;
}
@media (min-width: 992px) {
  .approaches__card-arrow {
    display: block;
    width: 13.2rem;
    height: 13.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6.6rem 0 0 -6.6rem;
    transition: opacity 0.4s;
    z-index: 200;
    pointer-events: none;
  }
}

.approaches__card-title {
  display: none;
}
@media (min-width: 992px) {
  .approaches__card-title {
    display: block;
    margin: 0 0 7.5rem;
    font-size: 5.4rem;
    line-height: 1;
    font-weight: 600;
  }
}

.approaches__card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.15;
  font-weight: 500;
}
.approaches__card-list > li {
  padding: 1.2rem 0 0.8rem;
  margin: 0 0 0 4.5rem;
  position: relative;
  border-bottom: 0.1rem solid currentColor;
  will-change: transform;
}
.approaches__card-list > li::before, .approaches__card-list > li::after {
  content: "";
  display: block;
  pointer-events: none;
}
.approaches__card-list > li::before {
  width: 3.5rem;
  height: auto;
  position: absolute;
  top: 1.2rem;
  bottom: 0;
  right: 100%;
  background: linear-gradient(to top right, transparent calc(50% - 0.1rem), #fff, transparent calc(50% + 0.1rem));
}
.approaches__card-list > li::after {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 0.1rem solid #4d4d4d;
  box-shadow: inset 0 0 0 0.5rem #202020;
  background: #fff;
  position: absolute;
  top: 0;
  left: -4.5rem;
}
.approaches__card-list br {
  display: none;
}
@media (min-width: 992px) {
  .approaches__card-list {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 400;
    gap: 6rem;
    align-items: flex-start;
    margin: 0 0 13.5rem;
  }
  .approaches__card-list > li {
    max-width: 51rem;
    padding: 2rem 0 1.5rem 0.5rem;
    text-align: center;
  }
  .approaches__card-list br {
    display: block;
  }
}

.approaches__card-info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 700;
}
.approaches__card-info > li:first-child {
  font-size: 3.8rem;
}
.approaches__card-info > li:nth-child(even) {
  margin: 0 0 0 auto;
  text-align: right;
}
.approaches__card-info small {
  display: block;
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
}
.approaches__card-info sub {
  font-size: 3.4rem;
  bottom: 0;
}
@media (min-width: 768px) {
  .approaches__card-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
  .approaches__card-info > li:nth-child(even) {
    margin: 0;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .approaches__card-info {
    font-size: 6.4rem;
    line-height: 1.3;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
  .approaches__card-info > li:first-child {
    font-size: inherit;
  }
  .approaches__card-info > li:nth-child(even) {
    margin: 0;
    text-align: left;
  }
  .approaches__card-info small {
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 400;
  }
  .approaches__card-info sub {
    font-size: 3.6rem;
  }
}

.solutions {
  position: relative;
  padding: 0 0 8rem;
}
@media (min-width: 992px) {
  .solutions {
    padding: 0 0 18rem;
  }
}

.solutions__head {
  margin: 0 0 4.5rem;
}
@media (min-width: 768px) {
  .solutions__head {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .solutions__head {
    display: flex;
    align-items: flex-end;
    margin: 0 0 5rem;
    gap: 2rem;
  }
}

.solutions__title {
  display: block;
  margin: 0 0 3rem;
  font: 400 3.2rem/1.3 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .solutions__title {
    flex: 1;
    margin: 0 auto 0 0;
  }
}
@media (min-width: 992px) {
  .solutions__title {
    font-size: 9rem;
    margin: 0 auto 0 0;
    flex: 1;
    max-width: 104rem;
  }
}

.solutions__text {
  display: block;
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 600;
}
.solutions__text small {
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .solutions__text {
    flex: 0 0 auto;
  }
}
@media (min-width: 992px) {
  .solutions__text {
    font-size: 6.2rem;
    margin: 0 0 2.5rem;
  }
  .solutions__text small {
    font-size: 3.4rem;
    margin: 0 0 0.5rem;
  }
}

.solutions__swiper .swiper {
  overflow: unset;
  padding: 0 1.4rem 0 0;
  margin: 0 -0.6rem;
}
.solutions__swiper .swiper-slide {
  width: 32.6rem;
  padding: 0 0.6rem;
}
.solutions__swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 3rem 0 0 0;
}
.solutions__swiper .swiper-pagination-bullet {
  display: block;
  flex: 0 0 auto;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #c0c0c0;
}
.solutions__swiper .swiper-pagination-bullet-active {
  background: linear-gradient(to bottom, rgb(129, 72, 236) 0%, rgb(234, 163, 138) 100%);
}
@media (min-width: 992px) {
  .solutions__swiper .swiper {
    padding: 0;
    margin: 0;
  }
  .solutions__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    transform: unset !important;
  }
  .solutions__swiper .swiper-slide {
    padding: 0;
    width: 100%;
  }
  .solutions__swiper .swiper-pagination {
    display: none;
  }
}

.solutions__card {
  display: block;
  background: #d9d9d9;
  color: #101010;
  border-radius: 1.1rem;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 326/278;
  text-decoration: none;
  position: relative;
}
.solutions__card:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .solutions__card:hover .solutions__card-image {
    transform: scale(1.05);
  }
  .solutions__card:hover .solutions__card-image img {
    filter: grayscale(0%);
  }
}
@media (min-width: 992px) {
  .solutions__card {
    border-radius: 3rem;
    aspect-ratio: 884/863;
  }
  .solutions__card:hover .solutions__card-btn {
    color: #fff;
  }
  .solutions__card:hover .solutions__card-btn::before {
    opacity: 1;
  }
  .solutions__card:hover .solutions__card-btn-caption {
    opacity: 0;
  }
  .solutions__card:hover .solutions__card-btn-arrow {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.solutions__card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: 0.4s;
}
.solutions__card-image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: inherit;
  z-index: 5;
  will-change: transform;
}
.solutions__card-image img {
  position: relative;
  top: -20%;
  display: block;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
@media (hover: hover) {
  .solutions__card-image img {
    filter: grayscale(100%);
    transition: filter 0.4s;
  }
}

.solutions__card-desc {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1.5rem);
  -webkit-backdrop-filter: blur(1.5rem);
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .solutions__card-desc {
    left: 2.2rem;
    right: 2.2rem;
    bottom: 2.2rem;
    border-radius: 2rem;
  }
}

.solutions__card-title {
  display: block;
  margin: 0;
  padding: 1rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 992px) {
  .solutions__card-title {
    padding: 3rem;
    font-size: 3.8rem;
  }
}

.solutions__card-btn {
  display: flex;
  align-items: center;
  height: 3.5rem;
  border-radius: 0.8rem;
  position: relative;
  z-index: 1;
  padding: 0 0.8rem 0 1rem;
  color: #fff;
  overflow: hidden;
  transition: 0.2s;
}
.solutions__card-btn::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(130, 71, 237, 0.7) 0%, #eb8f73 100%), conic-gradient(from 90deg, rgba(255, 255, 255, 0) 0deg, rgba(0, 0, 0, 0.2) 72deg, rgba(255, 255, 255, 0.2) 144deg, rgba(0, 0, 0, 0.2) 216deg, rgba(255, 255, 255, 0.2) 288deg, rgba(0, 0, 0, 0.2) 360deg);
  background-blend-mode: difference;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .solutions__card-btn {
    height: 9.4rem;
    border-radius: 2rem;
    padding: 0 2rem 0 3rem;
    color: #101010;
  }
  .solutions__card-btn::before {
    opacity: 0;
  }
}

.solutions__card-btn-text {
  display: block;
  flex: 1;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
}
.solutions__card-btn-text b {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .solutions__card-btn-text {
    font-size: 2.8rem;
  }
  .solutions__card-btn-text b {
    font-size: 3.4rem;
  }
}

.solutions__card-btn-caption {
  display: none;
}
@media (min-width: 992px) {
  .solutions__card-btn-caption {
    display: block;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 400;
    text-align: right;
    transition: 0.2s;
  }
}

.solutions__card-btn-arrow {
  display: block;
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .solutions__card-btn-arrow {
    position: absolute;
    top: 50%;
    right: 2rem;
    margin: -3.2rem 0 0 0;
    width: 6.5rem;
    height: 6.5rem;
    transition: 0.4s;
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
}

.individual {
  padding: 0 0 12rem;
  position: relative;
}
@media (min-width: 992px) {
  .individual {
    margin: 0 0 25vh;
    padding: 0 0 16rem;
  }
}

.individual__shutters {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  pointer-events: none;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.individual__shutters-slide {
  background: #202020;
  transform: scaleY(0);
  flex: 1;
  margin: -0.1rem 0;
  display: block;
  transform-origin: center bottom;
}

.individual__head {
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 992px) {
  .individual__head {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    padding: 12rem 0 8rem;
  }
}

.individual__line {
  display: block;
  position: absolute;
  left: 50%;
  width: 100vw;
  margin: 0 0 0 -50vw;
  border: none;
  border-bottom: 0.1rem solid #c9c9c9;
}
.individual__line:first-child {
  top: 0;
}
.individual__line:last-child {
  bottom: 0;
}

.individual__title {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 3.2rem/1.3 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .individual__title {
    font-size: 9rem;
    margin: 0 auto 0 0;
    max-width: 100rem;
  }
}

.individual__text {
  display: block;
  margin: 0 0 0 10.5rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: right;
}
.individual__text b {
  font-weight: 500;
}
@media (min-width: 992px) {
  .individual__text {
    margin: 0 0 3.5rem;
    font-size: 2.8rem;
  }
  .individual__text b {
    display: block;
  }
}

.individual__body {
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .individual__body {
    margin: 0 0 80px;
  }
}

.individual__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.individual__list > li {
  position: relative;
}
.individual__list > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  margin: 0 0 0 -50vw;
  border-bottom: 0.1rem solid #c9c9c9;
}
@media (min-width: 992px) {
  .individual__list > li:nth-child(even) .individual__card {
    padding: 4rem 50% 4rem 0;
  }
  .individual__list > li:nth-child(even) .individual__card-number {
    left: auto;
    right: 0;
  }
  .individual__list > li:nth-child(even) .individual__card-arrow {
    left: auto;
    right: 33.333%;
    transform: rotate(180deg);
  }
}

.individual__card.is-open .individual__card-toggle svg {
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  .individual__card {
    min-height: 42.5rem;
    padding: 4rem 0 4rem 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
  }
}

.individual__card-head {
  position: relative;
  padding: 4.7rem 3rem 4.7rem 9.2rem;
  min-height: 12.4rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 992px) {
  .individual__card-head {
    padding: 0;
    position: static;
    cursor: initial;
    min-height: auto;
  }
}

.individual__card-number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 9.2rem;
  height: 100%;
  font: 300 6rem/1 var(--font-secondary);
  padding: 0 0 0.7rem;
}
@media (min-width: 992px) {
  .individual__card-number {
    position: relative;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    font-size: 37.5rem;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

.individual__card-arrow {
  display: none;
}
@media (min-width: 992px) {
  .individual__card-arrow {
    display: block;
    width: 12rem;
    height: 12rem;
    flex: 0 0 auto;
    position: absolute;
    top: 50%;
    left: 33.333%;
    margin: -6rem -6rem 0 -6rem;
  }
  .individual__card-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.individual__card-title {
  display: block;
  margin: 0 -0.5rem 0 0;
  flex: 1;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .individual__card-title {
    font-size: 3.8rem;
    margin: 0;
  }
}

.individual__card-toggle {
  display: block;
  flex: 0 0 auto;
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: 50%;
  right: -0.5rem;
  margin: -1.7rem 0 0 0;
  overflow: hidden;
}
.individual__card-toggle svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.2s;
}
@media (min-width: 992px) {
  .individual__card-toggle {
    visibility: hidden;
  }
}

.individual__card-body {
  display: none;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
}
.individual__card-body p {
  margin: 0 0 10px;
}
.individual__card-body p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .individual__card-body {
    display: block;
    font-size: 2.4rem;
  }
}

.individual__card-body-in {
  padding: 0 0 40px;
}
@media (min-width: 992px) {
  .individual__card-body-in {
    padding: 0;
  }
}

.individual__foot .ui-btn {
  width: 100%;
}
@media (min-width: 992px) {
  .individual__foot {
    text-align: center;
  }
  .individual__foot .ui-btn {
    width: auto;
    height: 7.5rem;
    padding: 0 4.6rem;
    font-size: 3.2rem;
    border-radius: 2rem;
  }
}

.cases {
  position: relative;
  z-index: 700;
  background: #202020;
  color: #fff;
  padding: 6rem 0 3rem;
  margin: 0 0 8rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cases {
    padding: 14.5rem 0 0;
    margin: 0 0 19rem;
  }
  .cases > .container-fluid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "mark ." "tiles desc" "tiles counter" "tagline tagline" "marquee marquee";
    gap: 0 1.2rem;
  }
}

.cases__cube {
  display: block;
  z-index: -1;
  background: url(../assets/images/cases/cube.webp) center center no-repeat;
  background-size: contain;
  will-change: transform;
}
.cases__cube--01 {
  position: absolute;
  bottom: 27.6rem;
  right: 100%;
  width: 14.8rem;
  height: 12.6rem;
  transform: rotate(120deg);
  margin: 0 -6.5rem 0 0;
}
.cases__cube--02 {
  position: absolute;
  left: 100%;
  bottom: 5.4rem;
  width: 12rem;
  height: 10.8rem;
  margin: 0 0 0 -6.7rem;
}
@media (min-width: 992px) {
  .cases__cube--01 {
    width: 52.8rem;
    height: 44.8rem;
    bottom: 18.8rem;
    margin: 0 -21.5rem 21.5rem 0;
  }
  .cases__cube--02 {
    width: 40rem;
    height: 34rem;
    top: 74.8rem;
    left: 100%;
    right: auto;
    bottom: auto;
    margin: 11.5rem 0 0 -24.7rem;
  }
}

.cases__mark {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 1.2rem/1 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .cases__mark {
    font-size: 2.2rem;
    margin: 0 0 8rem;
    grid-area: mark;
  }
}

.cases__desc {
  margin: 0 0 4rem;
}
@media (min-width: 992px) {
  .cases__desc {
    padding: 3rem 0 0;
    margin: 0 0 0 auto;
    text-align: right;
    grid-area: desc;
    max-width: 68.6rem;
  }
}

.cases__title {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 3.2rem/1.3 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .cases__title {
    font-size: 9rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 2.5rem;
  }
}

.cases__text {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
}
@media (min-width: 992px) {
  .cases__text {
    margin: 0;
    font-size: 2.2rem;
  }
}

@media (min-width: 992px) {
  .cases__tiles {
    grid-area: tiles;
  }
}

.cases__tags {
  display: none;
}
@media (min-width: 992px) {
  .cases__tags {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 300;
    text-align: center;
  }
  .cases__tags > li:first-child {
    text-align: left;
  }
  .cases__tags > li:last-child {
    text-align: right;
  }
}

.cases__list {
  margin: 0 0 7rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.cases__list > li:nth-child(3) ~ li {
  display: none;
}
@media (min-width: 768px) {
  .cases__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .cases__list > li:nth-child(3) ~ li {
    display: block;
  }
}
@media (min-width: 992px) {
  .cases__list {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .cases__list > li:nth-child(3) ~ li {
    display: block;
  }
}

.cases__card {
  background: #fff;
  color: #101010;
  border-radius: 1.1rem;
  display: block;
  text-decoration: none;
  position: relative;
}
.cases__card:hover {
  text-decoration: none;
  color: #101010;
}
@media (min-width: 992px) {
  .cases__card {
    border-radius: 3rem;
  }
  .cases__card:hover .cases__card-overlap {
    opacity: 1;
  }
}

.cases__card-btn {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  height: 3.4rem;
  border-radius: 0.8rem;
  padding: 0 4rem;
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cases__card-btn::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(130, 71, 237, 0.7) 0%, #eb8f73 100%), conic-gradient(from 90deg, rgba(255, 255, 255, 0) 0deg, rgba(0, 0, 0, 0.2) 72deg, rgba(255, 255, 255, 0.2) 144deg, rgba(0, 0, 0, 0.2) 216deg, rgba(255, 255, 255, 0.2) 288deg, rgba(0, 0, 0, 0.2) 360deg);
  background-blend-mode: difference;
  transition: 0.2s;
}
.cases__card-btn svg {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  margin: -1.2rem 0 0 0;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .cases__card-btn {
    display: none;
  }
}

.cases__card-overlap {
  display: none;
}
@media (min-width: 992px) {
  .cases__card-overlap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: -0.1rem;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.7);
    transition: 0.2s;
    opacity: 0;
  }
  .cases__card-overlap::before {
    content: "";
    display: block;
    position: absolute;
    inset: 12.5%;
    background: url("data:image/svg+xml,%3Csvg width='216' height='216' viewBox='0 0 216 216' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='108' cy='108' r='77.5' stroke='white' stroke-dasharray='11.32 11.32'/%3E%3Ccircle cx='108' cy='108' r='107.5' stroke='white' stroke-opacity='0.8'/%3E%3C/svg%3E%0A") 50% 50% no-repeat;
    background-size: contain;
    animation: rotate 8s infinite linear;
  }
}

.cases__card-desc {
  padding: 2rem 3rem;
  background: #f1f1f1;
  border-radius: 3rem 3rem 0 0;
}
@media (min-width: 768px) {
  .cases__card-desc {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cases__card-desc {
    height: 9rem;
    padding: 2rem 3rem;
  }
}

.cases__card-title {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 600;
}

.cases__card-text {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 400;
}

.cases__card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20.8rem;
  padding: 2rem 2rem 7.5rem;
}
.cases__card-image img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 992px) {
  .cases__card-image {
    aspect-ratio: unset;
    height: 20.8rem;
    padding: 2rem;
    max-height: 20rem;
  }
}

.cases__place {
  border-radius: 3rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(90deg, rgba(130, 71, 237, 0.7) 0%, #eb8f73 100%), conic-gradient(from 90deg, rgba(255, 255, 255, 0) 0deg, rgba(0, 0, 0, 0.2) 72deg, rgba(255, 255, 255, 0.2) 144deg, rgba(0, 0, 0, 0.2) 216deg, rgba(255, 255, 255, 0.2) 288deg, rgba(0, 0, 0, 0.2) 360deg);
  background-blend-mode: difference;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cases__place {
    aspect-ratio: unset;
    width: 100%;
    height: auto;
    min-height: 100%;
  }
}

.cases__place-title {
  display: block;
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.cases__counter {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 12rem;
  float: right;
}
@media (min-width: 992px) {
  .cases__counter {
    margin: auto 0 0 auto;
    grid-area: counter;
    gap: 3rem;
  }
}

.cases__counter-number {
  display: block;
  flex: 0 0 auto;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 300;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cases__counter-number {
    font-size: 10rem;
  }
}

.cases__counter-text {
  display: block;
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
@media (min-width: 992px) {
  .cases__counter-text {
    font-size: 2.4rem;
  }
}

.cases__tagline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 1.9rem;
  line-height: 1.3;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 12rem;
  clear: both;
}
@media (min-width: 992px) {
  .cases__tagline {
    grid-area: tagline;
    font-size: 4.9rem;
    margin: 24rem 0 11.5rem;
    gap: 4rem;
  }
}

.cases__tagline-row {
  position: relative;
  z-index: 2;
}
.cases__tagline-row:nth-child(even) {
  text-align: right;
}
@media (min-width: 768px) {
  .cases__tagline-row br {
    display: none;
  }
}
@media (min-width: 992px) {
  .cases__tagline-row {
    padding: 0;
  }
  .cases__tagline-row:nth-child(odd) {
    text-indent: 22rem;
  }
}

.cases__marquee {
  display: flex;
  align-items: center;
  width: 100vw;
  position: relative;
  left: 50%;
  margin: 0 0 0.5rem -50vw;
}
@media (min-width: 992px) {
  .cases__marquee {
    height: 19.6rem;
    grid-area: marquee;
  }
}

.cases__marquee-anim {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  will-change: transform;
}

.cases__marquee-text {
  display: block;
  flex: 0 0 auto;
  margin: 0 1.5rem;
  font: 300 1.6rem/1 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .cases__marquee-text {
    font-size: 5rem;
    margin: 0 4rem;
  }
}

.cases__marquee-line {
  display: block;
  flex: 0 0 auto;
  margin: 0 1.5rem;
  width: 11rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='335' height='22' viewBox='0 0 335 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.466146 11.2119C0.466146 17.103 5.24178 21.8786 11.1328 21.8786C17.0238 21.8786 21.7995 17.103 21.7995 11.2119C21.7995 5.32088 17.0238 0.545247 11.1328 0.545247C5.24178 0.545247 0.466146 5.32088 0.466146 11.2119ZM313.511 11.2119C313.511 17.103 318.286 21.8786 324.177 21.8786C330.068 21.8786 334.844 17.103 334.844 11.2119C334.844 5.32088 330.068 0.545247 324.177 0.545247C318.286 0.545247 313.511 5.32088 313.511 11.2119ZM11.1328 11.2119V13.2119H324.177V11.2119V9.21191H11.1328V11.2119Z' fill='white' fill-opacity='0.7'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (min-width: 992px) {
  .cases__marquee-line {
    margin: 0 5rem;
    width: 33.5rem;
    height: 2.2rem;
  }
}

.about {
  margin: 0 0 8.5rem;
}
@media (min-width: 992px) {
  .about {
    margin: 0 0 18.5rem;
  }
}

.about__head {
  position: relative;
  padding: 0 0 5rem;
}
@media (min-width: 992px) {
  .about__head {
    overflow: hidden;
    padding: 0 0 7.5rem;
  }
}

.about__mark {
  display: block;
  margin: 0 0 6rem;
  font: 400 1.2rem/1 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .about__mark {
    font-size: 2.2rem;
    margin: 0 0 8.5rem;
  }
}

.about__title {
  display: block;
  margin: 0 0 2rem;
  font: 300 1.9rem/1.3 var(--font-secondary);
}
.about__title b {
  font-weight: 400;
}
@media (min-width: 992px) {
  .about__title {
    font-size: 5.7rem;
    margin: 0 0 4rem;
  }
}

.about__text {
  display: block;
  margin: 0 0 0 0.5rem;
  font: 300 1.6rem/1.3 var(--font-secondary);
  text-align: right;
}
.about__text b {
  font-weight: 400;
}
.about__text br {
  display: none;
}
@media (min-width: 768px) {
  .about__text br {
    display: block;
  }
}
@media (min-width: 992px) {
  .about__text {
    font-size: 5rem;
    margin: 0;
    float: right;
    text-align: right;
  }
}

.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about__list > li {
  position: relative;
}
.about__list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  margin: 0 0 0 -50vw;
  border-bottom: 0.1rem solid #c9c9c9;
}
@media (min-width: 992px) {
  .about__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }
  .about__list::before, .about__list::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 100vw;
    margin: 0 0 0 -50vw;
    border-bottom: 0.1rem solid #c9c9c9;
  }
  .about__list::before {
    top: 0;
  }
  .about__list::after {
    bottom: 0;
  }
  .about__list > li {
    border-right: 0.1rem solid #c9c9c9;
  }
  .about__list > li:last-child {
    border: none;
  }
  .about__list > li::before {
    display: none;
  }
}

.about__card {
  padding: 2.4rem 0;
  min-height: 26rem;
  text-align: center;
}
@media (min-width: 992px) {
  .about__card {
    padding: 3rem 6rem 6rem;
    min-height: 51.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
}

.about__card-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 16rem;
  line-height: 1;
  font-weight: 300;
  white-space: nowrap;
  margin: 0 0 0.8rem;
  gap: 1rem;
}
.about__card-title sub {
  position: relative;
  top: -0.1em;
  bottom: auto;
  font-size: 10rem;
  line-height: 1;
  font-weight: 300;
}
.about__card-title span {
  display: block;
}
@media (min-width: 992px) {
  .about__card-title {
    font-size: 23rem;
    margin: 0;
    gap: 2rem;
    justify-content: flex-start;
  }
  .about__card-title sub {
    font-size: 9rem;
    top: -0.25em;
  }
}

.about__card-text {
  display: block;
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  white-space: normal;
}
@media (min-width: 992px) {
  .about__card-text {
    font-size: 3.4rem;
    max-width: 100%;
  }
}

.certificates {
  margin: 0 0 6rem;
}
@media (min-width: 992px) {
  .certificates {
    margin: 0 0 13.5rem;
  }
}

.certificates__head {
  margin: 0 0 4rem;
}
@media (min-width: 992px) {
  .certificates__head {
    margin: 0 0 6rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "mark mark" "title text";
    align-items: end;
  }
}

.certificates__mark {
  display: block;
  margin: 0 0 6rem;
  font: 400 1.2rem/1.3 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .certificates__mark {
    font-size: 2.2rem;
    grid-area: mark;
    margin: 0 0 10rem;
  }
}

.certificates__title {
  display: block;
  margin: 0;
  font: 400 3.2rem/1.3 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .certificates__title {
    font-size: 9rem;
    grid-area: title;
  }
}

.certificates__text {
  display: none;
}
@media (min-width: 992px) {
  .certificates__text {
    display: block;
    margin: 0 0 3rem;
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 400;
    text-align: right;
    max-width: 73.2rem;
    grid-area: text;
  }
}

.certificates__swiper {
  padding: 0 1rem 0 0;
}
.certificates__swiper .swiper {
  overflow: unset;
  margin: 0 -0.6rem;
}
.certificates__swiper .swiper-slide {
  width: 17.6rem;
  padding: 0 0.6rem;
  max-width: 100%;
}
.certificates__swiper .swiper-slide:has(.is-dual) {
  width: 34.2rem;
}
.certificates__swiper .swiper-control {
  display: none;
}
@media (min-width: 992px) {
  .certificates__swiper {
    padding: 0;
  }
  .certificates__swiper .swiper {
    margin: 0 -0.7rem;
  }
  .certificates__swiper .swiper-slide {
    padding: 0 0.7rem;
    width: 22.5%;
    transition: opacity 0.4s;
    opacity: 0;
  }
  .certificates__swiper .swiper-slide:has(.is-dual) {
    width: 55%;
  }
  .certificates__swiper .swiper-slide-visible {
    opacity: 1;
  }
  .certificates__swiper .swiper-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16rem;
  }
}

.certificates__card {
  display: block;
  text-decoration: none;
  color: #080808;
}
.certificates__card:hover {
  text-decoration: none;
  color: #080808;
}
.certificates__card:hover .certificates__card-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .certificates__card.is-dual .certificates__card-image {
    aspect-ratio: 966/683;
    margin: 0 0 3rem;
  }
  .certificates__card.is-dual .certificates__card-title {
    font-size: 2.8rem;
  }
  .certificates__card.is-dual .certificates__card-time {
    font-size: 2.2rem;
  }
}

.certificates__card-image {
  width: 100%;
  height: 23.3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 0.1rem solid #c9c9c9;
  margin: 0 0 1.2rem;
}
.certificates__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
  filter: grayscale(100%);
}
@media (min-width: 992px) {
  .certificates__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 393/557;
    margin: 0 0 2rem;
    border-radius: 3rem;
  }
}

@media (min-width: 992px) {
  .certificates__card-desc {
    padding: 0 1rem;
  }
}

.certificates__card-title {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (min-width: 992px) {
  .certificates__card-title {
    font-size: 2rem;
  }
}

.certificates__card-time {
  display: block;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .certificates__card-time {
    font-size: 1.8rem;
  }
}

.team {
  margin: 0 0 5rem;
}
@media (min-width: 992px) {
  .team {
    margin: 0 0 18rem;
  }
}

.team__head {
  position: relative;
  padding: 0 0 3rem;
  margin: 0 0 3rem;
}
@media (min-width: 992px) {
  .team__head {
    padding: 0 0 6rem;
    margin: 0 0 6rem;
  }
}

.team__mark {
  display: block;
  margin: 0 0 6rem;
  font: 400 1.2rem/1.3 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .team__mark {
    font-size: 2.2rem;
    margin: 0 0 8rem;
  }
}

.team__title {
  display: block;
  margin: 0;
  font: 300 1.9rem/1.3 var(--font-secondary);
  max-width: 36rem;
}
@media (min-width: 992px) {
  .team__title {
    font-size: 5.7rem;
    max-width: 108rem;
  }
}

.team__line {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  margin: 0 0 0 -50vw;
  border: none;
  border-bottom: 0.1rem solid #c9c9c9;
}

@media (min-width: 992px) {
  .team__body {
    overflow: hidden;
  }
}

.team__text {
  margin: 0 0 4rem 4rem;
  display: block;
  font: 300 1.6rem/1.3 var(--font-secondary);
  text-align: right;
  max-width: 30rem;
  float: right;
}
@media (min-width: 992px) {
  .team__text {
    font-size: 3.2rem;
    margin: 0 0 8rem;
    float: right;
    max-width: 150.8rem;
  }
}

.team__wrapper {
  margin: 0 -1rem;
  padding: 4.8rem 1rem 15.6rem;
  background: linear-gradient(to bottom, rgb(94, 94, 94) 0%, rgb(239, 231, 242) 100%);
  position: relative;
  z-index: 1;
  clear: both;
  overflow: hidden;
}
@media (min-width: 768px) {
  .team__wrapper {
    margin: 0 -3.5rem;
  }
}
@media (min-width: 992px) {
  .team__wrapper {
    margin: 0;
    border-radius: 3rem;
    padding: 0 0 0 42%;
  }
}

.team__cover {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.team__cover img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media (min-width: 992px) {
  .team__cover img {
    position: relative;
    top: -20%;
    height: 120%;
    -o-object-position: left center;
       object-position: left center;
  }
}

.team__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.team__list > li:first-child {
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
}
.team__list > li:last-child {
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
@media (min-width: 768px) {
  .team__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    position: relative;
    top: -0.1rem;
    margin: 0 0 -0.2rem;
  }
  .team__list > li:nth-child(5n-4) {
    grid-column: 1/3;
    grid-row: span 1;
    border-radius: 3rem 0 0 3rem;
  }
  .team__list > li:nth-child(5n-4) .team__card-front {
    display: flex;
    align-items: center;
    height: auto;
    padding: 0;
    gap: 2rem;
  }
  .team__list > li:nth-child(5n-4) .team__card-number {
    font-size: 28rem;
    width: auto;
    position: relative;
    left: -2rem;
    flex: 0 0 auto;
  }
  .team__list > li:nth-child(5n-4) .team__card-title {
    font-size: 2.8rem;
    flex: 1;
  }
  .team__list > li:nth-child(5n-3) {
    grid-column: 3/4;
    grid-row: span 2;
    border-radius: 0 3rem 3rem 3rem;
  }
  .team__list > li:nth-child(5n-3) .team__card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 10rem;
    gap: 4rem;
  }
  .team__list > li:nth-child(5n-3) .team__card-front::before {
    top: auto;
    left: auto;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .team__list > li:nth-child(5n-3) .team__card-number {
    font-size: 38rem;
    flex: 1 1 auto;
    width: 100%;
    text-align: center;
  }
  .team__list > li:nth-child(5n-3) .team__card-title {
    font-size: 2.8rem;
    flex: 1 1 auto;
    width: 100%;
  }
  .team__list > li:nth-child(5n-3) .team__card-back {
    flex-direction: column;
  }
  .team__list > li:nth-child(5n-2) {
    grid-column: 1/2;
    grid-row: span 2;
    border-radius: 3rem 3rem 0 3rem;
  }
  .team__list > li:nth-child(5n-2) .team__card-front {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    padding: 12rem 2rem 0;
    gap: 4rem;
  }
  .team__list > li:nth-child(5n-2) .team__card-front::before {
    top: 1.5rem;
    left: 1.5rem;
    right: auto;
    bottom: auto;
  }
  .team__list > li:nth-child(5n-2) .team__card-number {
    font-size: 38rem;
    flex: 1;
    position: relative;
    top: 2rem;
    width: 100%;
    text-align: center;
  }
  .team__list > li:nth-child(5n-2) .team__card-title {
    font-size: 2.8rem;
    flex: 1;
    width: 100%;
  }
  .team__list > li:nth-child(5n-2) .team__card-back {
    flex-direction: column;
  }
  .team__list > li:nth-child(5n-1) {
    grid-column: 2/3;
    grid-row: span 1;
    border-radius: 0 0 3rem 3rem;
  }
  .team__list > li:nth-child(5n-1) .team__card-front {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    padding: 8rem 2rem 0;
    gap: 2rem;
  }
  .team__list > li:nth-child(5n-1) .team__card-front::before {
    top: 1.5rem;
    left: 50%;
    margin: 0 0 0 -2rem;
    right: auto;
    bottom: auto;
  }
  .team__list > li:nth-child(5n-1) .team__card-number {
    font-size: 28rem;
    flex: 1;
    position: relative;
    top: 0.5rem;
    width: 100%;
  }
  .team__list > li:nth-child(5n-1) .team__card-title {
    font-size: 2.8rem;
    flex: 1;
    width: 100%;
  }
  .team__list > li:nth-child(5n) {
    grid-column: 2/4;
    grid-row: span 1;
    border-radius: 3rem 3rem 3rem 0;
  }
  .team__list > li:nth-child(5n) .team__card-front {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0;
    gap: 2rem;
    padding: 2rem;
  }
  .team__list > li:nth-child(5n) .team__card-front::before {
    left: 1.5rem;
    bottom: 1.5rem;
    right: auto;
    top: auto;
  }
  .team__list > li:nth-child(5n) .team__card-number {
    font-size: 37.3rem;
    width: 21.2rem;
    position: relative;
    flex: 0 0 auto;
  }
  .team__list > li:nth-child(5n) .team__card-title {
    font-size: 3.4rem;
    flex: 1;
  }
}
@media (min-width: 992px) {
  .team__list {
    display: grid;
    grid-template-columns: 286fr 436fr 287fr;
    grid-template-rows: 276fr 367fr 243fr;
    position: relative;
    top: -0.1rem;
    margin: 0 0 -0.2rem;
  }
  .team__list > li:nth-child(5n-4) {
    grid-column: 1/3;
    grid-row: span 1;
    border-radius: 3rem 0 0 3rem;
  }
  .team__list > li:nth-child(5n-4) .team__card:hover .team__card-flip {
   /* <!-- transform: rotateX(180deg); --> */
  }
  .team__list > li:nth-child(5n-4) .team__card-back {
    transform: rotateX(180deg);
  }
  .team__list > li:nth-child(5n-4) .team__card-front {
    display: flex;
    align-items: center;
    height: 27.6rem;
    padding: 0;
    gap: 2rem;
  }
  .team__list > li:nth-child(5n-4) .team__card-number {
    font-size: 43.7rem;
    width: 28.9rem;
    position: relative;
    left: -2rem;
    flex: 0 0 auto;
  }
  .team__list > li:nth-child(5n-4) .team__card-title {
    font-size: 3.4rem;
    flex: 1;
  }
  .team__list > li:nth-child(5n-3) {
    grid-column: 3/4;
    grid-row: span 2;
    border-radius: 0 3rem 3rem 3rem;
  }
  .team__list > li:nth-child(5n-3) .team__card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem 10rem;
    gap: 4rem;
  }
  .team__list > li:nth-child(5n-3) .team__card-front::before {
    top: auto;
    left: auto;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .team__list > li:nth-child(5n-3) .team__card-number {
    font-size: 42.8rem;
    flex: 1 1 auto;
    width: 100%;
  }
  .team__list > li:nth-child(5n-3) .team__card-title {
    font-size: 3.4rem;
    flex: 1 1 auto;
    width: 100%;
  }
  .team__list > li:nth-child(5n-3) .team__card-back {
    flex-direction: column;
  }
  .team__list > li:nth-child(5n-2) {
    grid-column: 1/2;
    grid-row: span 2;
    border-radius: 3rem 3rem 0 3rem;
  }
  .team__list > li:nth-child(5n-2) .team__card-front {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    padding: 12rem 4rem 0;
    gap: 4rem;
  }
  .team__list > li:nth-child(5n-2) .team__card-front::before {
    top: 1.5rem;
    left: 1.5rem;
    right: auto;
    bottom: auto;
  }
  .team__list > li:nth-child(5n-2) .team__card-number {
    font-size: 40.7rem;
    flex: 1;
    position: relative;
    top: 2rem;
    width: 100%;
  }
  .team__list > li:nth-child(5n-2) .team__card-title {
    font-size: 2.8rem;
    flex: 1;
  }
  .team__list > li:nth-child(5n-2) .team__card-back {
    flex-direction: column;
  }
  .team__list > li:nth-child(5n-1) {
    grid-column: 2/3;
    grid-row: span 1;
    border-radius: 0 0 3rem 3rem;
  }
  .team__list > li:nth-child(5n-1) .team__card-front {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    padding: 8rem 4rem 0;
    gap: 2rem;
  }
  .team__list > li:nth-child(5n-1) .team__card-front::before {
    top: 1.5rem;
    left: 50%;
    margin: 0 0 0 -2rem;
    right: auto;
    bottom: auto;
  }
  .team__list > li:nth-child(5n-1) .team__card-number {
    font-size: 25.5rem;
    flex: 1;
    position: relative;
    top: 0.5rem;
    width: 100%;
  }
  .team__list > li:nth-child(5n-1) .team__card-title {
    font-size: 3.4rem;
    flex: 1;
    width: 100%;
  }
  .team__list > li:nth-child(5n) {
    grid-column: 2/4;
    grid-row: span 1;
    border-radius: 3rem 3rem 3rem 0;
  }
  .team__list > li:nth-child(5n) .team__card:hover .team__card-flip {
  /* <!--   transform: rotateX(180deg); --> */
  }
  .team__list > li:nth-child(5n) .team__card-back {
  /* <!--  transform: rotateX(180deg); --> */
  }
  .team__list > li:nth-child(5n) .team__card-front {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 24.3rem;
    padding: 0;
    gap: 2rem;
    padding: 4rem;
  }
  .team__list > li:nth-child(5n) .team__card-front::before {
    left: 1.5rem;
    bottom: 1.5rem;
    right: auto;
    top: auto;
  }
  .team__list > li:nth-child(5n) .team__card-number {
    font-size: 37.3rem;
    width: 21.2rem;
    position: relative;
    flex: 0 0 auto;
  }
  .team__list > li:nth-child(5n) .team__card-title {
    font-size: 3.4rem;
    flex: 1;
  }
}

.team__card {
  position: relative;
  border-radius: inherit;
  height: 100%;
  display: flex;
  perspective: 100rem;
}
@media (min-width: 992px) {
  .team__card {
    display: flex;
  }
  .team__card:hover .team__card-flip {
  /* <!--   transform: rotateY(180deg); --> */
  }
}

.team__card-flip {
  display: flex;
  flex: 1;
  /* <!-- transform-style: preserve-3d; --> */
  transition: 0.4s;
  border-radius: inherit;
}

.team__card-front {
  background: #fff;
  position: relative;
  z-index: 2;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: inherit;
  overflow: hidden;
}

.team__card-back {
  display: none;
}
@media (min-width: 992px) {
  .team__card-back {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    transition: 0.4s;
    background: #fff;
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: inherit;
    overflow: hidden;
  }
}

.team__card-user {
  position: relative;
  margin: 0;
  flex: 1;
}

.team__card-user-image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.team__card-user-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team__card-user-figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  font: 400 2.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  padding: 2rem;
  color: #fff;
}
.team__card-user-figcaption::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.team__card-front {
  padding: 4rem 2rem 5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  min-height: 27.6rem;
  flex: 1;
}
.team__card-front::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.3333 5H33C34.1046 5 35 5.89543 35 7V11.6667M28.3333 35H33C34.1046 35 35 34.1046 35 33V28.3333M11.6667 5H7C5.89543 5 5 5.89543 5 7V11.6667M11.6667 35H7C5.89543 35 5 34.1046 5 33V28.3333' stroke='%23101010' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M26.667 21.667C29.7157 21.667 30.944 24.0953 31.4082 25.5674C31.5887 26.1409 31.1355 26.667 30.5342 26.667H24C24.5523 26.667 24.9921 26.2173 24.8838 25.6758C24.7255 24.8843 24.3523 23.7707 23.4727 22.918C24.2103 22.2001 25.2387 21.667 26.667 21.667Z' fill='%23101010'/%3E%3Cpath d='M13.334 21.667C14.7622 21.6671 15.7907 22.2001 16.5283 22.918C15.6486 23.7707 15.2755 24.8843 15.1172 25.6758C15.0089 26.2172 15.4479 26.6668 16 26.667H9.4668C8.86544 26.667 8.41222 26.1409 8.59277 25.5674C9.05698 24.0953 10.2853 21.667 13.334 21.667Z' fill='%23101010'/%3E%3Cpath d='M20 21.667C23.5715 21.667 24.5919 24.2182 24.8834 25.6759C24.9917 26.2174 24.5523 26.667 24 26.667H16C15.4477 26.667 15.0083 26.2174 15.1166 25.6759C15.4081 24.2182 16.4285 21.667 20 21.667Z' fill='%23101010'/%3E%3Ccircle cx='19.9993' cy='15.0003' r='3.33333' fill='%23101010'/%3E%3Ccircle cx='26.6673' cy='15.0003' r='3.33333' fill='%23101010'/%3E%3Ccircle cx='13.3333' cy='15.0003' r='3.33333' fill='%23101010'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (min-width: 992px) {
  .team__card-front {
    flex: 1;
    min-height: auto;
  }
  .team__card-front::before {
    top: 1.5rem;
    right: 1.5rem;
  }
}

.team__card-number {
  display: block;
  flex: 1;
  font-size: 23rem;
  line-height: 0.75;
  font-weight: 400;
}

.team__card-title {
  position: relative;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 600;
  vertical-align: baseline;
  margin: 0;
  flex: 1;
}
@media (min-width: 992px) {
  .team__card-title {
    line-height: 1.3;
  }
}

.integration {
  position: relative;
  z-index: 100;
  padding: 3rem 0 12rem;
  overflow: unset;
  color: #fff;
}
.integration::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  bottom: -4rem;
  background: #202020 url(../assets/images/integration/cover-fill-m.webp) center bottom no-repeat;
  background-size: 48.4rem auto;
}
@media (min-width: 992px) {
  .integration {
    padding: 0 0 22rem;
  }
  .integration::before {
    bottom: -26rem;
    background-image: url(../assets/images/integration/cover-fill-d.webp);
    background-size: 274rem auto;
  }
}

.integration__marquee {
  display: flex;
  align-items: center;
  width: 100vw;
  position: relative;
  left: 50%;
  margin: 0 0 5.5rem -50vw;
  overflow: hidden !important;
}
@media (min-width: 992px) {
  .integration__marquee {
    height: 18.6rem;
    margin-bottom: 16.5rem;
  }
}

.integration__marquee-anim {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  will-change: transform;
}

.integration__marquee-text {
  display: block;
  flex: 0 0 auto;
  margin: 0 1.5rem;
  font: 300 1.6rem/1 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .integration__marquee-text {
    font-size: 5rem;
    margin: 0 4rem;
  }
}

.integration__marquee-line {
  display: block;
  flex: 0 0 auto;
  margin: 0 1.5rem;
  width: 11rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='335' height='22' viewBox='0 0 335 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.466146 11.2119C0.466146 17.103 5.24178 21.8786 11.1328 21.8786C17.0238 21.8786 21.7995 17.103 21.7995 11.2119C21.7995 5.32088 17.0238 0.545247 11.1328 0.545247C5.24178 0.545247 0.466146 5.32088 0.466146 11.2119ZM313.511 11.2119C313.511 17.103 318.286 21.8786 324.177 21.8786C330.068 21.8786 334.844 17.103 334.844 11.2119C334.844 5.32088 330.068 0.545247 324.177 0.545247C318.286 0.545247 313.511 5.32088 313.511 11.2119ZM11.1328 11.2119V13.2119H324.177V11.2119V9.21191H11.1328V11.2119Z' fill='white' fill-opacity='0.7'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (min-width: 992px) {
  .integration__marquee-line {
    width: 33.5rem;
    height: 2.2rem;
    margin: 0 4rem;
  }
}

.integration__mark {
  display: block;
  margin: 0 0 6.5rem;
  font: 400 1.2rem/1 var(--font-secondary);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .integration__mark {
    font-size: 2.2rem;
    margin: 0 0 3rem;
  }
}

@media (min-width: 992px) {
  .integration__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "list desc";
  }
}

.integration__desc {
  margin: 0 0 4rem;
  text-align: right;
}
@media (min-width: 992px) {
  .integration__desc {
    margin: 0 0 0 -50%;
    overflow: hidden;
    grid-area: desc;
  }
}

.integration__title {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 2.6rem/1.3 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .integration__title {
    font-size: 9rem;
    margin: 0 0 5rem;
  }
}

.integration__text {
  display: block;
  margin: 0 0 0 1rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
}
@media (min-width: 992px) {
  .integration__text {
    font-size: 2.4rem;
    margin: 0;
    max-width: 70rem;
    float: right;
  }
}

.integration__list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  height: 38rem;
}
.integration__list > li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.integration__list > li:nth-child(1) {
  width: 9.2rem;
  margin: -14.5rem 0 0 -10.5rem;
}
.integration__list > li:nth-child(1) > * {
  transform: rotate(30deg);
}
.integration__list > li:nth-child(2) {
  width: 10.8rem;
  margin: -14rem 0 0 3.5rem;
}
.integration__list > li:nth-child(3) {
  width: 6.6rem;
  margin: -5rem 0 0 -13.5rem;
}
.integration__list > li:nth-child(3) > * {
  transform: rotate(-15deg);
}
.integration__list > li:nth-child(4) {
  width: 9.2rem;
  margin: 0.5rem 0 0 -4.5rem;
}
.integration__list > li:nth-child(5) {
  width: 9.6rem;
  margin: -3rem 0 0 12.5rem;
}
.integration__list > li:nth-child(5) > * {
  transform: rotate(-15deg);
}
.integration__list > li:nth-child(6) {
  width: 10.2rem;
  margin: 11rem 0 0 -12rem;
}
.integration__list > li:nth-child(6) > * {
  transform: rotate(4.62deg);
}
.integration__list > li:nth-child(7) {
  width: 10.6rem;
  margin: 10rem 0 0 7rem;
}
.integration__list > li:nth-child(7) > * {
  transform: rotate(30deg);
}
.integration__list > li:nth-child(7) ~ li {
  display: none;
}
@media (min-width: 768px) {
  .integration__list {
    margin: -17.5rem 0 -7.5rem -17.5rem;
    height: 90.7rem;
    transform: scale(0.7);
  }
  .integration__list > li:nth-child(1) {
    width: 23.2rem;
    margin: -29.5rem 0 0 -24rem;
  }
  .integration__list > li:nth-child(2) {
    width: 18rem;
    margin: -31.5rem 0 0 8rem;
  }
  .integration__list > li:nth-child(3) {
    width: 20rem;
    margin: -26rem 0 0 36.5rem;
  }
  .integration__list > li:nth-child(4) {
    width: 17.5rem;
    margin: -10rem 0 0 60rem;
  }
  .integration__list > li:nth-child(4) > * {
    transform: rotate(30deg);
  }
  .integration__list > li:nth-child(5) {
    width: 27rem;
    margin: 8rem 0 0 -18rem;
  }
  .integration__list > li:nth-child(5) > * {
    transform: rotate(30deg);
  }
  .integration__list > li:nth-child(5) > * img {
    transform: rotate(-45deg);
  }
  .integration__list > li:nth-child(6) {
    width: 20.3rem;
    margin: -4rem 0 0 15rem;
  }
  .integration__list > li:nth-child(6) > * {
    transform: rotate(-15deg);
  }
  .integration__list > li:nth-child(7) {
    width: 15.7rem;
    margin: 14rem 0 0 51.5rem;
  }
  .integration__list > li:nth-child(7) > * {
    transform: rotate(0deg);
  }
  .integration__list > li:nth-child(7) ~ li {
    display: block;
  }
  .integration__list > li:nth-child(8) {
    width: 22.2rem;
    margin: 7rem 0 0 86rem;
  }
  .integration__list > li:nth-child(8) > * {
    transform: rotate(-15deg);
  }
  .integration__list > li:nth-child(9) {
    width: 15.7rem;
    margin: 20rem 0 0 8.5rem;
  }
  .integration__list > li:nth-child(9) > * {
    transform: rotate(-15deg);
  }
  .integration__list > li:nth-child(10) {
    width: 23.5rem;
    margin: 36rem 0 0 35rem;
  }
}
@media (min-width: 992px) {
  .integration__list {
    grid-area: list;
    margin: 17.5rem 0 0 0;
    height: 90.7rem;
    transform: unset;
  }
  .integration__list > li:nth-child(1) {
    width: 23.2rem;
    margin: -29.5rem 0 0 -24rem;
  }
  .integration__list > li:nth-child(2) {
    width: 18rem;
    margin: -31.5rem 0 0 8rem;
  }
  .integration__list > li:nth-child(3) {
    width: 20rem;
    margin: -26rem 0 0 36.5rem;
  }
  .integration__list > li:nth-child(4) {
    width: 17.5rem;
    margin: -10rem 0 0 60rem;
  }
  .integration__list > li:nth-child(4) > * {
    transform: rotate(30deg);
  }
  .integration__list > li:nth-child(5) {
    width: 27rem;
    margin: 8rem 0 0 -18rem;
  }
  .integration__list > li:nth-child(5) > * {
    transform: rotate(30deg);
  }
  .integration__list > li:nth-child(5) > * img {
    transform: rotate(-45deg);
  }
  .integration__list > li:nth-child(6) {
    width: 20.3rem;
    margin: -4rem 0 0 15rem;
  }
  .integration__list > li:nth-child(6) > * {
    transform: rotate(-15deg);
  }
  .integration__list > li:nth-child(7) {
    width: 15.7rem;
    margin: 14rem 0 0 51.5rem;
  }
  .integration__list > li:nth-child(7) > * {
    transform: rotate(0deg);
  }
  .integration__list > li:nth-child(7) ~ li {
    display: block;
  }
  .integration__list > li:nth-child(8) {
    width: 22.2rem;
    margin: 7rem 0 0 86rem;
  }
  .integration__list > li:nth-child(8) > * {
    transform: rotate(-15deg);
  }
  .integration__list > li:nth-child(9) {
    width: 15.7rem;
    margin: 20rem 0 0 8.5rem;
  }
  .integration__list > li:nth-child(9) > * {
    transform: rotate(-15deg);
  }
  .integration__list > li:nth-child(10) {
    width: 23.5rem;
    margin: 34rem 0 0 35rem;
  }
}

.integration__image {
  background: #fff;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  padding: 0.5rem;
}
.integration__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .integration__image {
    border-radius: 3rem;
  }
}

.feedback {
  background: #fff;
  box-shadow: 0 0.2rem 0 0.2rem #fff;
  padding: 8rem 0 3rem;
  border-radius: 4rem 4rem 0 0;
  position: relative;
  margin: 0 0 -0.1rem;
  text-align: center;
  position: relative;
  z-index: 200;
}
@media (min-width: 992px) {
  .feedback {
    border-radius: 10rem 10rem 0 0;
    padding: 12rem 0;
  }
}

.feedback__title {
  display: block;
  margin: 0 0 1.2rem;
  font: 400 2.6rem/1.3 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .feedback__title {
    font-size: 7.5rem;
    margin: 0 0 3rem;
  }
}

.feedback__text {
  display: block;
  margin: 0 0 4.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
}
@media (min-width: 992px) {
  .feedback__text {
    font-size: 3.2rem;
  }
}

.feedback__form .ui-placeholder {
  margin: 0 0 1.2rem;
}
.feedback__form .feedback__checks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.feedback__form .ui-check {
  margin: 0;
}
.feedback__form .ui-btn {
  width: 100%;
  height: 4.1rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 992px) {
  .feedback__form {
    max-width: 121.2rem;
    margin: 0 auto;
  }
  .feedback__form .row {
    margin: 0 -2.1rem;
  }
  .feedback__form .row > [class^=col] {
    padding: 0 2.1rem;
  }
  .feedback__form .feedback__checks {
    gap: 1rem;
    margin: 1rem 0 4rem;
  }
  .feedback__form .ui-btn {
    width: auto;
    height: 5.9rem;
    padding: 0 2.6rem;
    font-size: 3.2rem;
    border-radius: 2rem;
  }
}

:has(.topbar) .main {
  padding: 0;
}

.topbar {
  position: relative;
  z-index: 100;
  padding: 9.7rem 0 8rem;
  color: #fff;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .topbar {
    padding: 13.5rem 0 12rem;
  }
}

.topbar__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 40rem;
  z-index: -1;
  background: #000;
}
.topbar__image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 50%, rgb(0, 0, 0) 100%);
  opacity: 0.55;
}
.topbar__image img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .topbar__image {
    bottom: 32rem;
  }
  .topbar__image::after {
    opacity: 0.55;
  }
}

@media (min-width: 768px) {
  .topbar__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-areas: "title tagline";
    align-items: start;
  }
}
@media (min-width: 992px) {
  .topbar__grid {
    display: grid;
    grid-template-columns: 1250fr 534fr;
    grid-template-areas: "title tagline" "title price";
    align-items: start;
    margin: 0 0 7rem;
  }
}

.topbar__tagline {
  display: block;
  margin: 0 0 3.7rem;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 400;
  overflow: hidden;
}
.topbar__tagline span {
  display: block;
}
@media (min-width: 768px) {
  .topbar__tagline {
    grid-area: tagline;
  }
}
@media (min-width: 992px) {
  .topbar__tagline {
    grid-area: tagline;
    font-size: 2.2rem;
    margin: 4rem 0 0;
  }
}

.topbar__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 3.4rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  overflow: hidden;
}
.topbar__title > * {
  display: block;
  overflow: hidden;
}
.topbar__title small {
  display: block;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.0275em;
}
@media (min-width: 768px) {
  .topbar__title {
    grid-area: title;
  }
}
@media (min-width: 992px) {
  .topbar__title {
    font-size: 10.6rem;
    margin: 0;
    grid-area: title;
  }
  .topbar__title small {
    font-size: 2.8rem;
    padding: 0.4rem 0 0 0;
  }
}

.topbar__price {
  display: none;
}
@media (min-width: 992px) {
  .topbar__price {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin: 0;
    grid-area: price;
    white-space: nowrap;
  }
  .topbar__price del {
    text-decoration: none;
    display: block;
    position: relative;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 900;
  }
  .topbar__price del::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -2rem;
    right: -2rem;
    border-top: 0.1rem solid currentColor;
    transform: rotate(-10deg);
  }
  .topbar__price ins {
    font-size: 6.4rem;
    line-height: 1.2;
    font-weight: 900;
    text-decoration: none;
    display: block;
    position: relative;
  }
  .topbar__price sub {
    bottom: 0;
    font-size: 2.4rem;
  }
  .topbar__price small {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 400;
    color: #f1f1f1;
  }
}

.topbar__cards {
  margin: 0 -1rem;
  padding: 0 0 3.2rem;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .topbar__cards {
    display: grid;
    grid-template-columns: 735fr 585fr 436fr;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .topbar__cards {
    margin: 0 0 6rem;
    padding: 0;
    grid-template-columns: 735fr 585fr 436fr;
  }
  .topbar__cards > li:nth-child(3) .topbar__card-title {
    font-size: 12.5rem;
  }
}

.topbar__card {
  position: relative;
  background: linear-gradient(135deg, rgb(16, 16, 16) 0%, rgb(62, 62, 62) 100%);
  padding: 2rem 1rem;
  height: 100%;
  min-height: 21.2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .topbar__card {
    border-radius: 1.6rem;
  }
}
@media (min-width: 992px) {
  .topbar__card {
    border-radius: 2rem;
    padding: 3rem 3rem 2rem 2rem;
    min-height: 20.4rem;
    display: grid;
    grid-template-columns: 1fr;
  }
}

.topbar__card-title {
  display: flex;
  align-items: flex-end;
  margin: 0;
  font: 300 8.5rem/1 var(--font-secondary);
  flex: 0 0 auto;
}
.topbar__card-title small {
  position: relative;
  top: -0.4em;
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}
.topbar__card-title sub {
  position: relative;
  top: -0.4em;
  bottom: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  display: block;
}
@media (min-width: 768px) {
  .topbar__card-title {
    position: relative;
    font-size: 7rem;
  }
  .topbar__card-title sub {
    display: block;
    position: absolute;
    left: 0;
    top: auto;
    bottom: 100%;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .topbar__card-title {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    font-size: 14.5rem;
    line-height: 1;
    font-weight: 300;
    position: relative;
    top: 2rem;
    white-space: nowrap;
  }
  .topbar__card-title small {
    font-size: 4rem;
    line-height: 1;
    font-weight: 400;
    position: relative;
    top: -0.4em;
  }
  .topbar__card-title sub {
    position: absolute;
    left: 0;
    bottom: 100%;
    margin: 0 0 -0.4em;
    font-size: 4rem;
    line-height: 1;
    font-weight: 400;
  }
}

.topbar__card-text {
  display: block;
  padding: 0 0 0 0.8rem;
  margin: 0 0 1rem;
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 992px) {
  .topbar__card-text {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 400;
    max-width: 50%;
    width: 100%;
    margin: 0 0 -8rem auto;
    padding: 0;
  }
}

.topbar__action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  overflow: hidden;
}
.topbar__action .ui-btn {
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .topbar__action {
    display: flex;
    justify-content: center;
    gap: 4.4rem;
  }
  .topbar__action .ui-btn {
    padding: 0 4rem;
  }
}

.crm {
  margin: 0 0 2.5rem;
}
@media (min-width: 992px) {
  .crm {
    margin: 0 0 9rem;
  }
}

.crm__mark {
  display: block;
  margin: 0 0 5.5rem;
  font: 400 1.2rem/1.2 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .crm__mark {
    font-size: 1.4rem;
    margin: 0 0 6rem;
  }
}

.crm__tagline {
  margin: 0 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  font: 400 2rem/1.2 var(--font-primary);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .crm__tagline {
    font-size: 4.2rem;
    gap: 4rem;
    margin: 0 0 7rem;
  }
}

.crm__tagline-row:nth-child(1) {
  text-align: left;
}
.crm__tagline-row:nth-child(2) {
  text-align: right;
}

.crm__line {
  display: block;
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 0 0 4rem -50vw;
  border: none;
  border-bottom: 0.1rem solid #c9c9c9;
}
@media (min-width: 992px) {
  .crm__line {
    margin-bottom: 7rem;
  }
}

.crm__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .crm__title {
    font-size: 6rem;
    margin: 0 0 6.5rem;
  }
}

.crm__list {
  margin: 0 -1rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  overflow: hidden;
}
.crm__list::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.1rem;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(204, 204, 204, 0) 0%, rgb(204, 204, 204) 50%, rgba(204, 204, 204, 0) 100%);
}
.crm__list > li {
  position: relative;
}
.crm__list > li:nth-child(even)::before {
  content: "";
  display: block;
  position: absolute;
  left: -100%;
  right: 0;
  bottom: 100%;
  height: 0.1rem;
  background: linear-gradient(to right, rgba(204, 204, 204, 0) 0%, rgb(204, 204, 204) 50%, rgba(204, 204, 204, 0) 100%);
}
@media (min-width: 992px) {
  .crm__list {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .crm__list::before {
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 0.1rem;
    background: linear-gradient(to right, rgba(204, 204, 204, 0) 0%, rgb(204, 204, 204) 50%, rgba(204, 204, 204, 0) 100%);
  }
  .crm__list::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 33.333%;
    right: 33.333%;
    z-index: 5;
    background: linear-gradient(to bottom, rgba(204, 204, 204, 0) 0%, rgb(204, 204, 204) 50%, rgba(204, 204, 204, 0) 100%) left/0.1rem 100% no-repeat, linear-gradient(to bottom, rgba(204, 204, 204, 0) 0%, rgb(204, 204, 204) 50%, rgba(204, 204, 204, 0) 100%) right/0.1rem 100% no-repeat;
    pointer-events: none;
  }
  .crm__list > li:nth-child(even)::before {
    display: none;
  }
}

.crm__card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1rem;
}
@media (min-width: 992px) {
  .crm__card {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 6rem;
    text-align: left;
  }
}

.crm__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.2rem;
}
.crm__card-icon svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .crm__card-icon {
    width: 7.3rem;
    height: 7.3rem;
    margin: 0;
    flex: 0 0 auto;
  }
}

.crm__card-text {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 992px) {
  .crm__card-text {
    font-size: 2.4rem;
  }
}

.whom {
  margin: 0 0 8rem;
}
@media (min-width: 992px) {
  .whom {
    margin: 0 0 13rem;
  }
}

.whom__mark {
  display: block;
  margin: 0 0 6.5rem;
  font: 400 1.2rem/1.2 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .whom__mark {
    font-size: 1.4rem;
    margin: 0 0 6rem;
  }
}

.whom__title {
  display: block;
  margin: 0 0 3.5rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .whom__title {
    margin: 0 0 7.2rem;
    font-size: 6rem;
  }
}

.whom__list {
  margin: 0 0 3.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 992px) {
  .whom__list {
    margin: 0 0 8rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.whom__card {
  position: relative;
  z-index: 100;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #000;
  color: #fff;
  height: 100%;
  min-height: 22.7rem;
  display: flex;
}
.whom__card.is-active .whom__card-back {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .whom__card {
    min-height: 39rem;
    border-radius: 2rem;
  }
  .whom__card:hover .whom__card-back {
    opacity: 1;
    visibility: visible;
  }
}

.whom__card-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.whom__card-image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 50%, rgb(0, 0, 0) 100%);
  opacity: 0.55;
}
.whom__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.whom__card-front {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .whom__card-front {
    padding: 3rem 3rem 1.5rem;
  }
}

.whom__card-back {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: rgba(51, 51, 51, 0.2);
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
  padding: 1.8rem;
  transition: 0.4s;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .whom__card-back {
    padding: 3rem;
  }
}

.whom__card-desc {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}
.whom__card-desc em {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  font-style: normal;
  flex: 1;
}
.whom__card-desc b {
  font-weight: 700;
}
.whom__card-desc h1,
.whom__card-desc h2,
.whom__card-desc h3,
.whom__card-desc h4,
.whom__card-desc h5,
.whom__card-desc h6 {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}
.whom__card-desc p {
  margin: 0 0 1rem;
}
.whom__card-desc p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .whom__card-desc {
    font-size: 1.8rem;
  }
  .whom__card-desc em {
    font-size: 2.2rem;
    margin: 0 0 7rem;
    flex: unset;
  }
  .whom__card-desc h1,
  .whom__card-desc h2,
  .whom__card-desc h3,
  .whom__card-desc h4,
  .whom__card-desc h5,
  .whom__card-desc h6 {
    font-size: 2.4rem;
  }
}

.whom__card-title {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .whom__card-title {
    font-size: 2.4rem;
  }
}

.whom__card-text {
  display: block;
  margin: auto 0 -0.4rem;
  font: 400 1.8rem/1 var(--font-secondary);
  letter-spacing: -0.0275em;
  word-spacing: 0.2em;
}
.whom__card-text mark {
  font-size: 4.8rem;
}
.whom__card-text sub {
  font-size: 2.4rem;
  bottom: 0;
}
@media (min-width: 992px) {
  .whom__card-text {
    font-size: 3.2rem;
    margin: auto 0 0 0;
  }
  .whom__card-text mark {
    font-size: 8.2rem;
  }
  .whom__card-text sub {
    font-size: 4.2rem;
  }
}

.whom__action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.whom__action .ui-btn {
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .whom__action {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whom__action .ui-btn {
    padding: 0 4rem;
  }
}

.tools {
  margin: 0 0 8rem;
}
@media (min-width: 992px) {
  .tools {
    margin: 0 0 18rem;
  }
}

.tools__mark {
  display: block;
  margin: 0 0 5.5rem;
  font: 400 1.2rem/1.2 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .tools__mark {
    font-size: 1.4rem;
    margin: 0 0 6rem;
  }
}

.tools__tagline {
  margin: 0 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  font: 400 2rem/1.2 var(--font-primary);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .tools__tagline {
    font-size: 4.2rem;
    line-height: 1.15;
    letter-spacing: 0;
    gap: 4rem;
    margin: 0 0 7rem;
  }
}

.tools__tagline-row:nth-child(1) {
  text-align: left;
}
.tools__tagline-row:nth-child(2) {
  text-align: right;
}

.tools__line {
  display: block;
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 0 0 4rem -50vw;
  border: none;
  border-bottom: 0.1rem solid #c9c9c9;
}
@media (min-width: 992px) {
  .tools__line {
    margin-bottom: 7rem;
  }
}

.tools__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 3.1rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .tools__title {
    margin: 0 0 12rem;
    font-size: 6rem;
  }
}

.tools__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media (min-width: 992px) {
  .tools__list {
    gap: 15rem;
  }
}

.tools__card-head {
  display: flex;
  align-items: center;
  margin: 0 0 3.2rem;
  position: relative;
  z-index: 50;
  color: #fff;
  min-height: 7.6rem;
}
.tools__card-head::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #202020;
  z-index: -1;
  border-radius: 0 3rem 3rem 0;
}
@media (min-width: 992px) {
  .tools__card-head {
    min-height: 15rem;
    margin: 0 15rem 6rem 0;
  }
  .tools__card-head::before {
    border-radius: 0 6rem 6rem 0;
  }
}

.tools__card-title {
  display: block;
  flex: 1;
  font: 400 2.2rem/1 var(--font-primary);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .tools__card-title {
    font-size: 4.2rem;
  }
}

.tools__card-number {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
  height: 7.6rem;
  font: 300 9.5rem/1 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
  color: #464646;
  border-radius: 0 3rem 3rem 0;
  overflow: hidden;
  padding: 0 2rem;
}
@media (min-width: 992px) {
  .tools__card-number {
    font-size: 19.5rem;
    height: 15rem;
    padding: 0 7rem;
  }
}

.tools__card-number-in {
  display: block;
  transform: rotate(15deg);
}

.tools__card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .tools__card-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "desc swiper";
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .tools__card-body {
    display: grid;
    grid-template-columns: 562fr 1183fr;
    grid-template-areas: "desc swiper" "control swiper";
    gap: 30px;
  }
}

.tools__card-desc {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 400;
}
.tools__card-desc p {
  margin: 0 0 1rem;
}
.tools__card-desc *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .tools__card-desc {
    grid-area: desc;
  }
}
@media (min-width: 992px) {
  .tools__card-desc {
    font-size: 1.8rem;
    line-height: 1.77;
    font-weight: 400;
    padding: 4rem 4rem 0 0;
    grid-area: desc;
  }
}

.tools__card-control {
  display: none;
}
@media (min-width: 992px) {
  .tools__card-control {
    display: flex;
    align-items: flex-end;
    gap: 3rem;
    grid-area: control;
    position: relative;
    top: 0;
    margin: auto 0 0 0;
  }
  .tools__card-control .swiper-prev,
  .tools__card-control .swiper-next {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font: 400 2.2rem/1.2 var(--font-secondary);
    letter-spacing: -0.0275em;
  }
  .tools__card-control .swiper-prev svg,
  .tools__card-control .swiper-next svg {
    width: 3.5rem;
    height: 3.5rem;
  }
  .tools__card-control .swiper-pagination {
    flex: 1;
    height: 0.1rem;
    position: relative;
    top: -1rem;
    display: flex;
  }
  .tools__card-control .swiper-pagination-bullet {
    display: block;
    width: auto;
    height: 0.1rem;
    flex: 1;
    background: #c0c0c0;
    transition: 0.2s;
  }
  .tools__card-control .swiper-pagination-bullet-active {
    background: #8148ec;
  }
}

.tools__card-swiper .swiper-tools-slides {
  margin: 0 0 2rem;
  border-radius: 1.2rem;
}
.tools__card-swiper .swiper-tools-slides .swiper-slide {
  width: 100%;
}
.tools__card-swiper .swiper-tools-thumbs .swiper-slide {
  width: 100%;
  cursor: pointer;
  transition: opacity 0.2s;
}
.tools__card-swiper .swiper-tools-thumbs .swiper-slide:not(.swiper-slide-thumb-active) {
  opacity: 0.5;
}
.tools__card-swiper .swiper-tools-thumbs .swiper-slide:not(.swiper-slide-thumb-active):hover {
  opacity: 0.75;
}
@media (min-width: 768px) {
  .tools__card-swiper {
    grid-area: swiper;
  }
}
@media (min-width: 992px) {
  .tools__card-swiper {
    grid-area: swiper;
  }
  .tools__card-swiper .swiper-tools {
    position: relative;
    padding: 0 15rem 0 0;
  }
  .tools__card-swiper .swiper-tools-slides {
    margin: 0;
    border-radius: 3rem;
  }
  .tools__card-swiper .swiper-tools-slides .swiper-slide {
    width: 100%;
  }
  .tools__card-swiper .swiper-tools-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 13.8rem;
    margin: 0;
    padding: 1.2rem 0;
  }
  .tools__card-swiper .swiper-tools-thumbs .swiper-slide {
    width: 100%;
    height: 100%;
  }
  .tools__card-swiper .swiper-tools-thumbs .tools__card-image {
    border-radius: 1rem;
  }
}

.tools__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 340/172;
  overflow: hidden;
  border-radius: 1.2rem;
}
.tools__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .tools__card-image {
    aspect-ratio: 1034/521;
    border-radius: 3rem;
  }
}

.devices {
  margin: 0 0 8rem;
  padding: 6rem 0 5rem;
  background: #202020;
  color: #fff;
  overflow: hidden;
}
@media (min-width: 992px) {
  .devices {
    margin: 0 0 12rem;
    padding: 12rem 0 16rem;
  }
}

@media (min-width: 768px) {
  .devices__grid {
    position: relative;
    display: grid;
    grid-template-columns: 735fr 954fr;
    grid-template-areas: "title title" "text figure" "list figure";
    align-items: start;
    gap: 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .devices__grid {
    position: relative;
    display: grid;
    grid-template-columns: 735fr 954fr;
    grid-template-areas: "title title" "text figure" "list figure";
    align-items: start;
    gap: 0 9rem;
  }
}

.devices__title {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 3rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 768px) {
  .devices__title {
    grid-area: title;
    margin-right: 16rem;
  }
}
@media (min-width: 992px) {
  .devices__title {
    font-size: 6rem;
    grid-area: title;
    margin: 0 0 2.4rem;
  }
}

.devices__text {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 768px) {
  .devices__text {
    grid-area: text;
  }
}
@media (min-width: 992px) {
  .devices__text {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 400;
    grid-area: text;
    margin: 0 0 2rem;
  }
}

.devices__platforms {
  margin: 0 0 7.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.devices__platforms svg {
  display: block;
  width: 2.7rem;
  height: 2.7rem;
}
.devices__platforms path {
  transition: fill 0.2s;
}
.devices__platforms > li:not(:hover) path {
  fill: #898989;
}
@media (min-width: 768px) {
  .devices__platforms {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (min-width: 992px) {
  .devices__platforms {
    position: absolute;
    top: 0;
    right: 0;
    gap: 1.4rem;
    justify-content: flex-end;
  }
  .devices__platforms svg {
    width: 5rem;
    height: 5rem;
  }
}

.devices__figure {
  position: relative;
  margin: 0 auto 4.5rem;
  width: 100%;
  height: auto;
  aspect-ratio: 347/228;
  max-width: 57.6rem;
}
@media (min-width: 768px) {
  .devices__figure {
    grid-area: figure;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .devices__figure {
    grid-area: figure;
    width: 100%;
    aspect-ratio: 914/757;
    margin: 0 0 -31rem;
    max-width: 91.4rem;
  }
}

.devices__laptop {
  position: absolute;
  top: 1.4rem;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 885/497;
}
.devices__laptop::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/devices/laptop.webp) 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 100;
}
@media (min-width: 992px) {
  .devices__laptop {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.devices__laptop-image {
  display: block;
  position: absolute;
  top: 2%;
  left: 11.5%;
  right: 11.5%;
  bottom: 10%;
  overflow: hidden;
}
.devices__laptop-image img {
  display: block;
  width: 100%;
  min-height: 200%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}

.devices__mobile {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  width: auto;
  aspect-ratio: 311/637;
}
.devices__mobile::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/devices/mobile.webp) 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 100;
}
@media (min-width: 992px) {
  .devices__mobile {
    position: absolute;
    top: 12rem;
    right: 0;
    aspect-ratio: 311/637;
    width: 31.1rem;
  }
}

.devices__mobile-image {
  display: block;
  position: absolute;
  top: 1%;
  left: 4%;
  right: 4%;
  bottom: 2%;
  overflow: hidden;
  border-radius: 1rem;
}
.devices__mobile-image img {
  display: block;
  width: 100%;
  min-height: 200%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}
@media (min-width: 992px) {
  .devices__mobile-image {
    border-radius: 5rem;
  }
}

.devices__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: point;
  font: 400 2.8rem/1 var(--font-secondary);
  white-space: nowrap;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  perspective: 100rem;
}
.devices__list > li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  transition: 0.2s;
  transform-origin: left center;
  transform-style: preserve-3d;
}
.devices__list > li::before {
  content: counter(point, decimal-leading-zero);
  counter-increment: point 1;
  position: relative;
  flex: 0 0 auto;
  font-size: 4.2rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .devices__list {
    grid-area: list;
    font-size: 3.2rem;
  }
  .devices__list > li::before {
    font-size: 5.6rem;
  }
}
@media (min-width: 992px) {
  .devices__list {
    grid-area: list;
    font-size: 7rem;
  }
  .devices__list > li {
    gap: 2.4rem;
  }
  .devices__list > li::before {
    font-size: 8.5rem;
  }
}

.ready {
  margin: 0 0 14rem;
}
@media (min-width: 992px) {
  .ready {
    margin: 0 0 27rem;
  }
}

.ready__services {
  margin: 0 0 10rem;
}
@media (min-width: 992px) {
  .ready__services {
    margin: 0 0 10rem;
  }
}

.ready__services-title {
  display: block;
  margin: 0 0 7.5rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .ready__services-title {
    font-size: 6rem;
    letter-spacing: -0.015em;
    margin: 0 0 5rem;
  }
}

.ready__services-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.5rem;
}
@media (min-width: 768px) {
  .ready__services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
  }
}
@media (min-width: 992px) {
  .ready__services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6.5rem;
  }
}

.ready__services-card {
  text-align: center;
}
.ready__services-card--01 .ready__services-card-figure img:nth-child(1) {
  width: 4.8rem;
  height: 4.8rem;
  transform: translate(-50%, -50%) rotate(-7.4deg);
  margin: -4rem 0 0 -5rem;
}
.ready__services-card--01 .ready__services-card-figure img:nth-child(2) {
  width: 7rem;
  height: 7rem;
  transform: translate(-50%, -50%) rotate(9deg);
  margin: -3.5rem 0 0 4rem;
}
.ready__services-card--01 .ready__services-card-figure img:nth-child(3) {
  width: 6.2rem;
  height: 6.2rem;
  transform: translate(-50%, -50%) rotate(6.66deg);
  margin: 4.5rem 0 0 -5rem;
}
.ready__services-card--01 .ready__services-card-figure img:nth-child(4) {
  width: 7.7rem;
  height: 7.7rem;
  transform: translate(-50%, -50%) rotate(-6.42deg);
  margin: 5rem 0 0 3rem;
}
.ready__services-card--02 .ready__services-card-figure img:nth-child(1) {
  width: 8rem;
  height: 8rem;
  transform: translate(-50%, -50%) rotate(-5.55deg);
  margin: -3rem 0 0 -8.5rem;
}
.ready__services-card--02 .ready__services-card-figure img:nth-child(2) {
  width: 6.6rem;
  height: 6.6rem;
  transform: translate(-50%, -50%) rotate(9.7deg);
  margin: -4rem 0 0 5rem;
}
.ready__services-card--02 .ready__services-card-figure img:nth-child(3) {
  width: 6.8rem;
  height: 6.8rem;
  transform: translate(-50%, -50%) rotate(11.3deg);
  margin: 4.5rem 0 0 -2.5rem;
}
.ready__services-card--02 .ready__services-card-figure img:nth-child(4) {
  width: 4.6rem;
  height: 4.6rem;
  transform: translate(-50%, -50%) rotate(-22.14deg);
  margin: 2rem 0 0 9.5rem;
}
.ready__services-card--02 .ready__services-card-figure img:nth-child(5) {
  width: 19rem;
  height: 3rem;
  transform: translate(-50%, -50%) rotate(-7deg);
  margin: 9.5rem 0 0 1rem;
}
.ready__services-card--03 .ready__services-card-figure img:nth-child(1) {
  width: 4.3rem;
  height: 4.3rem;
  transform: translate(-50%, -50%) rotate(-11.82deg);
  margin: -4rem 0 0 -8rem;
}
.ready__services-card--03 .ready__services-card-figure img:nth-child(2) {
  width: 13rem;
  height: 2.7rem;
  transform: translate(-50%, -50%) rotate(-4.77deg);
  margin: -3.5rem 0 0 4rem;
}
.ready__services-card--03 .ready__services-card-figure img:nth-child(3) {
  width: 12rem;
  height: 3.5rem;
  transform: translate(-50%, -50%) rotate(3.89deg);
  margin: 2.5rem 0 0 -4rem;
}
.ready__services-card--03 .ready__services-card-figure img:nth-child(4) {
  width: 4.3rem;
  height: 4.3rem;
  transform: translate(-50%, -50%) rotate(14.09deg);
  margin: 3rem 0 0 6.5rem;
}
.ready__services-card--03 .ready__services-card-figure img:nth-child(5) {
  width: 13rem;
  height: 4.8rem;
  transform: translate(-50%, -50%) rotate(0deg);
  margin: 7.5rem 0 0 -2.5rem;
}
@media (min-width: 992px) {
  .ready__services-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.ready__services-card-title {
  display: block;
  margin: 0 0 2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (min-width: 768px) {
  .ready__services-card-title {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .ready__services-card-title {
    font-size: 2.4rem;
    text-align: left;
  }
}

.ready__services-card-figure {
  width: 17rem;
  height: 17rem;
  position: relative;
  margin: 0 auto;
}
.ready__services-card-figure img,
.ready__services-card-figure svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
}
@media (min-width: 768px) {
  .ready__services-card-figure {
    transform: scale(0.8);
  }
}
@media (min-width: 992px) {
  .ready__services-card-figure {
    transform: unset;
  }
}

.ready__business-title {
  display: block;
  margin: 0 0 3.2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .ready__business-title {
    font-size: 4.2rem;
    margin: 0 0 5rem;
  }
}

.ready__business-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.6rem;
}
.ready__business-list > li {
  width: 100%;
  max-width: 34rem;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .ready__business-list {
    gap: 1.2rem;
  }
  .ready__business-list > li {
    max-width: 73.5rem;
  }
}

.ready__business-card {
  background: linear-gradient(135deg, rgb(16, 16, 16) 0%, rgb(62, 62, 62) 100%);
  border-radius: 1.2rem;
  height: 100%;
  color: #fff;
  display: grid;
  grid-template-columns: 7.8rem 1fr;
  grid-template-areas: "title title" "image text";
  gap: 0 1.2rem;
  padding: 1.5rem 1.2rem 1.5rem;
}
@media (min-width: 992px) {
  .ready__business-card {
    border-radius: 2rem;
    padding: 3rem;
    grid-template-columns: 17.4rem 1fr;
    gap: 0 2.4rem;
  }
}

.ready__business-card-title {
  display: block;
  margin: 0;
  grid-area: title;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  margin: 0 0 1.2rem;
}
@media (min-width: 992px) {
  .ready__business-card-title {
    font-size: 3.6rem;
    margin: 0 0 2.4rem;
  }
}

.ready__business-card-image {
  grid-area: image;
  width: 7.8rem;
  height: 7.8rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #f5f5f5;
}
.ready__business-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .ready__business-card-image {
    width: 17.4rem;
    height: 17.4rem;
    border-radius: 2rem;
  }
}

.ready__business-card-text {
  display: block;
  margin: 0;
  grid-area: text;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 7.2rem;
}
@media (min-width: 992px) {
  .ready__business-card-text {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 16.8rem;
  }
}

.stack__card,
.stack__request {
  box-shadow: 0 -1rem 2rem rgba(32, 32, 32, 0.25);
}

.stack {
  background: #202020;
  color: #fff;
  padding: 6rem 0;
}
@media (min-width: 992px) {
  .stack {
    padding: 12rem 0 8rem;
  }
}

.stack__sticky {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.stack__mark {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 1.2rem/1 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .stack__mark {
    font-size: 1.4rem;
    margin: 0 0 5rem;
  }
}

.stack__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 2.6rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .stack__title {
    font-size: 6rem;
    margin: 0 0 8rem;
  }
}

.stack__list {
  margin: 0 0 6rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
}
.stack__list > li {
  margin: 0 0 1.2rem;
}
@media (min-width: 992px) {
  .stack__list {
    margin: 0 0 12rem;
  }
}

.stack__card {
  background: #fff;
  color: #101010;
  border-radius: 1.2rem;
  padding: 0.8rem 0.8rem 5rem 1.8rem;
  height: 33rem;
}
@media (min-width: 992px) {
  .stack__card {
    border-radius: 3rem;
    padding: 7.6rem 8rem;
    position: relative;
    min-height: 33rem;
    height: 33rem;
    overflow: hidden;
  }
}

.stack__card-head {
  margin: 0 0 1.6rem;
}
@media (min-width: 992px) {
  .stack__card-head {
    margin: 0 0 3rem;
  }
}

.stack__card-number {
  display: block;
  margin: 0;
  font: 300 5.45rem/0.8 var(--font-secondary);
  text-align: right;
  transform-origin: right top;
}
@media (min-width: 992px) {
  .stack__card-number {
    display: flex;
    align-items: flex-start;
    position: absolute;
    top: 3rem;
    right: 3rem;
    height: 31.5rem;
    font-size: 43.5rem;
  }
}

.stack__card-title {
  display: block;
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  transform-origin: left top;
}
@media (min-width: 992px) {
  .stack__card-title {
    font-size: 4.2rem;
  }
}

.stack__card-body {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}
.stack__card-body p {
  margin: 0 0 10px;
}
.stack__card-body *:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .stack__card-body {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 86rem;
  }
}

.stack__request {
  background: #fff;
  color: #101010;
  border-radius: 1.2rem;
  padding: 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 33rem;
}
@media (min-width: 992px) {
  .stack__request {
    border-radius: 3rem;
    padding: 7.6rem 6rem 6rem;
    height: 33rem;
  }
}

.stack__request-title {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .stack__request-title {
    font-size: 4.2rem;
    margin: 0 auto 3.2rem;
    max-width: 112rem;
  }
}

.stack__request-action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.stack__request-action .ui-btn {
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .stack__request-action {
    display: flex;
    justify-content: center;
  }
  .stack__request-action .ui-btn {
    padding: 0 4rem;
  }
}

.stack__tagline {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  font: 300 2rem/1.2 var(--font-primary);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .stack__tagline {
    font-size: 4.2rem;
    gap: 4rem;
  }
}

.stack__tagline-row:nth-child(1) {
  text-align: left;
}
.stack__tagline-row:nth-child(2) {
  text-align: right;
}

.tariffs {
  padding: 6rem 0;
  margin: 0 0 8rem;
  background: #202020;
  color: #fff;
}
@media (min-width: 992px) {
  .tariffs {
    padding: 4rem 0 9.5rem;
    margin: 0 0 18rem;
  }
}

.tariffs__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 2.6rem/1.5 var(--font-secondary);
  letter-spacing: -0.0275em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .tariffs__title {
    font-size: 6rem;
    margin: 0 0 4.5rem;
  }
}

.tariffs__swiper .swiper {
  overflow: unset;
  padding: 0 1rem 0 0;
  margin: 0 -0.6rem;
}
.tariffs__swiper .swiper-slide {
  width: 100%;
  max-width: 34.2rem;
  padding: 0 0.6rem;
  height: auto;
}
.tariffs__swiper .swiper-control {
  display: none;
}
@media (min-width: 992px) {
  .tariffs__swiper .swiper {
    padding: 0;
  }
  .tariffs__swiper .swiper-slide {
    max-width: 59.7rem;
  }
  .tariffs__swiper .swiper-control {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 0;
    gap: 8rem;
  }
  .tariffs__swiper .swiper-prev,
  .tariffs__swiper .swiper-next {
    font-size: 2.2rem;
    gap: 1.2rem;
    color: #c6c6c6;
  }
  .tariffs__swiper .swiper-prev:hover,
  .tariffs__swiper .swiper-next:hover {
    color: #fff;
  }
}

.tariffs__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  color: #101010;
  text-decoration: none;
  border-radius: 1.6rem;
  overflow: hidden;
}
.tariffs__card:hover {
  color: #101010;
  text-decoration: none;
}
.tariffs__card:hover .tariffs__card-btn {
  border-color: transparent;
  color: #fff;
}
.tariffs__card:hover .tariffs__card-btn::before {
  opacity: 1;
}
@media (min-width: 992px) {
  .tariffs__card {
    border-radius: 3rem;
  }
}

.tariffs__card-head {
  padding: 3rem 1.6rem 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "title caption" "time time";
  gap: 1.6rem 2.4rem;
  border-bottom: 0.1rem solid #d9d9d9;
  height: 125px;
}
@media (min-width: 992px) {
  .tariffs__card-head {
    padding: 5.5rem 3.5rem 3.5rem;
    gap: 2.4rem;
  }
}

.tariffs__card-body {
  padding: 16px 12px 8px;
  flex: 1;
}
@media (min-width: 992px) {
  .tariffs__card-body {
    padding: 25px 30px 50px;
  }
}

.tariffs__card-title {
  display: block;
  margin: 0;
  font: 400 2.026rem/1 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
  grid-area: title;
}
@media (min-width: 992px) {
  .tariffs__card-title {
    font-size: 3.6rem;
    min-width: 18rem;
  }
}

.tariffs__card-caption {
  display: block;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 400;
  grid-area: caption;
}
@media (min-width: 992px) {
  .tariffs__card-caption {
    font-size: 1.6rem;
    margin: 0;
  }
}

.tariffs__card-time {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  grid-area: time;
}
.tariffs__card-time b {
  font-weight: 500;
}
@media (min-width: 992px) {
  .tariffs__card-time {
    font-size: 1.8rem;
  }
}

.tariffs__card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 500;
}
.tariffs__card-list > li {
  position: relative;
  padding: 0 0 0 1.2rem;
}
.tariffs__card-list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  background: linear-gradient(to bottom, rgb(129, 72, 236) 0%, rgb(234, 163, 138) 100%);
  border-radius: 50%;
  margin: -0.35rem 0 0 0;
}
@media (min-width: 992px) {
  .tariffs__card-list {
    font-size: 1.6rem;
    line-height: 1.15;
    font-weight: 500;
    gap: 2.0rem;
  }
  .tariffs__card-list > li {
    padding: 0 0 0 2.5rem;
  }
  .tariffs__card-list > li::before {
    width: 1.3rem;
    height: 1.3rem;
    margin: -0.65rem 0 0 0;
  }
}

.tariffs__card-price {
  display: block;
  margin: 0 0 1.8rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}
.tariffs__card-price small {
  display: block;
  font-size: 1.464rem;
  margin: 0 0 0.5rem;
}
.tariffs__card-price mark {
  color: #8d69d0;
  font-weight: 600;
}
@media (min-width: 992px) {
  .tariffs__card-price {
    margin: 0 0 4rem;
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 500;
  }
  .tariffs__card-price small {
    font-size: 2.6rem;
  }
}

.tariffs__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  border-top: 0.1rem solid #d9d9d9;
  font-size: 1.351rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1.2rem;
  position: relative;
  z-index: 100;
}
.tariffs__card-btn::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(130, 71, 237, 0.7) 0%, #eb8f73 100%), conic-gradient(from 90deg, rgba(255, 255, 255, 0) 0deg, rgba(0, 0, 0, 0.2) 72deg, rgba(255, 255, 255, 0.2) 144deg, rgba(0, 0, 0, 0.2) 216deg, rgba(255, 255, 255, 0.2) 288deg, rgba(0, 0, 0, 0.2) 360deg);
  background-blend-mode: difference;
  transition: 0.2s;
  opacity: 0;
}
@media (min-width: 992px) {
  .tariffs__card-btn {
    height: 8.7rem;
    font-size: 2.4rem;
  }
}

.license {
  margin: 0 0 6rem;
}
@media (min-width: 992px) {
  .license {
    margin: 0 0 12rem;
  }
}

.license__mark {
  display: block;
  margin: 0 0 6rem;
  font: 400 2rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
.license__mark mark {
  display: inline-block;
  vertical-align: top;
  background: linear-gradient(to bottom, #8148ec, #eaa38a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.license__mark mark * {
  background: linear-gradient(to bottom, #8148ec, #eaa38a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (min-width: 992px) {
  .license__mark {
    font-size: 4.2rem;
    margin: 0 0 7rem;
  }
}

.license__group {
  margin: 0 0 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
.license__group:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .license__group {
    margin: 0 0 9rem;
    gap: 6rem;
  }
}

.license__group-head .row {
  gap: 1rem 0;
}

.license__group-body {
  position: relative;
  z-index: 5;
}

.license__title {
  display: block;
  margin: 0 0 3.2rem;
  font: 400 3.2rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
.license__title:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .license__title {
    font-size: 6rem;
  }
}

.license__caption {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}
.license__caption p {
  margin: 0 0 1rem;
}
.license__caption p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .license__caption {
    font-size: 2rem;
    max-width: 60.8rem;
  }
}

.license__desc {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}
.license__desc p {
  margin: 0 0 1rem;
}
.license__desc p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .license__desc {
    font-size: 2rem;
    max-width: 121.2rem;
  }
}

.license__tabs-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem 4rem;
  border-radius: 0.8rem;
  background: #ececec;
}
@media (min-width: 768px) {
  .license__tabs-control {
    border-radius: 2rem;
    margin: 0 0 4rem;
  }
}
@media (min-width: 992px) {
  .license__tabs-control {
    display: none;
  }
}

.license__tabs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  border-radius: inherit;
  height: 4.8rem;
  padding: 0 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #555555;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  z-index: 1;
}
.license__tabs-btn::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transition: 0.2s;
  opacity: 0;
  background: linear-gradient(to bottom, rgb(129, 72, 236) 0%, rgb(234, 163, 138) 100%);
}
.license__tabs-btn:hover {
  color: #000;
}
.license__tabs-btn.is-active {
  color: #fff;
}
.license__tabs-btn.is-active::before {
  opacity: 1;
}
@media (min-width: 768px) {
  .license__tabs-btn {
    height: 6rem;
    font-size: 2.4rem;
  }
}

.license__tabs-wrapper {
  position: relative;
}

.license__tabs-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(4rem, 0);
}
.license__tabs-content.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transition: 0.4s;
  transform: translate(0, 0);
}

.license__toggle {
  display: none;
}
@media (min-width: 992px) {
  .license__toggle {
    position: absolute;
    top: 50%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1rem;
    height: 5.6rem;
    background: linear-gradient(to right, rgb(234, 163, 138) 0%, rgb(129, 72, 236) 100%);
    font: 400 2.6rem/1 var(--font-primary);
    text-transform: lowercase;
    white-space: nowrap;
    color: #fff;
    margin: -2.8rem 0 0 0;
  }
  .license__toggle svg {
    display: block;
    flex: 0 0 auto;
    width: 4.3rem;
    height: 4.3rem;
    transform: rotate(-90deg);
  }
  .license__toggle--left {
    right: 100%;
    transform-origin: right bottom;
    transform: rotate(-90deg) translate(50%, 0);
    border-radius: 3rem 3rem 0 0;
  }
  .license__toggle--right {
    left: 100%;
    transform-origin: left bottom;
    transform: rotate(90deg) translate(-50%, 0);
    border-radius: 3rem 3rem 0 0;
  }
}

.license__swiper .swiper {
  overflow: unset;
  padding: 0 1rem 0 0;
  margin: 0 -0.6rem;
}
.license__swiper .swiper-slide {
  width: 100%;
  max-width: 34.2rem;
  padding: 0 0.6rem;
  height: auto;
}
.license__swiper .swiper-control {
  display: none;
}
@media (min-width: 992px) {
  .license__swiper .swiper {
    padding: 0;
  }
  .license__swiper .swiper-slide {
    width: 25%;
    max-width: 100%;
  }
  .license__swiper:has(.license__card:not(.license__card--static):hover) .license__card:not(.license__card--static) .license__card-flip {
    transform: rotateY(180deg);
  }
}

.license__card {
  border-radius: 1.6rem;
  height: 100%;
  perspective: 100rem;
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.license__card.is-active:not(.license__card--static) .license__card-flip {
  transform: rotateY(180deg);
}
.license__card--boxed .license__card-front {
  background: #fff;
}
@media (min-width: 992px) {
  .license__card {
    border-radius: 3rem;
  }
}

.license__card-flip {
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.4s;
  border-radius: inherit;
}

.license__card-front {
  position: relative;
  z-index: 2;
  transition: 0.2s;
  background: #e7f9ff;
  border: 0.1rem solid #beedfd;
  display: flex;
  flex-direction: column;
  border-radius: inherit;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  min-height: 100%;
}

.license__card-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  min-height: 100%;
  border: 0.1rem solid #beedfd;
  border-radius: inherit;
  background: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.license__card-head {
  text-align: center;
  padding: 3rem 2rem 2rem;
  height: 12rem;
  background: #c9f0fc;
  border-bottom: 0.1rem solid #beedfd;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
@media (min-width: 992px) {
  .license__card-head {
    height: 17rem;
    padding: 4.2rem 2rem 3.2rem;
  }
}

.license__card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}
.license__card-body::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 -6px;
  z-index: -1;
}

.license__card-list {
  margin: 0;
  padding: 2rem;
  list-style: none;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 500;
  color: #2d2d2d;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.license__card-list > li {
  position: relative;
  padding: 0 0 0 3.2rem;
}
.license__card-list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 14L8.23309 16.4248C8.66178 16.7463 9.26772 16.6728 9.60705 16.2581L18 6' stroke='%230251B0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.license__card-list > li.is-disabled {
  opacity: 0.5;
}
.license__card-list > li.is-disabled::before {
  opacity: 0;
}
@media (min-width: 992px) {
  .license__card-list {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 500;
  }
  .license__card-list > li {
    padding: 0 0 0 4.2rem;
  }
  .license__card-list > li::before {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.license__card-title {
  display: block;
  margin: 0 0 0.8rem;
  font: 400 2.026rem/1 var(--font-primary);
  letter-spacing: -0.0275em;
}
.license__card-title:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .license__card-title {
    font-size: 3.6rem;
    margin: 0 0 2.2rem;
  }
}

.license__card-text {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
}
.license__card-text b {
  font-weight: 500;
}
@media (min-width: 992px) {
  .license__card-text {
    font-size: 1.8rem;
  }
}

.license__card-line {
  border: none;
  border-bottom: 0.1rem solid #beedfd;
  margin: 0;
}

.license__card-employees {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 2rem;
  height: 12rem;
  margin: 0;
  gap: 0.8rem;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .license__card-employees {
    padding: 3rem 4.2rem;
    font-size: 3.6rem;
    height: 20rem;
  }
}

.license__card-employees-select {
  position: relative;
  width: 100%;
}
.license__card-employees-select.is-open .license__card-employees-toggle {
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.04);
}
.license__card-employees-select.is-open .license__card-employees-toggle::after {
  transform: rotate(180deg);
}
.license__card-employees-select.is-open .license__card-employees-dropdown {
  opacity: 1;
  visibility: visible;
}

.license__card-employees-toggle {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  width: 100%;
  height: auto;
  padding: 2rem 4rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  color: #101010;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.license__card-employees-toggle::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  margin: -2.4rem 0 0 0;
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9L12 15L6 9' stroke='%2333363F' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.license__card-employees-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-radius: 2rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  padding: 2rem;
  margin: 0.4rem 0 0 0;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.04);
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .license__card-employees-dropdown {
    padding: 3.2rem;
  }
}

.license__card-employees-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 300;
  text-transform: none;
}
.license__card-employees-menu b {
  font-weight: 600;
}
.license__card-employees-menu > li {
  transition: 0.2s;
  cursor: pointer;
  color: #656565;
}
.license__card-employees-menu > li:hover {
  color: #000;
}
@media (min-width: 992px) {
  .license__card-employees-menu {
    font-size: 2.8rem;
    gap: 2rem;
  }
}

.license__card-employees-number {
  display: block;
  font-weight: 600;
}

.license__card-employees-text {
  display: block;
}

.license__card-employees-mark {
  display: flex;
  align-items: flex-end;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  text-transform: none;
  gap: 0.8rem;
}
.license__card-employees-mark svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .license__card-employees-mark svg {
    width: 1.8rem;
    height: 2rem;
  }
}

.license__card-yearly,
.license__card-renewal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
.license__card-yearly span,
.license__card-renewal span {
  display: block;
}
.license__card-yearly sub,
.license__card-renewal sub {
  bottom: 0;
  font-size: 1.4rem;
  line-height: inherit;
  font-weight: 400;
  color: #858585;
}
.license__card-yearly mark,
.license__card-renewal mark {
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  align-items: center;
  height: 3.2rem;
  padding: 0 1rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #262626;
}
.license__card-yearly mark::before,
.license__card-renewal mark::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: #e7f9ff;
  z-index: -1;
  transform: skewX(-10deg);
}
.license__card-yearly:not(:has(mark)),
.license__card-renewal:not(:has(mark)) {
  color: #0251b0;
}
@media (min-width: 992px) {
  .license__card-yearly,
  .license__card-renewal {
    font-size: 3.2rem;
  }
  .license__card-yearly:not(:has(mark)),
  .license__card-renewal:not(:has(mark)) {
    font-size: 4rem;
  }
  .license__card-yearly sub,
  .license__card-renewal sub {
    font-size: 2rem;
  }
  .license__card-yearly mark,
  .license__card-renewal mark {
    font-size: 2.4rem;
    height: 4.2rem;
    padding: 0 2rem;
  }
}

.license__card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  color: #0251b0;
}
.license__card-price sup {
  font-size: 1.6rem;
  top: 0;
  color: #262626;
}
.license__card-price span {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.license__card-price sub {
  bottom: 0;
  font-size: 1.4rem;
  color: #858585;
}
.license__card-price mark {
  display: inline-flex;
  vertical-align: top;
  position: relative;
  z-index: 1;
  align-items: center;
  height: 3.2rem;
  padding: 0 1rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #262626;
}
.license__card-price mark::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: #d6f76f;
  z-index: -1;
  transform: skewX(-10deg);
}
@media (min-width: 992px) {
  .license__card-price {
    height: 23.6rem;
    font-size: 3.2rem;
    gap: 2.4rem;
  }
  .license__card-price sup {
    font-size: 2.6rem;
  }
  .license__card-price sub {
    font-size: 2rem;
  }
  .license__card-price mark {
    font-size: 2.4rem;
    height: 4.2rem;
    padding: 0 2rem;
  }
}

.license__consult {
  text-align: center;
}

.license__consult-text {
  margin: 0 auto 2rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  max-width: 66.2rem;
}
@media (min-width: 992px) {
  .license__consult-text {
    font-size: 2rem;
  }
}

.license__consult-action .ui-btn {
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .license__consult-action .ui-btn {
    width: auto;
    padding: 0 4rem;
  }
}

.license__tagline {
  display: block;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .license__tagline {
    gap: 4rem;
    font-size: 3.4rem;
  }
}

.subsc {
  margin: 0 0 6rem;
}
@media (min-width: 992px) {
  .subsc {
    margin: 0 0 12rem;
  }
}

.subsc__mark {
  display: block;
  margin: 0 0 6rem;
  font: 400 2rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
.subsc__mark mark {
  display: inline-block;
  vertical-align: top;
  background: linear-gradient(to bottom, #8148ec, #eaa38a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (min-width: 992px) {
  .subsc__mark {
    font-size: 4.2rem;
    margin: 0 0 7rem;
  }
}

.subsc__group {
  margin: 0 0 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
.subsc__group:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .subsc__group {
    margin: 0 0 9rem;
    gap: 9rem;
  }
}

.subsc__group-head .row {
  gap: 1rem 0;
}

.subsc__title {
  display: block;
  margin: 0 0 3.2rem;
  font: 400 3.2rem/1.25 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
.subsc__title:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .subsc__title {
    font-size: 6rem;
  }
}

.subsc__caption {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}
.subsc__caption p {
  margin: 0 0 1rem;
}
.subsc__caption p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .subsc__caption {
    font-size: 2rem;
    max-width: 60.8rem;
  }
}

.subsc__desc {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}
.subsc__desc p {
  margin: 0 0 1rem;
}
.subsc__desc p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .subsc__desc {
    font-size: 2rem;
    max-width: 121.2rem;
  }
}

.subsc__tabs-control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem 4rem;
  border-radius: 0.8rem;
  background: #ececec;
}
@media (min-width: 768px) {
  .subsc__tabs-control {
    border-radius: 2rem;
    margin: 0 0 4rem;
  }
}
@media (min-width: 992px) {
  .subsc__tabs-control {
    display: none;
  }
}

.subsc__tabs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  border-radius: inherit;
  height: 4.8rem;
  padding: 0 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #555555;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  z-index: 1;
}
.subsc__tabs-btn::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transition: 0.2s;
  opacity: 0;
  background: linear-gradient(to bottom, rgb(129, 72, 236) 0%, rgb(234, 163, 138) 100%);
}
.subsc__tabs-btn:hover {
  color: #000;
}
.subsc__tabs-btn.is-active {
  color: #fff;
}
.subsc__tabs-btn.is-active::before {
  opacity: 1;
}
@media (min-width: 768px) {
  .subsc__tabs-btn {
    height: 6rem;
    font-size: 2.4rem;
  }
}

.subsc__tabs-wrapper {
  position: relative;
}

.subsc__tabs-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(4rem, 0);
}
.subsc__tabs-content.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transition: 0.4s;
  transform: translate(0, 0);
}

.subsc__toggle {
  display: none;
}
@media (min-width: 992px) {
  .subsc__toggle {
    position: absolute;
    top: 50%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1rem;
    height: 5.6rem;
    background: linear-gradient(to right, rgb(234, 163, 138) 0%, rgb(129, 72, 236) 100%);
    font: 400 2.6rem/1 var(--font-primary);
    text-transform: lowercase;
    white-space: nowrap;
    color: #fff;
    margin: -2.8rem 0 0 0;
  }
  .subsc__toggle svg {
    display: block;
    flex: 0 0 auto;
    width: 4.3rem;
    height: 4.3rem;
    transform: rotate(-90deg);
  }
  .subsc__toggle--left {
    right: 100%;
    transform-origin: right bottom;
    transform: rotate(-90deg) translate(50%, 0);
    border-radius: 3rem 3rem 0 0;
  }
  .subsc__toggle--right {
    left: 100%;
    transform-origin: left bottom;
    transform: rotate(90deg) translate(-50%, 0);
    border-radius: 3rem 3rem 0 0;
  }
}

.subsc__swiper .swiper {
  overflow: unset;
  padding: 0 1rem 0 0;
  margin: 0 -0.6rem;
}
.subsc__swiper .swiper-slide {
  width: 100%;
  max-width: 34.2rem;
  padding: 0 0.6rem;
  height: auto;
}
.subsc__swiper .swiper-control {
  display: none;
}
@media (min-width: 992px) {
  .subsc__swiper .swiper {
    padding: 0;
  }
  .subsc__swiper .swiper-slide {
    width: 25%;
    max-width: 100%;
  }
}

.subsc__card {
  background: #e7f9ff;
  border: 0.1rem solid #beedfd;
  border-radius: 1.6rem;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s;
}
.subsc__card--boxed {
  background: #fff;
}
.subsc__card--boxed .subsc__card-head {
  background: #e7f9ff;
}
@media (min-width: 992px) {
  .subsc__card {
    border-radius: 3rem;
  }
}

.subsc__card-head {
  position: relative;
  padding: 3rem 2rem 2rem;
  height: 12rem;
  background: #c9f0fc;
  border-bottom: 0.1rem solid #beedfd;
}
@media (min-width: 992px) {
  .subsc__card-head {
    height: 17rem;
    padding: 4rem 3.5rem 2rem;
  }
}

.subsc__card-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

.subsc__card-badge {
  display: inline-flex;
  vertical-align: top;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 5;
  align-items: center;
  height: 3.2rem;
  padding: 0 1rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #262626;
}
.subsc__card-badge::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: #f8e15c;
  z-index: -1;
  transform: skewX(-10deg);
}
@media (min-width: 992px) {
  .subsc__card-badge {
    height: 4.2rem;
    padding: 0 2rem;
    font-size: 2.4rem;
  }
}

.subsc__card-title {
  display: block;
  margin: 0 0 0.8rem;
  font: 400 2.026rem/1.1 var(--font-primary);
  letter-spacing: -0.0275em;
}
.subsc__card-title:last-child {
  margin-bottom: 0;
}
.subsc__card-title small {
  font-family: var(--font-primary);
  letter-spacing: 0;
  font-size: 1.2rem;
  display: block;
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .subsc__card-title {
    font-size: 3.6rem;
  }
}

.subsc__card-text {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
}
.subsc__card-text b {
  font-weight: 500;
}
@media (min-width: 992px) {
  .subsc__card-text {
    font-size: 1.8rem;
  }
}

.subsc__card-mark {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  text-transform: none;
  gap: 0.8rem;
}
.subsc__card-mark svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .subsc__card-mark {
    font-size: 1.4rem;
  }
  .subsc__card-mark svg {
    width: 1.8rem;
    height: 2.2rem;
  }
}

.subsc__card-line {
  border: none;
  border-bottom: 0.1rem solid #beedfd;
  margin: 0;
}

.subsc__card-employees {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  height: 12rem;
  margin: 0;
  gap: 1.6rem;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .subsc__card-employees {
    font-size: 3.6rem;
    height: 14.8rem;
  }
}

.subsc__card-employees-select {
  position: relative;
  width: 100%;
}
.subsc__card-employees-select.is-open .subsc__card-employees-toggle {
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.04);
}
.subsc__card-employees-select.is-open .subsc__card-employees-toggle::after {
  transform: rotate(180deg);
}
.subsc__card-employees-select.is-open .subsc__card-employees-dropdown {
  opacity: 1;
  visibility: visible;
}

.subsc__card-employees-toggle {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  width: 100%;
  height: auto;
  padding: 2rem 4rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  color: #101010;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.subsc__card-employees-toggle::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  margin: -2.4rem 0 0 0;
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9L12 15L6 9' stroke='%2333363F' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.subsc__card-employees-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-radius: 2rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  padding: 3.2rem;
  margin: 0.4rem 0 0 0;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.04);
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}

.subsc__card-employees-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 300;
  text-transform: none;
}
.subsc__card-employees-menu b {
  font-weight: 600;
}
.subsc__card-employees-menu > li {
  transition: 0.2s;
  cursor: pointer;
  color: #656565;
}
.subsc__card-employees-menu > li:hover {
  color: #000;
}
@media (min-width: 992px) {
  .subsc__card-employees-menu {
    font-size: 2.8rem;
    gap: 2rem;
  }
}

.subsc__card-employees-number {
  display: block;
  font-weight: 600;
}

.subsc__card-employees-text {
  display: block;
}

.subsc__card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  color: #0251b0;
  padding: 2rem;
}
.subsc__card-price small {
  display: block;
  font-size: 1.6rem;
  color: #858585;
}
.subsc__card-price sup {
  font-size: 1.6rem;
  top: 0;
  color: #262626;
}
.subsc__card-price span {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.subsc__card-price sub {
  bottom: 0;
  font-size: 1.4rem;
  color: #858585;
}
.subsc__card-price mark {
  display: inline-flex;
  vertical-align: top;
  position: relative;
  z-index: 1;
  align-items: center;
  height: 4.2rem;
  padding: 0 2rem;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
  color: #262626;
}
.subsc__card-price mark::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: #f8e15c;
  z-index: -1;
  transform: skewX(-10deg);
}
@media (min-width: 992px) {
  .subsc__card-price {
    height: 15.4rem;
    font-size: 3.2rem;
    gap: 2.4rem;
  }
  .subsc__card-price small {
    font-size: 2rem;
  }
  .subsc__card-price sup {
    font-size: 2.6rem;
  }
  .subsc__card-price sub {
    font-size: 1.6rem;
  }
  .subsc__card-price mark {
    font-size: 2.4rem;
    height: 4.2rem;
    padding: 0 2rem;
  }
}

.subsc__consult {
  text-align: center;
}

.subsc__consult-text {
  margin: 0 auto 2rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  max-width: 66.2rem;
}

.subsc__consult-action .ui-btn {
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .subsc__consult-action .ui-btn {
    width: auto;
    padding: 0 4rem;
  }
}

.subsc__tagline {
  display: block;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .subsc__tagline {
    gap: 4rem;
    font-size: 3.4rem;
  }
}

.promo {
  background: #202020;
  color: #fff;
  padding: 4rem 0;
  margin: 0 0 8rem;
}
@media (min-width: 992px) {
  .promo {
    background: none;
    padding: 0;
    margin: 0 0 15.5rem;
  }
}

.promo__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .promo__wrapper {
    background: #202020;
    color: #fff;
    border-radius: 3rem;
    overflow: hidden;
    padding: 7rem;
    gap: 4rem;
  }
}

.promo__cube {
  display: block;
  z-index: -1;
  background: url(../assets/images/promo/cube.webp) center center no-repeat;
  background-size: contain;
  will-change: transform;
}
.promo__cube--01 {
  position: absolute;
  top: 17rem;
  right: 100%;
  width: 20rem;
  height: 17rem;
  transform: rotate(120deg);
  margin: 0 -11rem 0 0;
}
.promo__cube--02 {
  position: absolute;
  left: 100%;
  top: -3rem;
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 0 0 -0.5rem;
}
@media (min-width: 992px) {
  .promo__cube--01 {
    width: 29.5rem;
    height: 25rem;
    top: 17rem;
    margin: 0 -22rem 0 0;
  }
  .promo__cube--02 {
    width: 26.5rem;
    height: 22.5rem;
    top: -7.5rem;
    left: 100%;
    margin: -7.5rem 0 0 -25rem;
  }
}

.promo__tagline {
  display: block;
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.promo__tagline:first-child {
  text-align: left;
}
.promo__tagline:last-child {
  text-align: right;
  margin: 0 0 0 2rem;
}
@media (min-width: 992px) {
  .promo__tagline {
    font-size: 4.2rem;
  }
}

.promo__marquee {
  display: flex;
  align-items: center;
  width: 100vw;
  position: relative;
  left: 50%;
  margin: 0 0 0 -50vw;
  height: 5.9rem;
  background: #fff;
  color: #000;
}
@media (min-width: 992px) {
  .promo__marquee {
    height: 6.9rem;
  }
}

.promo__marquee-anim {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  will-change: transform;
}

.promo__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  font: 400 1.6rem/1 var(--font-secondary);
  white-space: nowrap;
  text-transform: uppercase;
}
.promo__list > li {
  flex: 0 0 auto;
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .promo__list {
    font-size: 2.4rem;
  }
  .promo__list > li {
    margin: 0 2.2rem;
  }
}

.reviews {
  margin: 0 0 8rem;
}
@media (min-width: 992px) {
  .reviews {
    margin: 0 0 18rem;
  }
}

.reviews__mark {
  display: block;
  margin: 0 0 4rem;
  font: 400 1.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .reviews__mark {
    font-size: 1.4rem;
    margin: 0 0 6rem;
  }
}

.reviews__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .reviews__title {
    font-size: 6rem;
    margin: 0 0 4rem;
  }
}

.reviews__text {
  display: none;
}
@media (min-width: 992px) {
  .reviews__text {
    display: block;
    margin: 0 0 6rem;
    max-width: 70rem;
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 400;
  }
}

.reviews__swiper .swiper {
  overflow: unset;
  margin: 0 -0.4rem;
}
.reviews__swiper .swiper-slide {
  width: 18rem;
  padding: 0 0.4rem;
  max-width: 100%;
}
.reviews__swiper .swiper-slide.is-dual {
  width: 33.8rem;
}
.reviews__swiper .swiper-control {
  display: none;
}
@media (min-width: 992px) {
  .reviews__swiper .swiper {
    margin: 0 -0.6rem;
  }
  .reviews__swiper .swiper-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16rem;
    position: relative;
    top: -6rem;
  }
  .reviews__swiper .swiper-slide {
    padding: 0 0.6rem;
    width: 30.8rem;
  }
  .reviews__swiper .swiper-slide.is-dual {
    width: 85rem;
  }
}

.reviews__image {
  background: #000;
  border-radius: 3rem;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 300/620;
  display: block;
}
.reviews__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .reviews__image {
    aspect-ratio: 300/620;
    border-radius: 5rem;
  }
}

.is-dual .reviews__image {
  aspect-ratio: 330/243;
}
@media (min-width: 992px) {
  .is-dual .reviews__image {
    aspect-ratio: 842/620;
  }
}

.other {
  position: relative;
  z-index: 5;
  margin: 0 0 8rem;
}
@media (min-width: 992px) {
  .other {
    margin: 0 0 18rem;
  }
}

.other__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .other__title {
    font-size: 6rem;
    margin: 0 0 8rem;
  }
}

.other__swiper {
  margin: 0 0 8rem;
}
.other__swiper:last-child {
  margin-bottom: 0;
}
.other__swiper .swiper {
  overflow: unset;
  margin: 0 -0.6rem;
}
.other__swiper .swiper-slide {
  padding: 0 0.6rem;
  width: 100%;
  max-width: 32.8rem;
}
@media (min-width: 992px) {
  .other__swiper {
    margin: 0 0 18rem;
  }
  .other__swiper .swiper {
    margin: 0;
  }
  .other__swiper .swiper-wrapper {
    transform: unset !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem 1.2rem;
  }
  .other__swiper .swiper-slide {
    padding: 0;
    max-width: 100%;
  }
}

.other__card {
  display: block;
  width: 100%;
  height: auto;
  background: #fefefe;
  color: #fff;
  text-decoration: none;
  border-radius: 1.2rem;
  overflow: unset;
  aspect-ratio: 316/215;
  position: relative;
}
.other__card:hover {
  text-decoration: none;
  color: #fff;
}
.other__card:hover .other__card-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.other__card:hover .other__card-title {
  color: #fff;
}
.other__card:hover .other__card-title::before {
  opacity: 1;
}
@media (min-width: 992px) {
  .other__card {
    border-radius: 2rem;
    aspect-ratio: 436/222;
  }
}

.other__card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.2rem;
}
.other__card-image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.other__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: 0.2s;
}

.other__card-title {
  display: flex;
  align-items: center;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 6.2rem;
  padding: 0.8rem;
  border-radius: 1.2rem 1.2rem 1.1rem 1.1rem;
  overflow: hidden;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.8);
  color: #101010;
  -webkit-backdrop-filter: blur(4.5rem);
          backdrop-filter: blur(4.5rem);
  transition: 0.2s;
}
.other__card-title::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(130, 71, 237, 0.7) 0%, #eb8f73 100%), conic-gradient(from 90deg, rgba(255, 255, 255, 0) 0deg, rgba(0, 0, 0, 0.2) 72deg, rgba(255, 255, 255, 0.2) 144deg, rgba(0, 0, 0, 0.2) 216deg, rgba(255, 255, 255, 0.2) 288deg, rgba(0, 0, 0, 0.2) 360deg);
  background-blend-mode: difference;
  transition: 0.2s;
  opacity: 0;
}
@media (min-width: 992px) {
  .other__card-title {
    font-size: 2.4rem;
    min-height: 6.9rem;
    padding: 1rem 2rem;
  }
}

.other__3d {
  margin: 0;
  position: relative;
  left: 50%;
  width: 100vw;
  height: 21rem;
  margin: 0 0 0 -50vw;
}
.other__3d::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -9rem;
  background: #202020 url(../assets/images/group-d3/cover-fill-m.webp) center top no-repeat;
  background-size: 48.8rem auto;
}
@media (min-width: 992px) {
  .other__3d {
    height: 42rem;
  }
  .other__3d::before {
    background-image: url(../assets/images/group-d3/cover-fill-d.webp);
    background-size: 192rem auto;
    bottom: -27rem;
  }
}

.group-d3 {
  height: 21rem;
  margin: 0;
  position: relative;
}
.group-d3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -9rem;
  background: #202020 url(../assets/images/group-d3/cover-fill-m.webp) center top no-repeat;
  background-size: 48.8rem auto;
}
@media (min-width: 992px) {
  .group-d3 {
    height: 42rem;
  }
  .group-d3::before {
    background-image: url(../assets/images/group-d3/cover-fill-d.webp);
    background-size: 192rem auto;
    bottom: -27rem;
  }
}

:has(.intro) .main {
  padding: 0;
}

.intro {
  padding: 10rem 0 6rem;
  margin: 0 0 6rem;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .intro {
    min-height: 100svh;
  }
}
@media (min-width: 992px) {
  .intro {
    padding: 16rem 0 12rem;
  }
}

@media (min-width: 992px) {
  .intro__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "heading card" "action card" "table table";
    align-items: start;
  }
}

.intro__heading {
  margin: 0 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .intro__heading {
    grid-area: heading;
    margin: 0 0 5rem;
    gap: 1rem;
  }
}

.intro__title {
  display: block;
  margin: 0;
  font: 400 4.5rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
  overflow: hidden;
}
.intro__title small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media (min-width: 992px) {
  .intro__title {
    font-size: 20.5rem;
    line-height: 1.1;
    font-weight: 400;
    grid-area: title;
  }
  .intro__title small {
    font-size: 4.8rem;
  }
}

.intro__title-slide {
  display: block;
}

.intro__subtitle {
  display: block;
  margin: 0;
  font: 400 1.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .intro__subtitle {
    font-size: 4.8rem;
  }
}

.intro__subtitle-slide {
  display: block;
}

.intro__card {
  margin: 0 0 7rem;
  overflow: hidden;
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .intro__card {
    grid-area: card;
    margin: 3rem 0 8rem;
    position: relative;
    border-radius: 2rem;
  }
}

.intro__card-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.1rem;
  padding: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  background-image: linear-gradient(90deg, rgba(130, 71, 237, 0.7) 0%, #eb8f73 100%), conic-gradient(from 90deg, rgba(255, 255, 255, 0) 0deg, rgba(0, 0, 0, 0.2) 72deg, rgba(255, 255, 255, 0.2) 144deg, rgba(0, 0, 0, 0.2) 216deg, rgba(255, 255, 255, 0.2) 288deg, rgba(0, 0, 0, 0.2) 360deg);
  background-blend-mode: difference;
  color: #fff;
}
@media (min-width: 992px) {
  .intro__card-mark {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 6.6rem;
    padding: 0.8rem 2.8rem;
    font-size: 1.8rem;
    border-radius: 0 0 2rem 0;
  }
}

.intro__card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 340/92;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #202020;
  padding: 2rem 7rem;
  position: relative;
  overflow: hidden;
}
.intro__card-image img {
  display: block;
}
@media (min-width: 992px) {
  .intro__card-image {
    aspect-ratio: 884/350;
    border-radius: 2rem;
    padding: 4rem 16rem;
    margin: 0 0 1.5rem;
    position: relative; /* Для позиционирования псевдоэлементов */
    overflow: hidden; /* Чтобы скрыть выходящие за границы элементы */
  }
}
/* Левая картинка снизу */
.intro__card-image::before {
  content: '';
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 150px; /* Настройте под размер картинки */
  height: 150px;
  background-image: url("../assets/images/features/cube.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.5; /* При необходимости */
  filter: blur(5px);
}

/* Правая картинка сверху */
.intro__card-image::after {
  content: '';
  position: absolute;
  right: -50px;
  top: 0;
  width: 150px;
  height: 150px;
  background-image: url("../assets/images/features/cube.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.5;
  filter: blur(5px);
}

/* Чтобы основное изображение было выше фоновых картинок */
.intro__card-image img {
  position: relative;
  z-index: 2;
}

.intro__card-tags {
  display: none;
}
@media (min-width: 992px) {
  .intro__card-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 1rem;
    list-style: none;
    gap: 0 4.4rem;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 300;
  }
}

.intro__action {
  display: none;
}
@media (min-width: 992px) {
  .intro__action {
    display: block;
    grid-area: action;
    margin: 0 0 8rem;
    overflow: hidden;
  }
}

.intro__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  font-size: 1.7rem;
  line-height: 1.25;
  font-weight: 500;
}
.intro__table th,
.intro__table td {
  padding: 1.2rem;
  vertical-align: top;
}
.intro__table th:has(mark),
.intro__table td:has(mark) {
  vertical-align: middle;
}
.intro__table th:first-child,
.intro__table td:first-child {
  padding-left: 0;
}
.intro__table th:last-child,
.intro__table td:last-child {
  padding-right: 0;
}
.intro__table th {
  font-size: 1.8rem;
  font-weight: 400;
}
.intro__table tr:first-child th,
.intro__table tr:first-child td {
  padding-top: 0;
}
.intro__table tr:last-child th,
.intro__table tr:last-child td {
  padding-bottom: 0;
}
.intro__table mark {
  font-size: 5.7rem;
  line-height: 1;
  font-weight: 400;
}
.intro__table sub {
  font-size: 2.2rem;
  bottom: 0;
}
@media (min-width: 992px) {
  .intro__table {
    grid-area: table;
    display: block;
    font-size: 3.2rem;
    line-height: 1.5;
    font-weight: 500;
  }
  .intro__table thead,
  .intro__table tbody,
  .intro__table tfoot,
  .intro__table tr,
  .intro__table th,
  .intro__table td {
    display: block;
  }
  .intro__table tbody {
    display: grid;
    grid-template-columns: 320fr 320fr 840fr;
    gap: 200px;
  }
  .intro__table tr {
    display: flex;
    align-items: flex-start;
    gap: 3.2rem;
    position: relative;
    min-width: 0;
  }
  .intro__table tr::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -7.4rem;
    width: 0.1rem;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(204, 204, 204, 0) 0%, rgb(204, 204, 204) 50%, rgba(204, 204, 204, 0) 100%);
  }
  .intro__table tr:first-child::before {
    display: none;
  }
  .intro__table th,
  .intro__table td {
    padding: 0;
  }
  .intro__table th {
    font-size: 3.2rem;
    flex: 0 0 auto;
  }
  .intro__table td {
    flex: 1;
  }
  .intro__table mark {
    display: flex;
    align-items: center;
    font-size: 10rem;
    white-space: nowrap;
  }
  .intro__table sub {
    bottom: -1em;
    font-size: 3.2rem;
  }
  .intro__table br {
    display: block;
  }
}

.details {
  padding: 6rem 0 3.2rem;
  background: #000;
  color: #fff;
  position: relative;
  z-index: 5;
}
@media (min-width: 992px) {
  .details {
    padding: 8rem 0 17rem;
  }
}

.details__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.details__image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(32, 32, 32, 0.3) 0%, rgba(32, 32, 32, 0.6) 55%, rgb(32, 32, 32) 100%);
}
.details__image img {
  display: block;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  position: relative;
  top: -20%;
}

.details__mark {
  display: block;
  margin: 0 0 2rem;
  font: 400 1.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .details__mark {
    font-size: 1.4rem;
    margin: 0 0 6rem;
  }
}

.details__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media (min-width: 992px) {
  .details__list {
    gap: 7rem;
  }
  .details__list > li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
  }
  .details__list > li:nth-child(even) .details__card {
    float: right;
    max-width: 133.2rem;
  }
  .details__list > li:nth-child(even) .details__card-title {
    text-align: right;
  }
  .details__list > li:nth-child(even) .details__card-desc {
    padding: 5rem 0 5rem 7rem;
  }
  .details__list > li:nth-child(even) .details__card-desc::before {
    right: auto;
    left: 0;
    border-radius: 6rem 0 0 6rem;
  }
}

@media (min-width: 992px) {
  .details__card {
    max-width: 88.4rem;
    float: left;
  }
}

.details__card-title {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .details__card-title {
    font-size: 9rem;
    margin: 0 0 4rem;
  }
}

.details__card-desc {
  background: #fff;
  border-radius: 1.6rem;
  padding: 4rem 2rem;
  color: #101010;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}
.details__card-desc p {
  margin: 0 0 1.6rem;
}
.details__card-desc b,
.details__card-desc strong {
  font-weight: 500;
}
.details__card-desc a {
  text-decoration: underline;
  color: #101010;
  font-weight: 400;
}
.details__card-desc a:hover {
  text-decoration: underline;
  color: #101010;
  opacity: 0.5;
}
.details__card-desc ul {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
}
.details__card-desc ul > li {
  position: relative;
  padding: 0 0 0 1.6rem;
}
.details__card-desc ul > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0.8rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  margin: -0.2rem -0.2rem 0;
}
.details__card-desc *:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .details__card-desc {
    padding: 5rem 3.2rem 5rem 0;
    font-size: 2.2rem;
    line-height: 1.45;
    font-weight: 400;
    width: 100%;
    background: none;
    position: relative;
  }
  .details__card-desc::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100vw;
    border-radius: 0 6rem 6rem 0;
    background: #fff;
  }
  .details__card-desc p {
    margin: 0 0 1.2rem;
  }
  .details__card-desc ul > li {
    padding: 0 0 0 3.2rem;
  }
  .details__card-desc ul > li::before {
    left: 1.6rem;
  }
}

.targets {
  padding: 4.8rem 0 4rem;
  margin: 0;
  background: #202020;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .targets {
    padding: 18rem 0 6rem;
  }
}

.targets__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .targets__title {
    font-size: 9rem;
    margin: 0 0 6rem;
  }
}

.targets__list {
  margin: 0 -1rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.targets__list > li:nth-child(even) .targets__card {
  padding: 6rem 1rem 3.2rem;
}
.targets__list > li:nth-child(even) .targets__card-icon {
  top: -2.2rem;
  right: -0.8rem;
  left: auto;
  bottom: auto;
  transform: rotate(15.54deg);
}
@media (min-width: 768px) {
  .targets__list {
    margin: 0;
    grid-template-columns: 735fr 585fr 436fr;
  }
}
@media (min-width: 992px) {
  .targets__list {
    margin: 0;
    grid-template-columns: 735fr 585fr 436fr;
  }
  .targets__list > li:nth-child(even) .targets__card {
    padding: 10.4rem 3.2rem 3.2rem;
  }
  .targets__list > li:nth-child(even) .targets__card-icon {
    top: -2.8rem;
    right: -2.8rem;
    left: auto;
    bottom: auto;
    width: 18.2rem;
    height: 18.2rem;
    transform: rotate(15.54deg);
  }
  .targets__list > li:nth-child(3n) .targets__card-icon {
    right: 1.2rem;
    bottom: -9rem;
    width: 21.5rem;
    height: 21.5rem;
    transform: rotate(0deg);
  }
}

.targets__card {
  background: #fff;
  color: #101010;
  padding: 3.2rem 1rem 8rem;
  position: relative;
  z-index: 5;
  overflow: hidden;
  height: 100%;
  min-height: 21.2rem;
}
@media (min-width: 768px) {
  .targets__card {
    border-radius: 1.6rem;
  }
}
@media (min-width: 992px) {
  .targets__card {
    border-radius: 2rem;
    min-height: 26.8rem;
    padding: 3.2rem 3.2rem 8rem;
  }
}

.targets__card-icon {
  position: absolute;
  right: -1.8rem;
  bottom: -2.8rem;
  z-index: -1;
  width: 13.8rem;
  height: 13.8rem;
  margin: 0;
  transform: rotate(-37.46deg);
  opacity: 0.6;
  color: #a8a8a8;
}
.targets__card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .targets__card-icon {
    width: 26.8rem;
    height: 26.8rem;
    right: -3rem;
    bottom: -5.5rem;
  }
}

.targets__card-title {
  display: block;
  margin: 0 0 1.2rem;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width: 992px) {
  .targets__card-title {
    font-size: 3.2rem;
  }
}

.targets__card-text {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 992px) {
  .targets__card-text {
    font-size: 1.8rem;
    max-width: 44.8rem;
  }
}

.roadmap {
  padding: 4rem 0;
  margin: 0 0 8rem;
  background: hsl(0, 0%, 13%);
  color: #fff;
}
@media (min-width: 992px) {
  .roadmap {
    padding: 6rem 0 17rem;
    margin: 0 0 18rem;
  }
}

.roadmap__mark {
  display: block;
  margin: 0 0 2.2rem;
  font: 400 1.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
  color: #8a8a8a;
}
@media (min-width: 992px) {
  .roadmap__mark {
    font-size: 1.4rem;
    margin: 0 0 3.2rem;
  }
}

.roadmap__title {
  display: block;
  margin: 0 0 4.5rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .roadmap__title {
    font-size: 9rem;
    margin: 0 0 6rem;
  }
}

.roadmap__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 2rem;
}
.roadmap__table th,
.roadmap__table td {
  vertical-align: middle;
  padding: 2rem 0.8rem;
}
.roadmap__table th:first-child,
.roadmap__table td:first-child {
  padding-left: 0;
}
.roadmap__table th:last-child,
.roadmap__table td:last-child {
  padding-right: 0;
  text-align: right;
}
.roadmap__table th:nth-child(3),
.roadmap__table td:nth-child(3) {
  display: none;
}
.roadmap__table th {
  padding: 0 0.8rem 1.2rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
}
.roadmap__table td {
  height: 7.8rem;
}
.roadmap__table td:first-child {
  font: 300 3.6rem/1 var(--font-secondary);
}
.roadmap__table td:last-child {
  font-size: 1.4rem;
}
.roadmap__table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 992px) {
  .roadmap__table {
    font-size: 2.4rem;
  }
  .roadmap__table th,
  .roadmap__table td {
    height: 12.4rem;
    padding: 1rem 2.2rem;
  }
  .roadmap__table th:nth-child(1),
  .roadmap__table td:nth-child(1) {
    width: 12.6rem;
  }
  .roadmap__table th:nth-child(2),
  .roadmap__table td:nth-child(2) {
    width: 45.4rem;
  }
  .roadmap__table th:nth-child(3),
  .roadmap__table td:nth-child(3) {
    display: table-cell;
  }
  .roadmap__table th {
    font-size: 3.2rem;
    height: auto;
    padding-bottom: 2rem;
  }
  .roadmap__table th:last-child {
    font-size: 4.8rem;
    text-align: right;
  }
  .roadmap__table td:first-child {
    font-size: 6.6rem;
  }
  .roadmap__table td:last-child {
    font-size: 3.2rem;
  }
}

.roadmap__tetris {
  display: none;
}
@media (min-width: 992px) {
  .roadmap__tetris {
    margin: -1rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    top: -1rem;
  }
  .roadmap__tetris > li {
    flex: 0 0 auto;
  }
  .roadmap__tetris svg {
    display: block;
    width: 8rem;
    height: 8rem;
  }
}

.stages {
  margin: 0 0 8rem;
}
@media (min-width: 992px) {
  .stages {
    margin: 0 0 17rem;
  }
}

.stages__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .stages__title {
    font-size: 9rem;
    margin: 0 0 11rem;
  }
}

.stages__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media (min-width: 992px) {
  .stages__list {
    gap: 8.5rem;
  }
}

.stages__card-head {
  margin: 0 0 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
@media (min-width: 992px) {
  .stages__card-head {
    margin: 0 0 6rem;
    gap: 6rem;
    align-items: flex-end;
  }
}

.stages__card-number {
  display: block;
  margin: 0;
  font: 300 3.6rem/0.8 var(--font-secondary);
  text-transform: uppercase;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .stages__card-number {
    font-size: 14.5rem;
  }
}

.stages__card-title {
  display: block;
  margin: 0;
  font: 400 2.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  flex: 1;
  align-self: center;
}
@media (min-width: 992px) {
  .stages__card-title {
    font-size: 6rem;
    line-height: 1;
    font-weight: 400;
    align-self: unset;
  }
  .stages__card-title br {
    display: none;
  }
}

@media (min-width: 768px) {
  .stages__card-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
}
@media (min-width: 992px) {
  .stages__card-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
}

.stages__card-desc {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 400;
  position: relative;
  padding: 1rem 0 1rem 3rem;
  margin: 0 0 3rem;
  max-height: 35rem;
  overflow-x: hidden;
  overflow-y: auto;
}
.stages__card-desc::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0.5rem;
  bottom: 0;
  width: 0.2rem;
  background: linear-gradient(to bottom, rgba(234, 163, 138, 0) 0%, rgb(226, 157, 145) 10%, rgb(137, 80, 228) 46%, rgba(129, 72, 236, 0) 100%);
}
.stages__card-desc p {
  margin: 0 0 1.6rem;
}
.stages__card-desc strong {
  font-size: 1.8rem;
}
.stages__card-desc *:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .stages__card-desc {
    font-size: 1.8rem;
    line-height: 1.775;
    font-weight: 400;
    margin: 0 0 0 1rem;
    padding: 0 0 0 3rem;
    max-width: 76.4rem;
    max-height: 44.5rem;
  }
  .stages__card-desc p {
    margin: 0 0 3.2rem;
  }
  .stages__card-desc strong {
    font-size: 2.4rem;
  }
}

.stages__card-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 340/230;
  position: relative;
  background: #000;
}
.stages__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .stages__card-image {
    border-radius: 3rem;
    aspect-ratio: 884/445;
  }
}

.results {
  padding: 8rem 0;
  background: #202020;
  color: #fff;
}
@media (min-width: 992px) {
  .results {
    padding: 14rem 0 0;
  }
}

.results__title {
  display: block;
  margin: 0 0 2.2rem;
  font: 400 3.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .results__title {
    font-size: 9rem;
    margin: 0 0 5rem;
  }
}

.results__mark {
  display: block;
  margin: 0 0 3.5rem;
  font: 400 1.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  color: #8a8a8a;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .results__mark {
    font-size: 1.4rem;
    margin: 0 0 9rem;
  }
}

.results__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7rem;
}
@media (min-width: 992px) {
  .results__list {
    gap: 16rem;
  }
}

.results__card {
  position: relative;
  z-index: 50;
}
.results__card::after {
  content: "";
  display: block;
  position: absolute;
  left: -7rem;
  right: -7rem;
  bottom: 0;
  height: 0.1rem;
  background: linear-gradient(to right, rgba(204, 204, 204, 0) 0%, rgb(182, 182, 182) 50%, rgba(204, 204, 204, 0) 100%);
  opacity: 0.5;
}

.results__card-image {
  position: absolute;
  top: 0;
  left: -1rem;
  right: -1rem;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  z-index: -1;
  pointer-events: none;
}
.results__card-image img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media (min-width: 768px) {
  .results__card-image {
    left: -3.5rem;
    right: -3.5rem;
  }
}
@media (min-width: 992px) {
  .results__card-image {
    left: -7rem;
    right: -7rem;
  }
  .results__card-image img {
    width: 100%;
    height: auto;
  }
}

.results__card-title {
  display: block;
  margin: 0 0 5rem;
  font: 400 2.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .results__card-title {
    font-size: 6rem;
    margin: 0 0 16.5rem;
  }
}

.results__card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.results__card-list > li {
  padding: 0 0 3.5rem;
  margin: 0 0 3.5rem;
  position: relative;
}
.results__card-list > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 0.1rem;
  background: linear-gradient(to right, rgba(204, 204, 204, 0) 0%, rgb(182, 182, 182) 50%, rgba(204, 204, 204, 0) 100%);
}
@media (min-width: 992px) {
  .results__card-list {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
  }
  .results__card-list > li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 4.5rem 8rem;
    margin: 0;
  }
  .results__card-list > li::after {
    display: none;
  }
  .results__card-list > li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    width: 0.1rem;
    background: linear-gradient(to bottom, rgba(204, 204, 204, 0) 0%, rgb(182, 182, 182) 50%, rgba(204, 204, 204, 0) 100%);
    opacity: 0.5;
  }
  .results__card-list > li:last-child::before {
    display: none;
  }
  .results__card-list > li:nth-child(3n) .results__card-line {
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='101' viewBox='0 0 56 101' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M27.7266 3.03811C27.1953 3.18912 26.8871 3.7422 27.0381 4.27344L29.499 12.9304C29.65 13.4617 30.2031 13.7699 30.7344 13.6189C31.2656 13.4679 31.5738 12.9148 31.4228 12.3836L29.2353 4.68845L36.9304 2.50097C37.4617 2.34995 37.7699 1.79688 37.6189 1.26564C37.4679 0.734402 36.9148 0.426171 36.3836 0.577185L27.7266 3.03811ZM53.5004 34L52.5459 34.2983L53.5004 34ZM9.00035 82L9.98219 82.1897L9.00035 82ZM8.4406 100.829C8.89826 101.138 9.51987 101.017 9.82901 100.56L14.8668 93.1018C15.1759 92.6442 15.0556 92.0226 14.5979 91.7134C14.1402 91.4043 13.5186 91.5247 13.2095 91.9823L8.73145 98.6116L2.10218 94.1336C1.64453 93.8244 1.02291 93.9448 0.713768 94.4025C0.404624 94.8601 0.525017 95.4817 0.982673 95.7909L8.4406 100.829ZM28 4C27.5132 4.87351 27.513 4.8734 27.5129 4.87334C27.5129 4.87337 27.5129 4.87335 27.513 4.87342C27.5133 4.87355 27.5138 4.87385 27.5146 4.87432C27.5163 4.87525 27.5191 4.87684 27.5231 4.87909C27.5311 4.88358 27.5437 4.89072 27.5608 4.90047C27.595 4.91999 27.6472 4.94999 27.7165 4.99041C27.8549 5.07126 28.0613 5.19373 28.3276 5.35719C28.8602 5.68413 29.6321 6.17477 30.5789 6.82386C32.4735 8.12263 35.0638 10.0525 37.8378 12.5712C43.3974 17.619 49.6327 24.9753 52.5459 34.2983L53.5004 34L54.4548 33.7017C51.3942 23.9069 44.8793 16.2632 39.1822 11.0905C36.3278 8.49886 33.6631 6.51335 31.7098 5.17426C30.7327 4.50443 29.9324 3.99554 29.3738 3.65268C29.0945 3.48124 28.8756 3.35124 28.725 3.26335C28.6498 3.2194 28.5916 3.18596 28.5516 3.16313C28.5316 3.15171 28.5161 3.14294 28.5052 3.13683C28.4998 3.13378 28.4956 3.13139 28.4925 3.12967C28.4909 3.1288 28.4897 3.12811 28.4888 3.12758C28.4883 3.12731 28.4878 3.12704 28.4876 3.12691C28.4871 3.12668 28.4868 3.12649 28 4ZM53.5004 34L52.5459 34.2983C53.4539 37.2042 53.527 39.6624 53.0046 41.8007C52.4815 43.9416 51.3432 45.8353 49.7142 47.5815C46.4196 51.1132 41.2395 53.9251 35.4757 56.8458C29.7798 59.7321 23.5529 62.7072 18.4689 66.5449C13.3619 70.4 9.29464 75.2057 8.01851 81.8103L9.00035 82L9.98219 82.1897C11.1307 76.2456 14.7913 71.8268 19.6738 68.1412C24.5794 64.4382 30.6039 61.5566 36.3798 58.6298C42.0878 55.7374 47.5999 52.7799 51.1767 48.9458C52.9833 47.0091 54.3255 44.8207 54.9474 42.2754C55.57 39.7274 55.4527 36.8953 54.4548 33.7017L53.5004 34ZM9.00035 82L8.01851 81.8103C7.12617 86.4286 7.12876 91.0208 7.34954 94.4434C7.46016 96.1582 7.62616 97.588 7.76495 98.5916C7.83437 99.0936 7.89706 99.4895 7.94274 99.7617C7.96558 99.8978 7.98418 100.003 7.99724 100.075C8.00378 100.111 8.00893 100.139 8.01254 100.158C8.01435 100.168 8.01577 100.175 8.01679 100.181C8.0173 100.183 8.0177 100.185 8.018 100.187C8.01816 100.188 8.01828 100.188 8.01838 100.189C8.01843 100.189 8.01848 100.19 8.01851 100.19C8.01856 100.19 8.0186 100.19 9.00035 100C9.98211 99.8099 9.98214 99.81 9.98216 99.8101C9.98216 99.8101 9.98217 99.8102 9.98217 99.8102C9.98216 99.8101 9.98213 99.81 9.98207 99.8097C9.98195 99.809 9.98173 99.8079 9.98141 99.8062C9.98077 99.8028 9.97972 99.7973 9.97828 99.7896C9.97541 99.7743 9.971 99.7505 9.96521 99.7186C9.95362 99.6546 9.93652 99.5579 9.91515 99.4306C9.87242 99.176 9.81269 98.7992 9.74609 98.3176C9.61285 97.3542 9.4524 95.9734 9.34539 94.3146C9.13092 90.9899 9.13351 86.5821 9.98219 82.1897L9.00035 82Z' fill='%23BCBCBC'/%3E%3C/svg%3E%0A");
  }
  .results__card-list > li:nth-child(3n-1) .results__card-line {
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='100' viewBox='0 0 19 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M4.84114 0.559987C4.32199 0.371581 3.74839 0.639706 3.55999 1.15886L0.48973 9.61897C0.301324 10.1381 0.569449 10.7117 1.0886 10.9001C1.60776 11.0885 2.18135 10.8204 2.36976 10.3013L5.09887 2.78115L12.619 5.51027C13.1381 5.69868 13.7117 5.43055 13.9001 4.9114C14.0885 4.39224 13.8204 3.81865 13.3013 3.63024L4.84114 0.559987ZM14.9961 37.5L15.9877 37.3704L14.9961 37.5ZM4.49615 64.5L3.50033 64.5914L4.49615 64.5ZM14.698 99.4545C15.2252 99.6192 15.786 99.3253 15.9507 98.7981L18.634 90.2075C18.7987 89.6803 18.5048 89.1195 17.9776 88.9548C17.4505 88.7901 16.8896 89.084 16.725 89.6112L14.3398 97.2473L6.70363 94.8621C6.17646 94.6975 5.61562 94.9913 5.45096 95.5185C5.28629 96.0457 5.58016 96.6065 6.10733 96.7712L14.698 99.4545ZM4.5 1.5C3.59409 1.92347 3.59406 1.9234 3.59406 1.9234C3.5941 1.92348 3.59412 1.92354 3.59421 1.92372C3.59437 1.92406 3.59465 1.92467 3.59505 1.92553C3.59586 1.92727 3.59715 1.93004 3.59892 1.93384C3.60245 1.94145 3.6079 1.9532 3.6152 1.96901C3.6298 2.00064 3.65183 2.04856 3.68086 2.1123C3.73894 2.23976 3.82505 2.43047 3.93588 2.68063C4.15755 3.18096 4.47805 3.91894 4.87083 4.8642C5.65651 6.75496 6.73082 9.47353 7.88177 12.7769C10.1857 19.3895 12.7873 28.3189 14.0046 37.6296L14.9961 37.5L15.9877 37.3704C14.7464 27.8756 12.0999 18.805 9.77042 12.1189C8.60466 8.77301 7.51592 6.01762 6.71773 4.09675C6.31858 3.13618 5.99193 2.38393 5.76445 1.87048C5.6507 1.61374 5.56173 1.41668 5.50087 1.28309C5.47044 1.2163 5.44703 1.16537 5.43107 1.13079C5.42308 1.11349 5.41696 1.10029 5.41275 1.09122C5.41065 1.08669 5.40902 1.0832 5.40788 1.08075C5.40731 1.07952 5.40686 1.07856 5.40653 1.07785C5.40636 1.0775 5.40621 1.07717 5.40613 1.077C5.406 1.07673 5.40591 1.07653 4.5 1.5ZM14.9961 37.5L14.0046 37.6296C14.6788 42.7869 12.0696 46.4108 9.10672 50.3842C6.20287 54.2784 2.94332 58.5224 3.50033 64.5914L4.49615 64.5L5.49196 64.4086C5.01497 59.2115 7.73873 55.5645 10.71 51.5797C13.6223 47.6741 16.7801 43.4311 15.9877 37.3704L14.9961 37.5ZM4.49615 64.5L3.50033 64.5914C4.28883 73.1825 6.94803 81.7785 9.39414 88.2029C10.6193 91.4206 11.7955 94.1054 12.6664 95.9876C13.1019 96.9289 13.4613 97.67 13.7126 98.1772C13.8383 98.4308 13.9369 98.626 14.0045 98.7585C14.0383 98.8248 14.0644 98.8754 14.0822 98.9099C14.0911 98.9271 14.0979 98.9403 14.1027 98.9493C14.105 98.9539 14.1068 98.9574 14.1081 98.9598C14.1088 98.9611 14.1093 98.962 14.1097 98.9628C14.1098 98.9631 14.11 98.9635 14.1101 98.9636C14.1103 98.9639 14.1104 98.9641 14.9961 98.5C15.8819 98.0359 15.882 98.036 15.882 98.036C15.8819 98.0359 15.8819 98.0358 15.8818 98.0357C15.8816 98.0354 15.8813 98.0348 15.8809 98.0339C15.88 98.0322 15.8786 98.0295 15.8767 98.0258C15.8728 98.0183 15.8667 98.0067 15.8587 97.9911C15.8425 97.9599 15.8182 97.9126 15.7861 97.8497C15.7219 97.7239 15.6268 97.5357 15.5048 97.2894C15.2607 96.7967 14.909 96.0716 14.4815 95.1477C13.6264 93.2995 12.4689 90.6579 11.2632 87.4913C8.8477 81.1471 6.25691 72.7431 5.49196 64.4086L4.49615 64.5Z' fill='%23BCBCBC'/%3E%3C/svg%3E%0A");
  }
  .results__card-list > li:nth-child(3n-2) .results__card-line {
    background-image: url("data:image/svg+xml,%3Csvg width='53' height='121' viewBox='0 0 53 121' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M42.9478 0.681207C42.7718 0.157738 42.2047 -0.123889 41.6812 0.0521758L33.1508 2.92132C32.6273 3.09738 32.3457 3.66447 32.5218 4.18793C32.6978 4.7114 33.2649 4.99303 33.7884 4.81697L41.371 2.26662L43.9213 9.84921C44.0974 10.3727 44.6645 10.6543 45.1879 10.4782C45.7114 10.3022 45.993 9.73509 45.817 9.21162L42.9478 0.681207ZM34.5 28L35.499 27.9562L34.5 28ZM51 61L50.0039 60.9115L51 61ZM0.00567561 118.894C-0.0530826 119.443 0.344459 119.936 0.893609 119.994L9.84253 120.952C10.3917 121.011 10.8845 120.613 10.9432 120.064C11.002 119.515 10.6045 119.022 10.0553 118.963L2.10072 118.112L2.95184 110.157C3.0106 109.608 2.61306 109.116 2.06391 109.057C1.51476 108.998 1.02195 109.396 0.963195 109.945L0.00567561 118.894ZM42 1C41.1044 0.555208 41.1043 0.555399 41.1041 0.55565C41.1041 0.555816 41.1039 0.556129 41.1037 0.55646C41.1034 0.557122 41.103 0.558029 41.1024 0.559178C41.1013 0.561478 41.0996 0.56475 41.0975 0.568984C41.0934 0.577454 41.0873 0.589773 41.0794 0.605863C41.0636 0.638041 41.0405 0.6853 41.0106 0.746992C40.9508 0.870371 40.8638 1.05151 40.7536 1.28521C40.5332 1.75257 40.2199 2.43046 39.8459 3.27737C39.0983 4.9704 38.1065 7.34288 37.1292 10.0619C35.1878 15.4634 33.2522 22.3699 33.501 28.0438L34.5 28L35.499 27.9562C35.2685 22.6972 37.0829 16.1037 39.0113 10.7384C39.969 8.07407 40.942 5.74646 41.6755 4.08526C42.0421 3.25504 42.3485 2.59228 42.5626 2.13826C42.6696 1.91128 42.7535 1.73655 42.8104 1.61923C42.8388 1.56057 42.8605 1.51628 42.8748 1.48699C42.882 1.47234 42.8874 1.46145 42.8909 1.45439C42.8926 1.45086 42.8939 1.44829 42.8947 1.44669C42.8951 1.44588 42.8954 1.44532 42.8955 1.44501C42.8956 1.44485 42.8956 1.4448 42.8957 1.44472C42.8957 1.44472 42.8956 1.44479 42 1ZM34.5 28L33.501 28.0438C33.8348 35.66 38.5672 40.5851 42.7225 45.1862C46.9458 49.8628 50.5987 54.2147 50.0039 60.9115L51 61L51.9961 61.0885C52.6759 53.4333 48.3943 48.4826 44.2068 43.8458C39.9512 39.1335 35.7962 34.7346 35.499 27.9562L34.5 28ZM51 61L50.0039 60.9115C49.6086 65.3624 46.4364 71.1673 41.6757 77.4887C36.951 83.7625 30.7924 90.379 24.664 96.4239C18.5395 102.465 12.4648 107.916 7.91966 111.858C5.64762 113.828 3.75906 115.421 2.43921 116.52C1.77931 117.069 1.26165 117.496 0.909404 117.784C0.733282 117.928 0.598517 118.038 0.508005 118.112C0.46275 118.148 0.428558 118.176 0.405792 118.194C0.39441 118.204 0.385883 118.211 0.380259 118.215C0.377447 118.217 0.37536 118.219 0.374004 118.22C0.373326 118.221 0.37286 118.221 0.37252 118.221C0.372236 118.222 0.372136 118.222 1 119C1.62786 119.778 1.62813 119.778 1.62858 119.778C1.62898 119.777 1.62962 119.777 1.63041 119.776C1.63199 119.775 1.6343 119.773 1.63734 119.771C1.64342 119.766 1.65241 119.758 1.66425 119.749C1.68794 119.73 1.72306 119.701 1.76927 119.664C1.86167 119.589 1.99839 119.477 2.17651 119.331C2.53275 119.04 3.05466 118.61 3.71904 118.057C5.04775 116.95 6.94661 115.349 9.23005 113.369C13.7959 109.409 19.9043 103.928 26.0685 97.8478C32.2289 91.7713 38.4647 85.0771 43.2734 78.6919C48.0462 72.3543 51.5464 66.1521 51.9961 61.0885L51 61Z' fill='%23BCBCBC'/%3E%3C/svg%3E%0A");
  }
}

.results__card-pct {
  display: block;
  margin: 0 0 9.6rem;
  font-size: 21rem;
  line-height: 0.8;
  font-weight: 300;
}
.results__card-pct small {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #eaeaea;
  padding: 1rem 0 0;
}
@media (min-width: 992px) {
  .results__card-pct {
    font-size: 21rem;
    margin: 0 0 1.2rem;
  }
  .results__card-pct small {
    font-size: 3.2rem;
    padding: 2rem 0 0;
  }
}

.results__card-line {
  display: none;
}
@media (min-width: 992px) {
  .results__card-line {
    display: block;
    margin: 0 auto 1.2rem;
    width: 5.3rem;
    height: 12rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
  }
}

.results__card-caption {
  display: block;
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 992px) {
  .results__card-caption {
    font-size: 3.2rem;
  }
}

.features {
  padding: 8rem 0;
  margin: 0 0 8rem;
  background: #202020;
  color: #fff;
  position: relative;
  z-index: 50;
  overflow: hidden;
}
@media (min-width: 992px) {
  .features {
    padding: 10rem 0 15rem;
  }
}

.features__title {
  display: block;
  margin: 0 0 2.2rem;
  font: 400 2.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: -0.0275em;
}
@media (min-width: 992px) {
  .features__title {
    font-size: 6rem;
    margin: 0 0 7rem;
  }
}

.features__tagline {
  margin: 0 0 3.2rem;
  font: 300 1.8rem/1.25 var(--font-primary);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 992px) {
  .features__tagline {
    margin: 0 0 8rem;
    gap: 4rem;
    font-size: 4.2rem;
  }
}

.features__tagline-row:first-child {
  text-align: left;
}
.features__tagline-row:last-child {
  text-align: right;
}

.features__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 400;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.features__list > li {
  position: relative;
  padding: 0 0 0 2.4rem;
}
.features__list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.55em;
  left: 1.2rem;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: currentColor;
  margin: -0.1rem -0.1rem 0;
}
@media (min-width: 992px) {
  .features__list {
    font-size: 2.4rem;
    line-height: 1.33;
    font-weight: 400;
    max-width: 123rem;
    margin: 0 auto;
    gap: 3.2rem;
  }
  .features__list > li {
    padding: 0 0 0 3.2rem;
  }
  .features__list > li::before {
    left: 1.6rem;
  }
}

.features__cube {
  display: block;
  z-index: -1;
  background: url(../assets/images/features/cube.webp) center center no-repeat;
  background-size: contain;
  will-change: transform;
}
.features__cube--01 {
  position: absolute;
  bottom: 27.6rem;
  right: 100%;
  width: 14.8rem;
  height: 12.6rem;
  transform: rotate(120deg);
  margin: 0 -6.5rem 0 0;
}
.features__cube--02 {
  position: absolute;
  left: 100%;
  bottom: 5.4rem;
  width: 12rem;
  height: 10.8rem;
  margin: 0 0 0 -6.7rem;
}
@media (min-width: 992px) {
  .features__cube--01 {
    width: 52.8rem;
    height: 44.8rem;
    bottom: 18.8rem;
    margin: 0 -21.5rem 21.5rem 0;
  }
  .features__cube--02 {
    width: 40rem;
    height: 34rem;
    top: 40rem;
    left: 100%;
    right: auto;
    bottom: auto;
    margin: 0 0 0 -24.7rem;
  }
  
}
.targets__cube {
  display: block;
  z-index: 0;
  background: url(../assets/images/features/cube.webp) center center no-repeat;
  background-size: contain;
  will-change: transform;
  position: absolute;
}

/* Кубик слева сверху */
.targets__cube--01 {
  top: 10rem;
  left: 0;
  width: 14.8rem;
  height: 12.6rem;
  transform: translateX(-50%) rotate(120deg);
}

/* Кубик справа снизу */
.targets__cube--02 {
  bottom: 5rem;
  right: 0;
  width: 12rem;
  height: 10.8rem;
  transform: translateX(50%) rotate(0deg);
}

@media (min-width: 768px) {
  .targets__cube--01 {
    width: 20rem;
    height: 17rem;
    top: 8rem;
  }
  
  .targets__cube--02 {
    width: 18rem;
    height: 15rem;
    bottom: 8rem;
  }
}

@media (min-width: 992px) {
  .targets__cube--01 {
    width: 40rem;
    height: 34rem;
    top: 20rem;
    transform: translateX(-50%) rotate(120deg);
  }
  
  .targets__cube--02 {
    width: 32rem;
    height: 27rem;
    bottom: 10rem;
    transform: translateX(30%) rotate(0deg);
  }
}
