@charset "UTF-8";
/* stylelint-disable */
:root {
  --font-family: "NT Somic", sans-serif;
  --second-family: "Bebas Neue", sans-serif;
  --content-width: 1760px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --black: #171717;
  --white: #fff;
  --red-error: #dd4619;
  --gray-light: #c0c0c0;
  --gray-base: #7c7c7c;
  --gray-dark: #1d1d1d;
  --font-lit: 1rem;
  --font-default: 1.125rem;
  --font-medium: 1.75rem;
  --font-medium-xl: 2.5rem;
  --font-big: 4.375rem;
  --gutter: 0;
}

/* stylelint-disable */
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/../fonts/BebasNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/../fonts/BebasNeue-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "NT Somic";
  src: url("../fonts/../fonts/NTSomic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "NT Somic";
  src: url("../fonts/../fonts/NTSomic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  color: var(--black);
  background: var(--black);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
.page.lenis-stopped {
  overflow: hidden;
}

.page__body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: clamp(1rem, 0.9267rem + 0.3008vw, 1.25rem);
  line-height: normal;
  color: var(--gray-base);
}
.page__body.lock-scroll {
  overflow: hidden;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--gray-base);
  }
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
.container--relative {
  position: relative;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.button {
  outline: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.button svg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-dasharray: 180 540;
  stroke-dashoffset: 100;
  stroke-width: 4px;
  -webkit-transition: stroke-dashoffset 5s ease-in-out;
  transition: stroke-dashoffset 5s ease-in-out;
  -webkit-animation: slide-in 5s infinite linear;
  animation: slide-in 5s infinite linear;
  pointer-events: none;
}
.button--big {
  padding: clamp(0.5rem, 0.39rem + 0.4511vw, 0.875rem) clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem) clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
  font-size: clamp(1.125rem, 1.015rem + 0.4511vw, 1.5rem);
  line-height: normal;
}
.button--round {
  position: relative;
  color: var(--white);
}
.button--round::before, .button--round::after {
  content: "";
  position: absolute;
  border: 2px solid var(--white);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}
@media (max-width: 1024px) {
  .button--round::before, .button--round::after {
    border-width: 1px;
    width: 13px;
    height: 13px;
  }
}
.button--round::after {
  right: 0;
  top: 0;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.button--round::before {
  left: 0;
  bottom: 0;
  border-top-color: transparent;
  border-right-color: transparent;
}
@media (any-hover: hover) {
  .button--round:hover:hover::before, .button--round:hover:hover::after {
    width: 100%;
    height: 100%;
  }
  .button--round:hover:active {
    background-color: rgba(255, 255, 255, 0.05);
  }
}
.button--white {
  color: var(--black);
  background-color: var(--white);
}
@media (any-hover: hover) {
  .button--white:hover:hover {
    background-color: #efefef;
  }
}
.button--white:active {
  background-color: #dcdcdc;
}

@-webkit-keyframes slide-in {
  from {
    stroke-dashoffset: 180;
  }
  to {
    stroke-dashoffset: -540;
  }
}

@keyframes slide-in {
  from {
    stroke-dashoffset: 180;
  }
  to {
    stroke-dashoffset: -540;
  }
}
.logo__image {
  width: clamp(7rem, 5.7904rem + 4.9624vw, 11.125rem);
  height: clamp(2.625rem, 2.2951rem + 1.3534vw, 3.75rem);
}
.logo__text {
  font-size: 0.625rem;
}
@media (max-width: 1024px) {
  .logo__text {
    display: none;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  padding: 2rem 0 1rem;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 1024px) {
  .header {
    padding: 1rem 0;
  }
}
.header.js-scroll {
  background-color: var(--black);
}
.header.js-scroll .header__button {
  margin: 0;
  opacity: 1;
  pointer-events: all;
}
.header.js-scroll .main-menu {
  -webkit-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  transform: translateY(1rem);
}
@media (max-width: 1024px) {
  .header.js-scroll .main-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (min-width: 1025px) {
  .header.js-scroll {
    top: -1rem;
  }
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1.25rem, 0.5169rem + 3.0075vw, 3.75rem);
}
.header__link {
  font-size: clamp(1rem, 0.9267rem + 0.3008vw, 1.25rem);
}
@media (max-width: 1024px) {
  .header__link--desktop {
    display: none;
  }
}
.header__button {
  margin-right: -18.5vw;
  opacity: 0;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  pointer-events: none;
}
@media (width >= 1921px) {
  .header__button {
    margin-right: -356px;
  }
}
@media (max-width: 1366px) {
  .header__button {
    display: none;
  }
}

.burger {
  position: relative;
  z-index: 5500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.burger__line {
  position: relative;
  width: 2.5rem;
  height: 2px;
  background: rgb(255, 255, 255);
  background-color: var(--white);
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}
.burger__line::before, .burger__line::after {
  width: 2.5rem;
  height: 2px;
  background-color: var(--white);
}
.burger__line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.625rem;
  background: rgb(255, 255, 255);
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.burger__line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  background: rgb(255, 255, 255);
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.burger.js-active .burger__line {
  background: rgba(255, 255, 255, 0);
}
.burger.js-active .burger__line::after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.burger.js-active .burger__line::before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.form__desc {
  margin-bottom: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--white);
  text-wrap: balance;
}
.form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
}
.form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
  gap: 1.25rem;
}
@media (max-width: 576px) {
  .form__footer .button {
    width: 100%;
  }
}
.form__footer-desc {
  font-size: 1rem;
  color: var(--gray-light);
  text-wrap: balance;
}
@media (max-width: 576px) {
  .form__footer-desc {
    width: 100%;
    text-wrap: normal;
  }
}

.just-validate-error-label {
  position: absolute;
  margin-top: 4px;
  font-size: 0.875rem;
}

.pagination-default {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: -0.5rem;
  height: 0.6875rem;
}
.pagination-default .swiper-pagination-bullet {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--gray-base);
}
.pagination-default .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.footer {
  padding: clamp(1.25rem, 0.0954rem + 4.7368vw, 5.1875rem) 0 0;
  background: var(--gray-dark);
}
.footer__grid {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 19.625rem 10.3125rem 16.5rem 15.4375rem;
  grid-template-columns: 19.625rem 10.3125rem 16.5rem 15.4375rem;
  gap: 3.75rem;
}
@media (max-width: 1366px) {
  .footer__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .footer__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.footer__item-title {
  margin-bottom: 1.25rem;
  font-family: var(--font-family);
  font-size: clamp(1.125rem, 1.015rem + 0.4511vw, 1.5rem);
  color: var(--white);
}
.footer__item-title--big-margin {
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .footer__item:nth-child(2) .footer__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .footer__item:nth-child(2) .footer__list .footer__list-item + .footer__list-item {
    margin-top: 0;
  }
}
.footer__link {
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--gray-base);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .footer__link:hover {
    color: var(--white);
  }
}
.footer__link--big {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.6767rem + 0.3008vw, 2rem);
  text-transform: uppercase;
  color: var(--white);
}
@media (any-hover: hover) {
  .footer__link--big:hover {
    color: var(--gray-base);
  }
}
.footer__list-item {
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--gray-base);
}
.footer__list-item + .footer__list-item {
  margin-top: 1.25rem;
}
.footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 3.75rem 0;
}
@media (max-width: 1024px) {
  .footer__copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 2.5rem 0;
    gap: 2.5rem;
  }
}
.footer__copy-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--gray-base);
  gap: 0.75rem;
}
.footer__bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .footer__bottom-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
  }
}
.footer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: clamp(2.5rem, 2.1335rem + 1.5038vw, 3.75rem);
}
.footer__title-svg {
  width: 100%;
  height: auto;
}
.footer__title-svg path {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
@media (max-width: 576px) {
  .footer__title-svg--desktop {
    display: none;
  }
}
.footer__title-svg--mobile {
  display: none;
}
@media (max-width: 576px) {
  .footer__title-svg--mobile {
    display: block;
  }
}
.footer__social {
  margin: 2.5rem 0 clamp(2.5rem, 2.1335rem + 1.5038vw, 3.75rem);
}
.footer__payments {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  gap: 10px;
}
.footer__payments-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--gray-base);
  height: 48px;
}

.modal__container {
  padding: clamp(1.25rem, 0.5169rem + 3.0075vw, 3.75rem);
  width: 96%;
  max-width: 57.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--gray-dark);
}
.modal__content {
  overflow-y: auto;
  height: 100%;
}
.modal__content--visible {
  overflow: visible;
}
.modal__close {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  outline: 0;
  border: 0;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .modal__close {
    padding: 0.5rem;
  }
}
.modal__close svg {
  fill: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal__close-icon {
  width: 100%;
  height: 100%;
  fill: var(--black);
}
.modal__title {
  font-weight: 400;
  font-size: clamp(1.125rem, 1.015rem + 0.4511vw, 1.5rem);
  color: var(--white);
}
.modal__header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: clamp(2.0625rem, 1.5677rem + 2.0301vw, 3.75rem);
}
.modal__desc {
  margin-top: 0.75rem;
}

.social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.social__list--lit-gap {
  gap: 1.25rem;
}
.social__list--big-gap {
  gap: clamp(1.25rem, 0.5169rem + 3.0075vw, 3.75rem);
}
.social__list--most-big-gap {
  gap: clamp(2.5rem, 1.7669rem + 3.0075vw, 5rem);
}
.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (any-hover: hover) {
  .social__link:hover svg {
    fill: var(--gray-base);
  }
}
.social__link--lit {
  width: 1.625rem;
  height: 1.625rem;
}
.social__link--big {
  width: 2.5rem;
  height: 2.5rem;
}
.social__link--most-big {
  width: clamp(2.5rem, 2.1335rem + 1.5038vw, 3.75rem);
  height: clamp(2.5rem, 2.1335rem + 1.5038vw, 3.75rem);
}
.social__icon {
  width: 100%;
  height: 100%;
  fill: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero__content {
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 100svh;
  gap: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
}
.hero__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: clamp(2rem, 1.1203rem + 3.609vw, 5rem);
}
@media (max-width: 1024px) {
  .hero__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  gap: clamp(0.75rem, 0.2368rem + 2.1053vw, 2.5rem);
}
@media (max-width: 576px) {
  .hero__buttons {
    width: 100%;
  }
}
.hero__desc {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  line-height: normal;
  color: var(--white);
}
.hero__title {
  width: 100%;
  height: auto;
}
.hero__title path {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
@media (max-width: 576px) {
  .hero__title--desktop {
    display: none;
  }
}
.hero__title--mobile {
  display: none;
}
@media (max-width: 576px) {
  .hero__title--mobile {
    display: block;
  }
}
.hero__video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0;
}
@media (max-width: 576px) {
  .hero__button {
    padding: 0.5rem 0.75rem 0.75rem;
    width: 100%;
  }
}

.about {
  margin-top: clamp(2.5rem, 1.4004rem + 4.5113vw, 6.25rem);
}
.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.75rem;
  }
}
.about__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.about__right {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: min(0px, (1760px - 100vw) / 2);
  width: 44.9%;
}
@media (max-width: 1024px) {
  .about__right {
    margin-right: -1rem;
    width: auto;
  }
}
.about__counter {
  position: absolute;
  left: -2.5rem;
  bottom: -2.5rem;
  z-index: 10;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: clamp(0.75rem, 0.3285rem + 1.7293vw, 2.1875rem) clamp(0.75rem, 0.2368rem + 2.1053vw, 2.5rem);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
}
.about__counter .counter-window {
  position: relative;
  overflow: hidden;
  height: 1em;
}
.about__counter .counter-reel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  will-change: transform;
}
.about__counter .counter-reel span {
  display: block;
  line-height: 1em;
}
@media (max-width: 1024px) {
  .about__counter {
    left: 0;
    bottom: -0.75rem;
  }
}
.about__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  max-width: 45.375rem;
  gap: clamp(1.25rem, -0.5827rem + 7.5188vw, 3.75rem);
}
.about__item {
  position: relative;
}
@media (max-width: 1024px) {
  .about__item {
    padding: 0.75rem 0.75rem 1rem;
  }
}
.about__item-content {
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .about__item-content {
    padding: 0.5rem 0.5rem 0;
  }
}
.about__item-content:not(:first-child) {
  opacity: 0;
}
.about__item-content:not(:nth-child(2)) {
  position: absolute;
  left: 0;
  top: 0;
}
.about__item-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.25rem, 0.8318rem + 1.7844vw, 2.75rem);
  text-transform: uppercase;
  color: var(--white);
}
.about__item-desc {
  font-size: clamp(0.875rem, 0.7704rem + 0.4461vw, 1.25rem);
}
.about__desc {
  position: relative;
  margin-top: auto;
  font-size: clamp(1.125rem, 0.8684rem + 1.0526vw, 2rem);
  color: var(--white);
  text-wrap: balance;
}
@media (max-width: 1024px) {
  .about__desc--desktop {
    display: none;
  }
}
.about__desc--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .about__desc--mobile {
    display: block;
  }
}
.about__desc-item:not(:first-child) {
  position: absolute;
  top: 0;
}

.image-gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 84vh;
  min-height: 37.5rem;
  max-height: 55.75rem;
}
@media (max-width: 1024px) {
  .image-gallery {
    height: 16rem;
    min-height: inherit;
  }
}
@media (max-width: 576px) {
  .image-gallery {
    height: 19vh;
  }
}
.image-gallery__item {
  position: absolute;
  inset: 0;
}
.image-gallery__item-picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}

.history {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0s;
  transition: 0s;
}
.history__years {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}
.history__years-item {
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--white);
}
.history__line {
  margin: 1.1875rem 0 clamp(2rem, 0.9004rem + 4.5113vw, 5.75rem);
  height: 0.25rem;
  background-color: var(--white);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.history__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
}
@media (max-width: 1024px) {
  .history__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.history__text {
  position: relative;
  width: 100%;
  height: 200px;
  max-width: 38.4375rem;
}
@media (max-width: 1024px) {
  .history__text {
    max-width: 100%;
  }
}
.history__text-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.history__text-item h3 {
  margin: 0 0 clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.125rem, 0.8684rem + 1.0526vw, 2rem);
  color: var(--white);
}
.history__text-item p {
  margin: 0;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
.history__image-container {
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.history__scheme {
  width: 100%;
  height: auto;
}

.production .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.production__nav {
  position: absolute;
  left: 0;
  bottom: 26px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  gap: 10.9375rem;
}
@media (max-width: 1024px) {
  .production__nav {
    display: none;
  }
}
.production__arrow {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.production__arrow-icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--white);
}
@media (max-width: 1024px) {
  .production__slider {
    position: relative;
    margin: 0 -1rem;
    padding-bottom: 2rem;
  }
}
.production__pagination {
  display: none;
}
@media (max-width: 1024px) {
  .production__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.production-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40%;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .production-slide {
    width: 75%;
  }
}
.production-slide__image-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.production-slide__image, .production-slide__image-placeholder {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.production-slide__image {
  opacity: 0;
}
.production-slide__image-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.production-slide__name {
  margin-top: 2rem;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--gray-light);
}
@media (max-width: 1024px) {
  .production-slide__name {
    font-size: 1.625rem;
  }
}
.production-slide.swiper-slide-active .production-slide__image {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tasks__items {
  position: relative;
}
.tasks__image {
  position: absolute;
  right: 75px;
  bottom: 117px;
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
}
@media (max-width: 1024px) {
  .tasks__image {
    display: none;
  }
}

.tasks-item {
  width: 72%;
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
}
@media (max-width: 768px) {
  .tasks-item {
    width: 100%;
  }
}
.tasks-item.js-active {
  width: 100%;
}
.tasks-item.js-active .tasks-item__title {
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
}
.tasks-item.js-active .tasks-item__desc {
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
.tasks-item.js-active .tasks-item__image {
  width: 53.5%;
}
@media (max-width: 1024px) {
  .tasks-item.js-active .tasks-item__image {
    width: calc(100% + 1rem);
  }
}
.tasks-item.js-active .tasks-item__row {
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .tasks-item.js-active .tasks-item__row {
    gap: 1.25rem;
  }
}
.tasks-item.js-active:nth-child(2).js-active ~ .tasks__image {
  -webkit-transform: translateY(-40%) rotate(11deg);
  -ms-transform: translateY(-40%) rotate(11deg);
  transform: translateY(-40%) rotate(11deg);
}
.tasks-item + .tasks-item {
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .tasks-item + .tasks-item {
    margin-top: 2.5rem;
  }
}
.tasks-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
  gap: clamp(1.25rem, 1.0301rem + 0.9023vw, 2rem);
}
.tasks-item__row--flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .tasks-item__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .tasks-item__row {
    gap: 1.25rem;
  }
}
.tasks-item__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: -16px;
  width: 41.5%;
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
}
@media (width >= 1760px) {
  .tasks-item__image {
    margin-left: min(0px, (1760px - 100vw) / 2);
  }
}
@media (max-width: 1024px) {
  .tasks-item__image {
    width: calc(100% + 1rem);
  }
}
.tasks-item__content {
  position: relative;
  padding: 1.25rem;
  width: 100%;
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
}
@media (max-width: 1024px) {
  .tasks-item__content {
    padding: 0.75rem;
  }
}
.tasks-item__title {
  font-family: var(--second-family);
  font-size: clamp(1.25rem, 0.7368rem + 2.1053vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
}
@media (max-width: 768px) {
  .tasks-item__title {
    font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  }
}
.tasks-item__desc {
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
}
@media (max-width: 768px) {
  .tasks-item__desc {
    font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  }
}

.advantages-item {
  border-top: 1px solid var(--white);
  padding: 1.75rem 2.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.advantages-item:not(.js-active) {
  cursor: pointer;
}
.advantages-item.js-active .advantages-item__content {
  overflow: visible;
  padding-top: 16px;
  max-height: 1000px;
  opacity: 1;
}
.advantages-item:last-child {
  border-bottom: 1px solid var(--white);
}
@media (max-width: 1024px) {
  .advantages-item {
    padding: 0;
  }
  .advantages-item:first-child {
    border-top: 0;
  }
}
@media (max-width: 1024px) {
  .advantages-item + .advantages-item {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.advantages-item__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--white);
}
.advantages-item__image-wrap {
  margin-top: -5.875rem;
}
@media (max-width: 1024px) {
  .advantages-item__image-wrap {
    margin-top: 0;
  }
}
.advantages-item__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, padding-top 0.6s;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, padding-top 0.6s;
}
@media (max-width: 1024px) {
  .advantages-item__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: inherit;
    opacity: 1;
    gap: 1.25rem;
  }
}
.advantages-item__image {
  width: 100%;
  height: auto;
}
.advantages-item__desc {
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}

.works {
  position: relative;
}
.works__main-slider {
  position: relative;
}
.works__arrow {
  position: absolute;
  top: 0;
  z-index: 50;
  width: 30%;
  height: 100%;
}
.works__arrow--next {
  right: 0;
}
.works__main-slide {
  position: relative;
}
.works__main-slider-image {
  height: 42.5rem;
}
.works__main-slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.works__main-slider-content {
  position: absolute;
  left: 0;
  bottom: clamp(1.375rem, 0.312rem + 4.3609vw, 5rem);
  width: 100%;
}
@media (max-width: 1024px) {
  .works__main-slider-content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.works__main-slider-info {
  position: relative;
  padding: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
  width: 100%;
  max-width: 26.4375rem;
  background-color: var(--black);
}
.works__main-slider-name {
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--white);
}
.works__main-slider-location {
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--gray-light);
}
.works__thumbs {
  margin-left: 27.6875rem;
  max-width: 700px;
}
.works__thumbs-container {
  position: absolute;
  left: 0;
  bottom: 11.25rem;
  z-index: 50;
  width: 100%;
  pointer-events: none;
}
.works__thumbs-item {
  position: relative;
  overflow: hidden;
  height: 6.25rem;
  cursor: pointer;
  pointer-events: all;
}
.works__thumbs-item img {
  width: 100%;
  height: 100%;
}
.works__thumbs-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid var(--white);
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works__thumbs-item.swiper-slide-thumb-active::before {
  opacity: 1;
}

.work-detail__swiper {
  margin: 0 min(0px, (1760px - 100vw) / 2);
  height: 41.25rem;
}
.work-detail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.work-detail [thumbsslider] {
  margin-top: 1.25rem;
}
.work-detail [thumbsslider] .swiper-slide {
  position: relative;
  width: 160px;
  height: 100px;
}
.work-detail [thumbsslider] .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 0;
}
.work-detail [thumbsslider] .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.work-detail [thumbsslider] .swiper-slide img {
  width: 100%;
  height: 100%;
}
.work-detail__content {
  margin-top: 60px;
}
.work-detail__content h3 {
  margin-top: 0;
  font-size: clamp(1.125rem, 0.8684rem + 1.0526vw, 2rem);
  color: var(--white);
}
.work-detail__content p,
.work-detail__content ul {
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
.work-detail__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.work-detail__item {
  width: 50%;
}
.work-detail .swiper-button-next {
  display: none;
}
.work-detail .swiper-button-prev {
  display: none;
}

.corner--default::before, .corner--default::after {
  content: "";
  position: absolute;
  border: 2px solid var(--white);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}
@media (max-width: 1024px) {
  .corner--default::before, .corner--default::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.corner--default::after {
  right: 0;
  top: 0;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.corner--default::before {
  left: 0;
  bottom: 0;
  border-top-color: transparent;
  border-right-color: transparent;
}
.corner--bottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-right-color: transparent;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}
@media (max-width: 1024px) {
  .corner--bottom::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.corner--top::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border: 2px solid var(--white);
  border-bottom-color: transparent;
  border-left-color: transparent;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}
@media (max-width: 1024px) {
  .corner--top::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.corner--lit::before, .corner--lit::after {
  width: 0.875rem;
  height: 0.875rem;
}

.section {
  padding: clamp(2.5rem, 1.4004rem + 4.5113vw, 6.25rem) 0;
}
.section--first {
  padding-top: clamp(5rem, 2.9107rem + 8.5714vw, 12.125rem);
}
.section--top-zero {
  padding-top: 0;
}
.section--last {
  padding-bottom: clamp(5rem, 2.8008rem + 9.0226vw, 12.5rem);
}
.section__pretitle {
  margin-bottom: clamp(1.875rem, 1.4352rem + 1.8045vw, 3.375rem);
}
.section__title {
  margin: 0 0 clamp(1.875rem, 1.2152rem + 2.7068vw, 4.125rem);
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(2.875rem, 1.5188rem + 5.5639vw, 7.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
}
.section__title--no-margin {
  margin: 0;
}
.section__title--big-margin {
  margin: 0 0 clamp(2.3125rem, 1.3228rem + 4.0602vw, 5.6875rem);
}
.section__desc {
  margin: 24px 0 62px;
  max-width: 72%;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--gray-light);
}
@media (max-width: 1024px) {
  .section__desc {
    max-width: 100%;
  }
}

.input {
  position: relative;
}
.input__native {
  display: block;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--white);
  padding: 0;
  width: 100%;
  height: clamp(2.8125rem, 2.4826rem + 1.3534vw, 3.9375rem);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--white);
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.input__native.just-validate-success-field {
  border-bottom-color: var(--green-dark);
}
@media (any-hover: hover) {
  .input__native:hover:hover {
    border-color: var(--gray-base);
  }
}
.input__native:not(:-moz-placeholder) + .input__placeholder {
  font-size: 1rem;
  transform: translateY(-180%);
}
.input__native:not(:-ms-input-placeholder) + .input__placeholder {
  font-size: 1rem;
  -ms-transform: translateY(-180%);
  transform: translateY(-180%);
}
.input__native:focus + .input__placeholder, .input__native:not(:placeholder-shown) + .input__placeholder {
  font-size: 1rem;
  -webkit-transform: translateY(-180%);
  -ms-transform: translateY(-180%);
  transform: translateY(-180%);
}
@media (max-width: 768px) {
  .input__native:not(:-moz-placeholder) + .input__placeholder {
    font-size: 0.875rem;
    transform: translateY(-140%);
  }
  .input__native:not(:-ms-input-placeholder) + .input__placeholder {
    font-size: 0.875rem;
    -ms-transform: translateY(-140%);
    transform: translateY(-140%);
  }
  .input__native:focus + .input__placeholder, .input__native:not(:placeholder-shown) + .input__placeholder {
    font-size: 0.875rem;
    -webkit-transform: translateY(-140%);
    -ms-transform: translateY(-140%);
    transform: translateY(-140%);
  }
}
.input__placeholder {
  position: absolute;
  top: 50%;
  font-family: var(--font-family);
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--gray-base);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.subscribe__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
}
@media (max-width: 576px) {
  .subscribe__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.subscribe__input {
  width: 100%;
  max-width: 26.875rem;
}
@media (max-width: 576px) {
  .subscribe__input {
    max-width: 100%;
  }
}

.reviews__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .reviews__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: -1.5rem;
  }
}

.reviews-item {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  padding: 2.08vw;
  width: 100%;
  height: 25.14vw;
  -webkit-transition: flex-grow 0.3s ease-out, -webkit-box-flex 0.3s ease-out;
  transition: flex-grow 0.3s ease-out, -webkit-box-flex 0.3s ease-out;
  transition: flex-grow 0.3s ease-out;
  transition: flex-grow 0.3s ease-out, -webkit-box-flex 0.3s ease-out, -ms-flex-positive 0.3s ease-out;
}
.reviews-item + .reviews-item {
  margin-right: -1px;
}
@media (width >= 1950px) {
  .reviews-item {
    padding: 2.5rem;
    height: 30.125rem;
  }
}
.reviews-item::before, .reviews-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 0;
  background-color: var(--gray-base);
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .reviews-item:hover {
    z-index: 50;
  }
  .reviews-item:hover:not(.js-active):hover::after {
    height: 100%;
  }
}
.reviews-item::before {
  right: 0;
  height: 100%;
  background-color: var(--white);
}
@media (max-width: 1024px) {
  .reviews-item::before {
    display: none;
  }
}
.reviews-item::after {
  right: 0;
  z-index: 50;
}
.reviews-item:not(.js-active) {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .reviews-item {
    border-right: 0;
    border-bottom: 1px solid var(--white);
    border-left: 0;
    padding: 2rem 0;
    height: auto;
  }
}
.reviews-item__content {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2.08vw;
  width: 100%;
  width: 60.89vw;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  gap: 12px;
}
@media (width >= 1950px) {
  .reviews-item__content {
    width: 73.125rem;
  }
}
@media (max-width: 1024px) {
  .reviews-item__content {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    overflow: hidden;
    padding: 0;
    width: 100%;
    height: auto;
    max-height: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
}
@media (min-width: 1025px) {
  .reviews-item.js-active {
    -webkit-box-flex: 30;
    -ms-flex-positive: 30;
    flex-grow: 30;
  }
}
.reviews-item.js-active .reviews-item__content {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.reviews-item.js-active .reviews-item__project-name--vert {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.reviews-item.js-active:last-child::after, .reviews-item.js-active:last-child::before {
  opacity: 0;
}
.reviews-item__desc {
  font-size: 1.25vw;
  color: var(--white);
}
@media (width >= 1950px) {
  .reviews-item__desc {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .reviews-item__desc {
    padding-top: 1.125rem;
    font-size: 1rem;
  }
}
.reviews-item__name {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 3.13vw;
  text-transform: uppercase;
  color: var(--white);
}
@media (width >= 1950px) {
  .reviews-item__name {
    font-size: 3.75rem;
  }
}
@media (max-width: 1024px) {
  .reviews-item__name {
    font-size: 1.625rem;
  }
}
.reviews-item__project-name {
  font-size: 1.25vw;
}
@media (width >= 1950px) {
  .reviews-item__project-name {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .reviews-item__project-name {
    font-size: 1rem;
  }
}
.reviews-item__project-name--vert {
  height: 100%;
  text-align: left;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .reviews-item__project-name--vert {
    height: inherit;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.reviews-item__bottom {
  margin-top: auto;
}
@media (max-width: 1024px) {
  .reviews-item__bottom::after, .reviews-item__bottom::before {
    display: none;
  }
}

.quote {
  position: relative;
  margin: clamp(2.5rem, 1.4004rem + 4.5113vw, 6.25rem) 0;
}
.quote__picture {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  min-height: 37.5rem;
  max-height: 67.5rem;
}
@media (max-width: 1024px) {
  .quote__picture {
    min-height: 28.125rem;
    max-height: 37.5rem;
  }
}
.quote__picture::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.quote__picture img {
  display: block;
  width: 100%;
}
.quote__content {
  position: absolute;
  left: 0;
  bottom: clamp(1rem, -0.906rem + 7.8195vw, 7.5rem);
  z-index: 50;
  width: 100%;
}
.quote__title {
  position: relative;
  padding: clamp(0.75rem, 0.2368rem + 2.1053vw, 2.5rem);
  max-width: 77.5rem;
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--white);
}
.quote__title--right {
  margin-left: auto;
  max-width: 73.3rem;
  line-height: 1;
}

.questions__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .questions__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
}
.questions__left {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  max-width: 53.75rem;
}
@media (max-width: 1024px) {
  .questions__left {
    width: 100%;
    max-width: 100%;
  }
}

.map__inner {
  position: relative;
}
.map__svg {
  width: 100%;
  height: auto;
}
.map__tooltip {
  position: absolute;
  display: none;
  padding: 0.75rem 1rem 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 18.75rem;
  background: var(--black);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.thanks-window {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 500;
  padding: 1.25rem 2rem;
  background-color: var(--black);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.thanks-window.js-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  pointer-events: all;
}
@media (max-width: 1024px) {
  .thanks-window {
    text-align: center;
  }
}
.thanks-window__title {
  margin-bottom: 0.5rem;
  font-size: clamp(1.125rem, 1.015rem + 0.4511vw, 1.5rem);
  color: var(--white);
}
.thanks-window__close {
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  z-index: 10;
  border: 0;
  padding: 0;
  width: 1rem;
  height: 1rem;
  background-color: transparent;
  cursor: pointer;
}
.thanks-window__close-icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.page-top {
  padding: clamp(5.4375rem, 4.4662rem + 3.985vw, 8.75rem) 0 clamp(1.75rem, 1.2735rem + 1.9549vw, 3.375rem);
}
.page-top__breadcrumbs {
  margin-bottom: clamp(1.625rem, 1.3501rem + 1.1278vw, 2.5625rem);
}
.page-top__title {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(2.875rem, 1.5188rem + 5.5639vw, 7.5rem);
  text-transform: uppercase;
  color: var(--white);
}
.page-top__title--lit {
  font-size: clamp(2rem, 1.1203rem + 3.609vw, 5rem);
}

.breadcrumbs {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  overflow: auto;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  gap: 0.25rem;
}
.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumbs__item:not(:first-child) {
  position: relative;
  padding-left: 1rem;
}
.breadcrumbs__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 1px;
  width: 10px;
  height: 2px;
  background-color: var(--gray-light);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumbs__link {
  font-size: clamp(0.875rem, 0.8383rem + 0.1504vw, 1rem);
  color: var(--gray-base);
}
.breadcrumbs__link--last {
  color: var(--white);
}

.banner {
  position: relative;
}
.banner__picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner__picture::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.banner__picture::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), color-stop(60%, rgba(0, 0, 0, 0.7)), to(transparent));
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
}
.banner__picture img {
  display: block;
  width: 100%;
  height: 100%;
}
.banner__container {
  position: relative;
  padding-top: clamp(1.5625rem, 0.4995rem + 4.3609vw, 5.1875rem);
  padding-bottom: clamp(1.5625rem, 0.4995rem + 4.3609vw, 5.1875rem);
}
.banner__container--big-padding {
  padding-top: clamp(2rem, 0.2223rem + 7.2932vw, 10rem);
  padding-bottom: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
}
.banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 54.75rem;
  color: var(--white);
  gap: clamp(0.25rem, -0.0432rem + 1.203vw, 1.25rem);
}
.banner__title {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.banner__desc {
  margin: 0;
  font-size: clamp(0.875rem, 0.6917rem + 0.7519vw, 1.5rem);
}
.banner__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 24px 0 12px;
  gap: clamp(0.5rem, 0.2984rem + 0.8271vw, 1.1875rem);
}
.banner__color {
  border-radius: 50%;
  width: clamp(1.75rem, 1.4934rem + 1.0526vw, 2.625rem);
  height: clamp(1.75rem, 1.4934rem + 1.0526vw, 2.625rem);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.banner__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: clamp(1.5rem, 1.39rem + 0.4511vw, 1.875rem);
  opacity: 0;
  gap: clamp(1rem, 0.5602rem + 1.8045vw, 2.5rem);
}
.banner__buttons--big {
  margin-top: 13.25rem;
}
@media (max-width: 576px) {
  .banner__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 16rem;
  }
}

.cards {
  padding: clamp(2.25rem, 1.8102rem + 1.8045vw, 3.75rem) 0 6.25rem;
}
.cards__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .cards__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cards__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cards__tegs {
  margin-bottom: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
}

.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--gray-dark);
}
.card-item__sticker {
  left: 0.75rem;
  top: 0.75rem;
}
.card-item__image-container {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 16.25rem;
}
.card-item__image-container a {
  display: block;
  width: 100%;
  height: 100%;
}
.card-item__image-container img {
  width: 100%;
  height: 100%;
}
.card-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 40px 40px;
  height: 100%;
}
.card-item__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.3835rem + 1.5038vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}
.card-item__desc {
  margin: 12px 0 40px;
}
.card-item__button {
  display: block;
  margin-top: auto;
}

.sticker {
  position: absolute;
  padding: 4px 20px 8px;
  font-size: 20px;
  color: var(--white);
  background: var(--gray-dark);
}

.tegs__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
}
.tegs__reset {
  outline: 0;
  border: 0;
  padding: 0;
  font-size: clamp(0.875rem, 0.8383rem + 0.1504vw, 1rem);
  color: var(--gray-base);
  background-color: transparent;
  cursor: pointer;
}

.teg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  outline: 0;
  border: 0;
  padding: clamp(0.125rem, 0.0883rem + 0.1504vw, 0.25rem) clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem) clamp(0.375rem, 0.3383rem + 0.1504vw, 0.5rem);
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--white);
  background-color: rgba(61, 61, 61, 0.15);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
  gap: 8px;
}
.teg:active {
  background-color: #2f2f2f;
}
.teg.js-current {
  background-color: var(--white);
}
.teg.js-active {
  color: var(--black);
  background: var(--white);
}
.teg.js-active::after {
  content: "";
  margin-top: 3px;
  width: 16px;
  height: 16px;
  background: url("../img/close_black.svg") no-repeat center center;
}
@media (any-hover: hover) {
  .teg:hover.js-active {
    opacity: 0.8;
  }
  .teg:hover:not(.js-active):hover {
    background-color: var(--gray-dark);
  }
}

.best-works__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: clamp(0.625rem, -0.2914rem + 3.7594vw, 3.75rem);
  gap: clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
}
.best-works__head-item {
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--gray-base);
  cursor: pointer;
}
.best-works__head-item:not(:first-child)::before {
  content: "/";
  margin-right: 20px;
  color: var(--white);
}
.best-works__head-item:not(.js-active) {
  cursor: pointer;
}
.best-works__head-item.js-active {
  color: var(--white);
}

.best-works-item {
  display: none;
}
.best-works-item.js-active {
  display: block;
}
.best-works-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
}
@media (max-width: 1024px) {
  .best-works-item__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.best-works-item__image-container {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 49%;
}
@media (max-width: 1024px) {
  .best-works-item__image-container {
    width: 100%;
  }
}
.best-works-item__desc + .best-works-item__desc {
  margin-top: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
}
.best-works-item__content h3 {
  margin: 0 0 clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
  font-size: clamp(1.125rem, 0.8684rem + 1.0526vw, 2rem);
  color: var(--white);
}
.best-works-item__content p {
  margin: 0;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
.best-works-item__content li {
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
.best-works-item__content li + li {
  margin-top: 12px;
}
.best-works-item__button {
  display: block;
  margin-top: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
  width: 100%;
}

.contacts {
  padding-bottom: clamp(2.5rem, 1.7669rem + 3.0075vw, 5rem);
}
.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
}
@media (max-width: 1024px) {
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.contacts__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: clamp(34.875rem, 32.016rem + 11.7293vw, 44.625rem);
  max-width: 35rem;
}
@media (max-width: 1400px) {
  .contacts__tabs {
    max-width: 40%;
  }
}
@media (max-width: 1024px) {
  .contacts__tabs {
    width: 100%;
    max-width: 100%;
  }
}
.contacts__tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: clamp(1.25rem, 0.4986rem + 3.0827vw, 3.8125rem);
}
.contacts__tabs-head {
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
}
.contacts__tabs-head:not(:first-child) {
  margin-left: clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
}
.contacts__tabs-head:not(:first-child)::before {
  content: "/";
  margin-right: clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
  color: var(--white);
}
.contacts__tabs-head:not(.js-acitve) {
  cursor: pointer;
}
.contacts__tabs-head.js-active {
  color: var(--white);
}
.contacts__tabs-content {
  display: none;
}
.contacts__tabs-content.js-active {
  display: block;
}
.contacts__tabs-body {
  position: relative;
}
.contacts__tabs-body::before {
  right: 0.75rem;
}
.contacts__items {
  height: clamp(28.75rem, 26.1842rem + 10.5263vw, 37.5rem);
}
.contacts__map {
  width: 100%;
  height: clamp(34.375rem, 31.0395rem + 13.6842vw, 45.75rem);
}
.contacts__map-js {
  width: 100%;
  height: 100%;
}

.contact-item {
  padding-right: 0.75rem;
}
.contact-item + .contact-item {
  margin-top: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
}
.contact-item__name {
  margin-bottom: clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
  font-size: clamp(1.125rem, 0.8684rem + 1.0526vw, 2rem);
  color: var(--white);
}
.contact-item__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white);
  gap: 0.75rem;
}
.contact-item__list-item + .contact-item__list-item {
  margin-top: clamp(0.5rem, 0.4267rem + 0.3008vw, 0.75rem);
}
.contact-item__icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: var(--white);
}
.contact-item__value {
  font-size: clamp(0.875rem, 0.8383rem + 0.1504vw, 1rem);
}

.simplebar-track {
  background: var(--gray-dark);
}
.simplebar-track.simplebar-vertical {
  width: 0.25rem;
}

.simplebar-scrollbar {
  left: 1px;
  border: 0;
  width: 0.125rem;
  background: var(--gray-light);
}
.simplebar-scrollbar::before {
  display: none;
}

@media (any-hover: hover) {
  [data-simplebar]:hover .simplebar-scrollbar {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  [data-simplebar]:hover:hover .simplebar-scrollbar {
    opacity: 1;
  }
}

.map-popup {
  width: 17.8125rem;
  word-break: break-all;
  -webkit-transform: translate(-42.8%, -103%);
  -ms-transform: translate(-42.8%, -103%);
  transform: translate(-42.8%, -103%);
}
.map-popup::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 2px);
  width: 15px;
  height: 9px;
  background: url("../img/triangle.svg") no-repeat top center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.map-popup__content {
  position: relative;
  padding: 0.75rem 1rem;
  background: var(--black);
}
.map-popup__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  color: var(--white);
  gap: 0.75rem;
}
.map-popup__item + .map-popup__item {
  margin-top: 0.75rem;
}
.map-popup__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--white);
}

.main-contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
}
@media (max-width: 1024px) {
  .main-contacts__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.main-contacts__link {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-align: right;
  text-transform: uppercase;
  color: var(--white);
}
@media (max-width: 1024px) {
  .main-contacts__link {
    text-align: center;
  }
}

.ya-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid var(--gray-base);
  padding: 0.9375rem;
  gap: 0.375rem;
}
.ya-rating__marker {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.625rem;
  fill: var(--white);
}
.ya-rating__value {
  margin: 0 9px 0 7px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--white);
}
.ya-rating__star {
  width: 1rem;
  height: 0.9375rem;
  fill: var(--white);
}
.ya-rating__star + .ya-rating__star {
  margin-left: 3px;
}
.ya-rating__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ya-rating__bottom {
  font-size: 0.875rem;
  color: var(--white);
}

.procces {
  counter-reset: p-counter;
}
.procces__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.5602rem + 1.8045vw, 2.5rem);
}
@media (max-width: 1024px) {
  .procces__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.procces-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: clamp(1rem, 0.5602rem + 1.8045vw, 2.5rem);
  background: var(--gray-dark);
  gap: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
}
.procces-item__icon {
  width: clamp(6.25rem, 5.5169rem + 3.0075vw, 8.75rem);
  height: clamp(6.25rem, 5.5169rem + 3.0075vw, 8.75rem);
}
.procces-item__desc {
  font-size: clamp(0.875rem, 0.6917rem + 0.7519vw, 1.5rem);
  color: var(--gray-light);
}
.procces-item__desc::before {
  counter-increment: p-counter;
  content: "0" counter(p-counter);
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.2218rem + 1.6541vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}

.content-box > *:first-child {
  margin-top: 0;
}
.content-box > *:last-child {
  margin-bottom: 0;
}

.service-detail {
  padding-bottom: clamp(2.5rem, 1.352rem + 4.898vw, 6.25rem);
}
.service-detail__content-box {
  padding-top: clamp(2rem, 1.4643rem + 2.2857vw, 3.75rem);
  color: var(--gray-light);
}

.price-table__native {
  border-spacing: 0;
  width: 100%;
}
.price-table th,
.price-table tr:nth-child(2n+1) {
  background: var(--gray-dark);
}
.price-table th {
  padding: clamp(1rem, 0.9267rem + 0.3008vw, 1.25rem) clamp(1rem, 0.5602rem + 1.8045vw, 2.5rem);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.2218rem + 1.6541vw, 3rem);
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  color: var(--white);
}
.price-table th:first-child {
  width: 63.2%;
}
@media (max-width: 576px) {
  .price-table th:first-child {
    width: 50%;
  }
}
.price-table td {
  padding: clamp(1rem, 0.9267rem + 0.3008vw, 1.25rem) clamp(1rem, 0.5602rem + 1.8045vw, 2.5rem);
  font-size: clamp(0.875rem, 0.6917rem + 0.7519vw, 1.5rem);
  color: var(--gray-light);
}

.faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.faq-item {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--white);
  padding: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem) clamp(0rem, -0.7331rem + 3.0075vw, 2.5rem);
}
@media (max-width: 576px) {
  .faq-item:first-child {
    border-top: 0;
    padding-top: 0;
  }
}
.faq-item:last-child {
  border-bottom: 1px solid var(--white);
}
.faq-item__head {
  padding-right: 3.75rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 576px) {
  .faq-item__head {
    position: relative;
  }
}
.faq-item__body {
  position: relative;
  overflow: hidden;
  padding-right: 3.75rem;
  max-width: 60%;
  max-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  line-height: normal;
  color: var(--gray-light);
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 576px) {
  .faq-item__body {
    max-width: 100%;
  }
}
.faq-item__body > *:first-child {
  margin-top: 0;
}
.faq-item__body > *:last-child {
  margin-bottom: 0;
}
.faq-item__icon {
  position: absolute;
  right: 0;
  top: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  fill: var(--white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 576px) {
  .faq-item__icon {
    padding: 0.625rem;
  }
}
.faq-item.js-active .faq-item__body {
  padding-top: clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
  max-height: 62.5rem;
  opacity: 1;
}
.faq-item.js-active .faq-item__icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.actions {
  padding-bottom: clamp(6.25rem, 4.4173rem + 7.5188vw, 12.5rem);
}
.actions__grid {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: dense;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
}
@media (width <= 1600px) {
  .actions__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width <= 1366px) {
  .actions__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 850px) {
  .actions__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .actions__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.actions-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .actions-item {
    width: 100%;
  }
}
.actions-item--finished .actions-item__image {
  -webkit-filter: grayscale(0.5);
  filter: grayscale(0.5);
}
.actions-item:not(.actions-item--big) {
  height: clamp(21.875rem, 14.8865rem + 10.9195vw, 26.625rem);
  -webkit-transform: scale(1) translate3d(0, 0, 0);
  transform: scale(1) translate3d(0, 0, 0);
}
@media (max-width: 1024px) {
  .actions-item:not(.actions-item--big) {
    height: 100%;
  }
}
@media (any-hover: hover) {
  .actions-item:not(.actions-item--big):hover {
    z-index: 50;
    -webkit-transform: scale(1.05) translate3d(0, 0, 0);
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  .actions-item:not(.actions-item--big):hover .actions-item__footer {
    margin-top: 40px;
    max-height: 80px;
    opacity: 1;
  }
}
.actions-item--big {
  grid-column: 1/-1;
}
@media (any-hover: hover) {
  .actions-item--big:hover:hover .actions-item__main-footer {
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .actions-item--big {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
.actions-item--big::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.actions-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.actions-item__content {
  position: relative;
  z-index: 50;
  padding: clamp(2rem, 0.2956rem + 6.9925vw, 7.8125rem) clamp(1rem, -0.1729rem + 4.812vw, 5rem);
}
@media (max-width: 576px) {
  .actions-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    min-height: 600px;
  }
}
.actions-item__main-title {
  max-width: 46.875rem;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(2.875rem, 1.5188rem + 5.5639vw, 7.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.actions-item__main-desc {
  margin-top: clamp(0.75rem, 0.2735rem + 1.9549vw, 2.375rem);
  max-width: 46.875rem;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--white);
}
.actions-item__main-footer {
  margin-top: 3.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.actions-item__wrap {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  background: var(--gray-dark);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .actions-item__wrap {
    position: relative;
    top: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.actions-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 9.125rem;
}
.actions-item__value {
  padding-left: 0.75rem;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 7.5rem;
  text-transform: uppercase;
  color: var(--white);
}
.actions-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem;
}
@media (max-width: 1024px) {
  .actions-item__body {
    height: 100%;
  }
}
.actions-item__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.2218rem + 1.6541vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.actions-item__desc, .actions-item__time {
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--gray-light);
}
.actions-item__desc {
  margin: 1rem 0 2.5rem;
}
.actions-item__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: auto;
  gap: 0.25rem;
}
.actions-item__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: -4px;
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--white);
  stroke-width: 0.125rem;
}
.actions-item__image {
  display: block;
  width: 100%;
  height: 100%;
}
.actions-item__button {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  width: 100%;
}
.actions-item__footer {
  position: relative;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .actions-item__footer {
    margin-top: 1.25rem;
    max-height: inherit;
    opacity: 1;
  }
}

.error-page {
  padding: 12.5rem 0 3.125rem;
  opacity: 0;
}
@media (max-width: 1024px) {
  .error-page {
    padding: 6.625rem 0 0;
  }
}
.error-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7.5rem;
}
@media (max-width: 1024px) {
  .error-page__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 6.25rem;
  }
}
.error-page__picture {
  margin-left: min(0px, (1760px - 100vw) / 2);
  height: auto;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .error-page__picture {
    margin-left: -1rem;
  }
}
.error-page__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 38.4375rem;
  gap: 3.75rem;
}
@media (max-width: 1024px) {
  .error-page__right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
  }
}
.error-page__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.error-page__link {
  margin-left: 2rem;
  color: var(--gray-base);
}
@media (max-width: 1024px) {
  .error-page__link {
    margin-left: 1.25rem;
  }
}

.hero-inside {
  padding-top: 7.5rem;
}
@media (max-width: 1024px) {
  .hero-inside {
    padding-top: 4.625rem;
  }
}
.hero-inside__content {
  position: relative;
  clip-path: inset(10% 10% 0 10%);
  overflow: hidden;
  -webkit-transition: 0.75s cubic-bezier(0.4, 0.15, 0, 1);
  transition: 0.75s cubic-bezier(0.4, 0.15, 0, 1);
}
.hero-inside__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero-inside__breadcrumbs {
  padding: 3.125rem 0 3.3125rem;
}
.hero-inside__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.hero-inside__container {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: clamp(1.25rem, 0.1504rem + 4.5113vw, 5rem);
}
.hero-inside__title {
  margin: 0;
  max-width: 1160px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(2.875rem, 1.5188rem + 5.5639vw, 7.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
}
.hero-inside__desc {
  margin: 0;
  max-width: 60.375rem;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--white);
  opacity: 0;
}
.hero-inside__tzrs {
  margin-top: clamp(1.5rem, -1.4507rem + 12.1053vw, 11.5625rem);
}
.hero-inside__button {
  margin-top: 213px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
}

.tzrs__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: clamp(0.625rem, 0.0752rem + 2.2556vw, 2.5rem);
}

.tzrs-item {
  padding: 1.875rem 1.5rem 1.5625rem;
  width: 17.8125rem;
  background: rgba(75, 77, 83, 0.28);
  opacity: 0;
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
@media (max-width: 576px) {
  .tzrs-item {
    padding: 1.5rem 5.125rem 1.5rem 1.5rem;
    width: 100%;
  }
}
.tzrs-item__icon {
  margin-bottom: 5px;
  width: clamp(1.5rem, 1.1701rem + 1.3534vw, 2.625rem);
  height: clamp(1.5rem, 1.1701rem + 1.3534vw, 2.625rem);
  fill: none;
  stroke: var(--white);
  stroke-width: 2px;
}
.tzrs-item__title {
  font-family: var(--second-family);
  font-size: clamp(1.75rem, 1.6767rem + 0.3008vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
}

.factory__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(2rem, -0.5291rem + 10.3759vw, 10.625rem);
}
@media (max-width: 1024px) {
  .factory__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.factory__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .factory__content {
    gap: 0;
  }
}
.factory__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: min(0px, (1760px - 100vw) / 2);
}
.factory__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .factory__image {
    margin: 0 -1rem;
  }
}
.factory__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 615px;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--gray-light);
  gap: 24px;
}
.factory__desc p {
  margin: 0;
}

.stats {
  --rotation-increment: 5deg;
}
.stats__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 43px;
}

.stats-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-light);
  padding: clamp(1.25rem, 1.1767rem + 0.3008vw, 1.5rem) 1rem clamp(1.25rem, 1.1767rem + 0.3008vw, 1.5rem) 0;
}
@media (max-width: 768px) {
  .stats-item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media (max-width: 576px) {
  .stats-item {
    padding-right: 0.625rem;
    padding-bottom: 2.1875rem;
  }
}
.stats-item__title {
  min-width: clamp(12.5rem, 5.1692rem + 30.0752vw, 37.5rem);
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  opacity: min(1, var(--progress) + 0.1);
}
@media (max-width: 768px) {
  .stats-item__title {
    min-width: inherit;
  }
}
.stats-item__value-desc {
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
.stats-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .stats-item__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .stats-item__content {
    margin-bottom: -0.9375rem;
  }
}
.stats-item__images {
  position: relative;
}
.stats-item__value-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transform: translate3d(0, calc(100% * (1 - var(--progress, 0))), 0) rotate(var(--rotate));
  transform: translate3d(0, calc(100% * (1 - var(--progress, 0))), 0) rotate(var(--rotate));
  gap: 1.125rem;
  --rotate: calc(20deg * (1 - var(--progress, 0)));
}
@media (max-width: 576px) {
  .stats-item__value-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }
}
.stats-item__value {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(2.875rem, 1.5188rem + 5.5639vw, 7.5rem);
  line-height: 0.7;
  text-transform: uppercase;
  color: var(--white);
}
@media (max-width: 576px) {
  .stats-item__value {
    line-height: 1;
  }
}
.stats-item__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  height: 1rem;
  fill: var(--white);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.stats-item__images-wrapper, .stats-item__images {
  position: relative;
  width: 100%;
  height: 100%;
}
.stats-item__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.stats-item__listing {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 9rem;
  height: 7rem;
  opacity: min(1, var(--progress) * 2);
  -webkit-transform: translate3d(0, calc(50% * (1 - var(--progress, 0))), 0);
  transform: translate3d(0, calc(50% * (1 - var(--progress, 0))), 0);
}
.stats-item__image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: calc(var(--js-index, 0) * -1);
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(var(--rotate));
  -ms-transform: rotate(var(--rotate));
  transform: rotate(var(--rotate));
  --rotate: calc(
    (var(--rotation-increment) * (1 - var(--index, 0))) * var(--progress, 0) +
      var(--rotation-increment) * 2 * (1 - var(--progress, 0))
  );
}
.stats-item__picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.partners {
  position: relative;
  overflow: hidden;
}
.partners__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: clamp(14rem, 10.5912rem + 13.985vw, 25.625rem);
  height: clamp(10.25rem, 7.7575rem + 10.2256vw, 18.75rem);
  background: #3c3c3c;
}
.partners__slide img {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .partners__slide img {
    max-height: 67px;
  }
}
.partners__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll-left 30s linear infinite forwards;
  animation: scroll-left 30s linear infinite forwards;
  gap: clamp(0.625rem, 0.0752rem + 2.2556vw, 2.5rem);
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.space__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  background-color: var(--gray-light);
  gap: 1px;
}
@media (max-width: 1366px) {
  .space__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    background-color: transparent;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .space__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .space__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.space-item {
  background: var(--black);
}
.space-item:nth-child(2), .space-item:nth-child(3), .space-item:nth-child(4) {
  border-top: 1px solid var(--gray-light);
}
.space-item:nth-child(4) {
  border-right: 1px solid var(--gray-light);
}
@media (max-width: 1366px) {
  .space-item:nth-child(4) {
    border-bottom: 1px solid var(--gray-light);
  }
}
@media (max-width: 768px) {
  .space-item:nth-child(4) {
    border-left: 1px solid var(--gray-light);
  }
}
.space-item:nth-last-child(2) {
  border-bottom: 1px solid var(--gray-light);
}
@media (max-width: 1366px) {
  .space-item:nth-child(2), .space-item:nth-child(3), .space-item:nth-child(5) {
    border-right: 1px solid var(--gray-light);
  }
}
@media (max-width: 1366px) {
  .space-item:nth-child(5) {
    border-top: 1px solid var(--gray-light);
  }
}
.space-item:not(.space-item--image) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: clamp(1.25rem, 1.0667rem + 0.7519vw, 1.875rem) clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
  min-height: 27.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 1366px) {
  .space-item:not(.space-item--image) {
    min-height: 22rem;
  }
}
@media (max-width: 768px) {
  .space-item:not(.space-item--image) {
    min-height: 20rem;
  }
}
@media (max-width: 576px) {
  .space-item:not(.space-item--image) {
    border: 1px solid var(--gray-light);
    min-height: inherit;
    gap: 3.125rem;
  }
  .space-item:not(.space-item--image) + .space-item:not(.space-item--image) {
    margin-top: -1px;
  }
}
.space-item:first-child {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3; /* растягивается на две строки */
}
@media (max-width: 1366px) {
  .space-item:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2; /* занимает первые две ячейки */
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3; /* остаётся на две строки */
    border-right: 1px solid var(--gray-light);
  }
}
@media (max-width: 768px) {
  .space-item:first-child {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
@media (max-width: 576px) {
  .space-item:first-child {
    grid-column: initial;
    grid-row: initial;
    border-right: 0;
  }
}
.space-item:last-child {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
  -ms-grid-row: 2;
  grid-row: 2; /* нижняя строка */
}
@media (max-width: 1366px) {
  .space-item:last-child {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4; /* занимает две последние ячейки */
    -ms-grid-row: 3;
    grid-row: 3; /* последняя строка */
  }
}
@media (max-width: 768px) {
  .space-item:last-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 4;
    grid-row: 4;
  }
}
@media (max-width: 576px) {
  .space-item:last-child {
    grid-column: initial;
    grid-row: initial;
  }
}
.space-item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.space-item__title {
  font-family: var(--second-family);
  font-size: clamp(1.75rem, 1.3835rem + 1.5038vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}
.space-item__desc {
  margin: 0;
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--gray-light);
}

.join {
  position: relative;
  overflow: hidden;
}
.join__title {
  margin-bottom: clamp(2.0625rem, 1.8242rem + 0.9774vw, 2.875rem);
}
.join__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .join__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.join__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 45.625rem;
}
.join__map {
  margin-top: 1.125rem;
  margin-right: min(0px, (1760px - 100vw) / 2);
  margin-left: -14.75rem;
}
@media (max-width: 1024px) {
  .join__map {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
@media (max-width: 576px) {
  .join__map {
    margin-top: 2.5rem;
  }
}
.join__map svg {
  height: 100%;
}
@media (max-width: 1024px) {
  .join__map svg {
    width: 100%;
  }
}
.join__desc {
  margin: 0;
  max-width: 91%;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
@media (max-width: 1024px) {
  .join__desc {
    max-width: 100%;
  }
}
.join__button {
  margin-top: auto;
}
@media (max-width: 1024px) {
  .join__button {
    margin-top: 1.25rem;
  }
}
@media (max-width: 576px) {
  .join__button {
    width: 100%;
  }
}

.automation__title {
  margin-bottom: clamp(2.0625rem, 1.7876rem + 1.1278vw, 3rem);
  text-wrap: balance;
}
.automation__head {
  margin-bottom: 3.75rem;
  margin-left: auto;
  max-width: 65.6%;
}
@media (max-width: 1024px) {
  .automation__head {
    max-width: 100%;
  }
}
.automation__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  gap: clamp(1.5rem, 1.2068rem + 1.203vw, 2.5rem);
}
@media (max-width: 576px) {
  .automation__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.automation__desc p {
  margin: 0;
  width: 50%;
}
@media (max-width: 576px) {
  .automation__desc p {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .automation__slider {
    margin: 0 -16px;
  }
}

.partner-advantage {
  padding: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem) 0 clamp(2.5rem, 1.492rem + 4.1353vw, 5.9375rem);
}
.partner-advantage__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.5052rem + 2.0301vw, 2.6875rem);
}
@media (max-width: 1400px) {
  .partner-advantage__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .partner-advantage__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.partner-advantage-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: clamp(1rem, 0.5602rem + 1.8045vw, 2.5rem);
  min-height: clamp(9.875rem, 7.3459rem + 10.3759vw, 18.5rem);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--gray-dark);
  gap: 1.25rem;
}
.partner-advantage-item__icon {
  width: 5rem;
  height: 5rem;
}
.partner-advantage-item__icon img {
  max-width: 100%;
  aspect-ratio: 1/1;
}
.partner-advantage-item__title {
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.515rem + 0.4511vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.suport__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1366px) {
  .suport__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .suport__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.suport-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: clamp(9.625rem, 4.2002rem + 22.2556vw, 28.125rem);
}
.suport-item:not(.suport-item--image, .suport-item--empty) {
  border-left: 1px solid var(--gray-light);
  padding: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
}
@media (max-width: 768px) {
  .suport-item--empty {
    display: none;
  }
}
.suport-item:nth-child(1), .suport-item:nth-child(2), .suport-item:nth-child(4) {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
@media (max-width: 768px) {
  .suport-item:nth-child(1), .suport-item:nth-child(2), .suport-item:nth-child(4) {
    border-right: 1px solid var(--gray-light);
    border-bottom: 0;
  }
}
.suport-item:nth-child(3) {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
@media (max-width: 1366px) {
  .suport-item:nth-child(3) {
    border-right: 1px solid var(--gray-light);
  }
}
.suport-item:nth-child(4) {
  border-right: 1px solid var(--gray-light);
}
@media (max-width: 1366px) {
  .suport-item:nth-child(4) {
    border-top: 0;
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .suport-item:nth-child(4) {
    border-right: 1px solid var(--gray-light);
  }
}
.suport-item:nth-child(5) {
  border-bottom: 1px solid var(--gray-light);
  border-left: 1px solid var(--gray-light);
}
@media (max-width: 1366px) {
  .suport-item:nth-child(5) {
    border-left: 0;
  }
}
.suport-item:nth-child(6) {
  border-bottom: 1px solid var(--gray-light);
}
@media (max-width: 1366px) {
  .suport-item:nth-child(6) {
    border-right: 1px solid var(--gray-light);
  }
}
@media (max-width: 768px) {
  .suport-item:nth-child(6) {
    border-top: 1px solid var(--gray-light);
  }
}
.suport-item:nth-child(7) {
  border-bottom: 1px solid var(--gray-light);
}
.suport-item:nth-child(8) {
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.suport-item__title {
  font-family: var(--second-family);
  font-size: clamp(1.75rem, 1.6767rem + 0.3008vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.suport-item__desc {
  margin: 0;
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--gray-light);
}
.suport-item__image {
  width: 100%;
  height: 100%;
}

.capabilities {
  position: relative;
}
@media (max-width: 1024px) {
  .capabilities {
    overflow: hidden;
  }
}
.capabilities__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
}
@media (max-width: 1024px) {
  .capabilities__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.capabilities__images-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: min(0px, (1760px - 100vw) / 2);
  width: 100%;
  max-width: 40rem;
}
@media (max-width: 1366px) {
  .capabilities__images-wrap {
    max-width: 40%;
  }
}
@media (max-width: 1366px) and (max-width: 1024px) {
  .capabilities__images-wrap {
    max-width: 100%;
  }
}
.capabilities__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1024px) {
  .capabilities__images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .capabilities .swiper-slide {
    width: 50%;
  }
}
.capabilities__image {
  position: relative;
}
.capabilities__image-title {
  position: absolute;
  left: clamp(1.25rem, 0.1504rem + 4.5113vw, 5rem);
  bottom: clamp(1.25rem, 0.5169rem + 3.0075vw, 3.75rem);
  font-family: var(--second-family);
  font-size: clamp(1.25rem, 0.7368rem + 2.1053vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.capabilities__right {
  position: sticky;
  left: 0;
  top: 130px;
}
@media (max-width: 1024px) {
  .capabilities__right {
    position: static;
  }
}
.capabilities__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem) 40px;
}
@media (max-width: 576px) {
  .capabilities__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.capabilities__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--second-family);
  font-size: clamp(1.75rem, 1.6767rem + 0.3008vw, 2rem);
  color: var(--white);
  gap: 0.8125rem;
}
.capabilities__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: var(--white);
  stroke-width: 2px;
}
.capabilities__desc {
  margin-top: 1rem;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--gray-light);
}
.capabilities .swiper-slide:not(.swiper-slide-active) .capabilities__image {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal.capabilities__pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
  gap: 4px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-bullets.swiper-pagination-horizontal.capabilities__pagination .swiper-pagination-bullet {
  margin: 0;
  border-radius: 0;
  width: 1rem;
  height: 2px;
  background-color: #434343;
  opacity: 1;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullets.swiper-pagination-horizontal.capabilities__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
}

.certs__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 0.8673rem + 1.6327vw, 2.5rem);
}
@media (max-width: 1024px) {
  .certs__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .certs__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.certs__button {
  display: block;
  margin: clamp(2rem, 1.3402rem + 2.7068vw, 4.25rem) auto 0;
}

.certs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #ddd;
  padding: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem) 20px 20px clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
  min-height: clamp(12.5rem, 10.8506rem + 6.7669vw, 18.125rem);
  gap: 10px;
}
.certs-item__name {
  font-family: var(--second-family);
  font-size: clamp(1.75rem, 1.6735rem + 0.3265vw, 2rem);
  text-transform: uppercase;
  color: var(--white);
}
.certs-item__number {
  font-size: 1rem;
  color: var(--gray-base);
}
.certs-item__icon {
  margin: auto 0 0 auto;
  width: 2.625rem;
  height: 2.625rem;
  fill: none;
  stroke: var(--white);
}

.complex {
  position: relative;
  overflow: hidden;
}
.complex__slider {
  position: relative;
}
.complex__pagination {
  position: absolute;
  left: inherit;
  right: calc(50% - 876px);
  bottom: 80px;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: clamp(3.4375rem, 1.6781rem + 7.218vw, 9.4375rem);
  height: clamp(2.875rem, 1.3355rem + 6.3158vw, 8.125rem);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media (max-width: 1024px) {
  .complex__pagination {
    right: 0;
    top: 0;
  }
}

.complex-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .complex-item {
    height: 37.5rem;
  }
}
.complex-item img {
  width: 100%;
}
.complex-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.complex-item__content {
  position: absolute;
  left: 0;
  bottom: 97px;
  width: 100%;
}
@media (max-width: 1024px) {
  .complex-item__content {
    bottom: 16px;
  }
}
.complex-item__title {
  position: relative;
  padding: clamp(0.75rem, 0.2368rem + 2.1053vw, 2.5rem);
  max-width: 72.5rem;
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.category {
  padding-bottom: clamp(5rem, 2.8008rem + 9.0226vw, 12.5rem);
}
.category__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .category__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .category__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.category-item {
  position: relative;
  display: block;
  overflow: hidden;
  height: clamp(12.5rem, 8.1015rem + 18.0451vw, 27.5rem);
}
.category-item--lit {
  height: clamp(12.5rem, 11.0338rem + 6.015vw, 17.5rem);
}
.category-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (any-hover: hover) {
  .category-item:hover .category-item__image {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.category-item__content {
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: clamp(1.5rem, 1.2068rem + 1.203vw, 2.5rem);
  height: 100%;
}
.category-item__title {
  font-family: var(--second-family);
  font-size: clamp(1.25rem, 0.7368rem + 2.1053vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}
.category-item__icon {
  margin-left: auto;
  width: clamp(2rem, 1.7068rem + 1.203vw, 3rem);
  height: clamp(2rem, 1.7068rem + 1.203vw, 3rem);
  fill: none;
  stroke: var(--white);
  stroke-width: 2px;
}
.category-item__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: ease-out 0.5s;
  transition: ease-out 0.5s;
}

.seo-block__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 576px) {
  .seo-block__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.seo-block__row--column {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  max-width: 77%;
  gap: clamp(2.5rem, 2.2434rem + 1.0526vw, 3.375rem);
}
@media (max-width: 576px) {
  .seo-block__row--column {
    max-width: 100%;
  }
}
.seo-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1rem, 0.7434rem + 1.0526vw, 1.875rem);
}
.seo-block h3 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.25rem, 0.7368rem + 2.1053vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
}
.seo-block p {
  margin: 0;
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--gray-light);
}

.nice-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0;
  border-radius: 0;
  width: 100%;
  height: clamp(3rem, 2.5968rem + 1.6541vw, 4.375rem);
  font-size: clamp(1rem, 0.9267rem + 0.3008vw, 1.25rem);
  line-height: 1;
  color: var(--white);
  background: var(--gray-dark);
  background-color: transparent;
}
.nice-select::after {
  margin-top: -0.5rem;
  border: 0;
  width: 1rem;
  height: 1rem;
  background: url("../img/svg/chevron_down.svg") no-repeat center center;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.nice-select .nice-select-dropdown {
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: var(--gray-dark);
}
.nice-select .nice-select-dropdown ul {
  margin: 0;
}
.nice-select.open::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: transparent;
}

.hidden-select {
  position: absolute;
}

.catalog__selects {
  margin-bottom: 40px;
}
.catalog__selects-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.125rem, 0.7218rem + 1.6541vw, 2.5rem);
}
@media (max-width: 1024px) {
  .catalog__selects-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.catalog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
}
@media (max-width: 1366px) {
  .catalog__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .catalog__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .catalog__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.catalog__button {
  display: block;
  margin: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem) auto 0;
}

.catalog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.catalog-item__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-height: 336px;
  aspect-ratio: 410/336;
}
.catalog-item__image-container img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: inherit;
}
.catalog-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: clamp(1rem, 0.5602rem + 1.8045vw, 2.5rem);
  height: 100%;
  gap: clamp(1.625rem, 1.1852rem + 1.8045vw, 3.125rem);
}
.catalog-item__name {
  font-size: clamp(1.125rem, 1.015rem + 0.4511vw, 1.5rem);
  color: var(--white);
}
.catalog-item__desc {
  margin-top: clamp(0.25rem, 0.1034rem + 0.6015vw, 0.75rem);
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--gray-light);
}
.catalog-item__price {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.2218rem + 1.6541vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}
.catalog-item__button {
  margin-top: clamp(0.125rem, -0.0583rem + 0.7519vw, 0.75rem);
  width: 100%;
}

.why-we {
  position: relative;
  overflow: hidden;
}
.why-we__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: calc(-1 * clamp(0.5rem, 0.2801rem + 0.9023vw, 1.25rem));
}
.why-we__item-container {
  padding: clamp(0.5rem, 0.2801rem + 0.9023vw, 1.25rem);
}
.why-we__item-container--w33 {
  width: 33.3%;
}
@media (max-width: 768px) {
  .why-we__item-container--w33 {
    width: 50%;
  }
}
.why-we__item-container--w50 {
  width: 50%;
}
@media (max-width: 768px) {
  .why-we__item-container--w100-mob {
    width: 100%;
  }
}

.why-we-item {
  padding: clamp(1rem, 0.5602rem + 1.8045vw, 2.5rem);
  height: 100%;
  background: var(--gray-dark);
}
.why-we-item__image-container {
  margin-bottom: clamp(1rem, 0.7434rem + 1.0526vw, 1.875rem);
  height: clamp(6.25rem, 5.5169rem + 3.0075vw, 8.75rem);
}
.why-we-item__image-container img {
  max-width: 100%;
  max-height: 100%;
}
.why-we-item__name {
  margin-bottom: 12px;
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.2218rem + 1.6541vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}
.why-we-item__desc {
  font-size: clamp(0.875rem, 0.6917rem + 0.7519vw, 1.5rem);
  color: var(--gray-light);
}

@media (max-width: 1024px) {
  .comparison__scroll {
    position: relative;
    overflow: auto;
  }
}
.comparison__table {
  border-spacing: 0;
  width: 100%;
  color: var(--gray-base);
}
@media (max-width: 768px) {
  .comparison__table {
    width: 768px;
  }
}
.comparison__table th {
  vertical-align: middle;
  padding: clamp(1rem, 0.9267rem + 0.3008vw, 1.25rem);
  font-family: var(--second-family);
  font-size: clamp(1.25rem, 0.7368rem + 2.1053vw, 3rem);
  text-align: left;
  text-transform: uppercase;
}
.comparison__table td {
  padding: clamp(1rem, 0.9267rem + 0.3008vw, 1.25rem);
}
.comparison__table td:first-child {
  width: 22%;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
.comparison__table td:not(:first-child) {
  width: 27%;
}
.comparison__table thead {
  background: var(--gray-dark);
}
.comparison__table tr:nth-child(2n) {
  background: var(--gray-dark);
}
.comparison__table th:nth-child(2),
.comparison__table td:first-child,
.comparison__table td:nth-child(2) {
  color: var(--white);
}
.comparison__table th:nth-child(2) .comparison__rating-item,
.comparison__table td:first-child .comparison__rating-item,
.comparison__table td:nth-child(2) .comparison__rating-item {
  fill: var(--white);
}
.comparison__icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--white);
}
.comparison__cell-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  gap: 12px;
}
.comparison__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.comparison__rating-item {
  width: 1rem;
  height: 1rem;
  fill: var(--gray-base);
}

.profiles {
  position: relative;
  overflow: hidden;
}
.profiles__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  margin-bottom: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
  padding: 0;
}
.profiles__tabs-head {
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--gray-base);
}
.profiles__tabs-head:not(:first-child)::before {
  content: "/";
  margin: 0 clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
  color: var(--white);
}
.profiles__tabs-head:not(.js-active) {
  cursor: pointer;
}
.profiles__tabs-head.js-active {
  color: var(--white);
}

.profiles-item {
  color: var(--white);
}
.profiles-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(1.25rem, 0.8835rem + 1.5038vw, 2.5rem);
}
@media (max-width: 1024px) {
  .profiles-item__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.profiles-item__image-container {
  margin-left: min(0px, (1760px - 100vw) / 2);
  max-width: 59.0625rem;
}
.profiles-item__name {
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.profiles-item__desc {
  margin: 2.5rem 0 clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
}
.profiles-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 98%;
  gap: clamp(1.3125rem, 0.9093rem + 1.6541vw, 2.6875rem);
}
.profiles-item__option {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.profiles-item__option span {
  position: relative;
  z-index: 10;
  font-size: clamp(0.875rem, 0.6917rem + 0.7519vw, 1.5rem);
  line-height: 1;
  color: var(--white);
  background: var(--black);
}
.profiles-item__option-name {
  padding-right: 1rem;
}
.profiles-item__option-value {
  padding-left: 1rem;
}
.profiles-item__option::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid var(--gray-base);
  width: 100%;
}
.profiles-item__skills {
  margin-top: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
}

.skills__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(1rem, 0.6151rem + 1.5789vw, 2.3125rem);
}
@media (max-width: 576px) {
  .skills__grid {
    gap: 1rem 2rem;
  }
}

.skill-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.skill-item--big {
  gap: clamp(0.5rem, 0.2068rem + 1.203vw, 1.5rem);
}
.skill-item__progress-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: clamp(3.25rem, 2.7368rem + 2.1053vw, 5rem);
  height: clamp(3.25rem, 2.7368rem + 2.1053vw, 5rem);
}
.skill-item__progress-container--big {
  width: clamp(3.25rem, 2.0038rem + 5.1128vw, 7.5rem);
  height: clamp(3.25rem, 2.0038rem + 5.1128vw, 7.5rem);
}
.skill-item__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(1.25rem, 1.0301rem + 0.9023vw, 2rem);
  height: clamp(1.25rem, 1.0301rem + 0.9023vw, 2rem);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.skill-item__icon--big {
  width: clamp(1.3125rem, 0.8177rem + 2.0301vw, 3rem);
  height: clamp(1.3125rem, 0.8177rem + 2.0301vw, 3rem);
}
.skill-item__title {
  font-size: 0.875rem;
  color: var(--white);
}
.skill-item__title--big {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.5451rem + 1.3534vw, 2rem);
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
}

.progress-ring {
  width: 100%;
  height: 100%;
}
.progress-ring__value {
  stroke-dasharray: var(--p) 100;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: stroke-dasharray 0.4s ease;
  transition: stroke-dasharray 0.4s ease;
}
.progress-ring:not([style="--p:75"]) {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.progress-ring[style="--p:100"] .progress-ring__value {
  stroke-dasharray: 101 100;
}

.tabs__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  margin-bottom: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
  padding: 0;
}
.tabs__head--big {
  margin-bottom: clamp(2rem, 1.4868rem + 2.1053vw, 3.75rem);
}
.tabs__head-item:not(:first-child) .tabs__button--type-1::before {
  content: "/";
  margin: 0 clamp(0.75rem, 0.6034rem + 0.6015vw, 1.25rem);
  color: var(--white);
}
.tabs__button {
  outline: 0;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.tabs__button--type-1 {
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  text-transform: uppercase;
  color: var(--gray-base);
}
.tabs__button--type-1.js-active {
  color: var(--white);
}
.tabs__button--type-2 {
  position: relative;
  padding: clamp(0.75rem, 0.5301rem + 0.9023vw, 1.5rem) clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.25rem, 0.7368rem + 2.1053vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}
.tabs__button--type-2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tabs__button--type-2.js-active::after {
  width: 100%;
}
.tabs__body {
  position: relative;
}
.tabs__content {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
}
.tabs__content.js-active {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media (max-width: 1366px) {
  .tabs__content .catalog-item:nth-child(4n) {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tabs__content .catalog-item:nth-child(4n) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sku__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}
@media (max-width: 576px) {
  .sku__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.sku__title {
  margin-bottom: 24px;
  font-family: var(--second-family);
  font-size: clamp(1.5rem, 1.3534rem + 0.6015vw, 2rem);
  text-transform: uppercase;
  color: var(--white);
}
.sku__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 19px;
}

.sku-item {
  position: relative;
  display: block;
  cursor: pointer;
}
.sku-item__input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.sku-item__input:checked + .sku-item__wrapper--type-1::after, .sku-item__input:checked + .sku-item__wrapper--type-1::before {
  opacity: 1;
}
.sku-item__input:checked + .sku-item__wrapper--type-2 {
  border-color: var(--white);
}
.sku-item__wrapper {
  position: relative;
  display: block;
}
.sku-item__wrapper--type-1 {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.sku-item__wrapper--type-1::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  outline: 1px solid var(--white);
  border: 4px solid var(--black);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sku-item__wrapper--type-1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 50;
  border: 1px solid var(--white);
  border-radius: 50%;
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.sku-item__wrapper--type-2 {
  border: 1px solid var(--gray-dark);
  padding: 10px;
  min-width: 44px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gray-dark);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.main-menu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px 0;
  width: 100%;
  height: 100dvh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .main-menu {
    padding: 0;
  }
}
.main-menu.js-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.main-menu.js-active .main-menu__wrapper {
  clip-path: inset(0% 0% 0% 0% round 0);
}
.main-menu .container {
  padding-right: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .main-menu .container {
    padding: 0;
  }
}
.main-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3.3vh;
}
@media (max-width: 576px) {
  .main-menu__list {
    gap: 2rem;
  }
}
.main-menu__link {
  position: relative;
  font-family: var(--second-family);
  font-size: clamp(1.625rem, 1.2218rem + 1.6541vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.main-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .main-menu__link:hover {
    color: #fff;
  }
  .main-menu__link:hover::after {
    width: 100%;
  }
}
.main-menu__shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.52);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.main-menu__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  clip-path: inset(0% 0% 0% 100% round 0);
  margin-left: auto;
  padding: 29px 40px 40px;
  width: 100%;
  height: 100%;
  max-width: 58.4375rem;
  background: var(--gray-dark);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  gap: 1.85185vh;
}
@media (width >= 1760px) {
  .main-menu__wrapper {
    margin-right: -2.5rem;
  }
}
@media (max-width: 1024px) {
  .main-menu__wrapper {
    padding: 32px;
    gap: 1.25rem;
  }
}
.main-menu__social {
  margin-top: auto;
  margin-left: auto;
}

.product-card .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(5rem, 4.2669rem + 3.0075vw, 7.5rem);
}
.product-card__row {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
}
@media (max-width: 1024px) {
  .product-card__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.product-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-card__image.loading {
  opacity: 0.8;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  pointer-events: none;
}
.product-card__image img {
  width: 100%;
  height: 100%;
}
.product-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product-card__title {
  margin: -5px 0 clamp(1rem, 0.7617rem + 0.9774vw, 1.8125rem);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(2rem, 1.7068rem + 1.203vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.product-card__desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
}
.product-card__desc > p {
  margin: 0;
}
.product-card__sku {
  margin: clamp(2.5rem, 1.7669rem + 3.0075vw, 5rem) 0 clamp(2rem, 1.047rem + 3.9098vw, 5.25rem);
}
.product-card__options {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  margin-bottom: 1.5rem;
  padding: 0;
  gap: 1rem 2rem;
}
@media (max-width: 1024px) {
  .product-card__options {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.product-card__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: var(--font-family);
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--white);
  gap: 0.5rem;
}
.product-card__option-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--white);
}
.product-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
  padding-right: 32px;
  gap: 2.25rem;
}
@media (width <= 1200px) {
  .product-card__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 0;
  }
}
.product-card__price {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.2218rem + 1.6541vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}
.product-card__subtitle {
  margin: 0 0 clamp(1.5rem, 1.2068rem + 1.203vw, 2.5rem);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.product-card__chars-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(1rem, 0.5235rem + 1.9549vw, 2.625rem);
}
.product-card__char {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: clamp(0.875rem, 0.6917rem + 0.7519vw, 1.5rem);
  line-height: 100%;
  color: var(--white);
  gap: 1rem;
}
.product-card__char::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gray-base);
}
.product-card__char-title {
  position: relative;
  z-index: 10;
  padding-right: 1rem;
  background-color: var(--black);
}
.product-card__char-value {
  position: relative;
  z-index: 10;
  padding-left: 1rem;
  background-color: var(--black);
}
.product-card__description {
  position: relative;
  overflow: hidden;
  padding-bottom: 54px;
  min-height: 0; /* важно для grid */
  -webkit-transition: max-height 350ms ease;
  transition: max-height 350ms ease;
}
.product-card__description::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 54px;
  background: var(--black);
}
.product-card__description-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--white);
  gap: 1.875rem;
}
.product-card__description-wrapper > * {
  margin: 0;
}
.product-card__showmore {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  outline: 0;
  border: 0;
  border-bottom: 1px solid var(--white);
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--white);
  background-color: transparent;
  cursor: pointer;
}

.product-features__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(2.3125rem, 1.4328rem + 3.609vw, 5.3125rem);
}

.product-features-item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 1.8534rem + 0.6015vw, 2.5rem);
}
@media (max-width: 1024px) {
  .product-features-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.product-features-item:nth-child(2n+1) .product-features-item__image-container {
  margin-left: min(0px, (1760px - 100vw) / 2);
}
.product-features-item:nth-child(2n) .product-features-item__image-container {
  margin-right: min(0px, (1760px - 100vw) / 2);
}
.product-features-item__image-container {
  position: relative;
  height: 645px;
  background-color: #1d1d1d;
}
@media (max-width: 1400px) {
  .product-features-item__image-container {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .product-features-item__image-container {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
.product-features-item__image {
  aspect-ratio: 188/129;
}
.product-features-item__label {
  position: absolute;
}
.product-features-item__label--type-1 {
  right: 0;
  top: 37%;
  max-width: 232px;
}
.product-features-item__label--type-1::after {
  content: "";
  position: absolute;
  right: 86%;
  top: 116%;
  width: 11.125rem;
  height: 6.8125rem;
  background: url("../img/product/label1.svg") no-repeat center;
  background-size: contain;
}
.product-features-item__label--type-2 {
  left: 8%;
  top: 18.3%;
  max-width: 244px;
}
.product-features-item__label--type-2::after {
  content: "";
  position: absolute;
  left: 64%;
  top: 105%;
  width: 275px;
  height: 98px;
  background: url("../img/product/label2.svg") no-repeat center;
  background-size: contain;
}
.product-features-item__label--type-3 {
  left: 23.7%;
  right: 0;
  top: 59.9%;
  max-width: 232px;
}
.product-features-item__label--type-3::after {
  content: "";
  position: absolute;
  left: 68%;
  right: 86%;
  top: 105%;
  width: 188px;
  height: 93px;
  background: url("../img/product/label3.svg") no-repeat center;
  background-size: contain;
}
.product-features-item__label-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--white);
}
.product-features-item__label-desc {
  margin: 10px 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--graylight);
}
.product-features-item__content {
  position: sticky;
  right: 0;
  top: 120px;
  padding: clamp(0.75rem, 0.3468rem + 1.6541vw, 2.125rem) clamp(0.75rem, 0.2368rem + 2.1053vw, 2.5rem) clamp(0.75rem, 0.2368rem + 2.1053vw, 2.5rem);
}
.product-features-item__title {
  margin-bottom: 24px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0019rem + 2.5564vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.product-features-item__desc {
  font-weight: 400;
  font-size: clamp(1rem, 0.8534rem + 0.6015vw, 1.5rem);
  color: var(--gray-light);
}

.popular-queries__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.popular-queries__link {
  padding: 4px 20px 8px;
  font-family: var(--font-family);
  font-size: clamp(0.875rem, 0.765rem + 0.4511vw, 1.25rem);
  color: var(--white);
  background: var(--gray-dark);
}

.clip-path-right,
.clip-path-right-init {
  position: relative;
  clip-path: inset(10% 10% 0 10% round 0.75rem 0.75rem 0.75rem 0.75rem);
  overflow: hidden;
  -webkit-transition: 0.75s cubic-bezier(0.4, 0.15, 0, 1);
  transition: 0.75s cubic-bezier(0.4, 0.15, 0, 1);
}
.clip-path-right img,
.clip-path-right-init img {
  height: 100%;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.clip-path-right.js-animated,
.clip-path-right-init.js-animated {
  clip-path: inset(0% 0% 0% 0%);
}

.clip-path-right-wihout-parallax {
  position: relative;
  clip-path: inset(0% 0% 0% 100%);
  overflow: hidden;
}

.image-with-parallax {
  position: relative;
  overflow: hidden;
}
.image-with-parallax img {
  height: 100%;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}/*# sourceMappingURL=main.css.map */
