@charset "UTF-8";
@layer base, component, mod;
@layer base{

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

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
  .swiper-3d .swiper-slide,
  .swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
  }

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

/* Slide styles start */
/* 3D Shadows */
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
  .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
}
/* BREAKPOINTS
------------------------- */
/* COLORS
------------------------ */
/* EFFECTS
------------------------ */
:root {
  /* SECTION SPACING  */
  --spacing: 100px;
  /* FONTS  */
  --font-primary: 'ppneuemontreal', sans-serif, -apple-system, blinkmacsystemfont,
    roboto, ubuntu, 'Droid Sans', 'Helvetica Neue', arial, sans-serif,
    'Apple Color Emoji';
}
:root {
  /* COLORS
  ------------------------- */
  --color-primary: #000000;
  --color-primary--rgb: 0, 0, 0;
  --color-alt: #000;
  --color-alt--rgb: 0, 0, 0;
  --color-blck: #000;
  --color-blck--rgb: 0, 0, 0;
  --color-whte: #fff;
  --color-whte--rgb: 255, 255, 255;
  --color-whte-20: rgba(255, 255, 255, 0.2);
  --color-whte-20--rgb: 255, 255, 255;
  --color-whte-50: rgba(255, 255, 255, 0.5);
  --color-whte-50--rgb: 255, 255, 255;
  --color-accent: #007656;
  --color-accent--rgb: 0, 118, 86;
  --color-accent-20: rgba(0, 118, 86, 0.2);
  --color-accent-20--rgb: 0, 118, 86;
  --color-accent-50: rgba(0, 118, 86, 0.5);
  --color-accent-50--rgb: 0, 118, 86;
  --color-accent-80: rgba(0, 118, 86, 0.8);
  --color-accent-80--rgb: 0, 118, 86;
  --color-accent-dark: #677360;
  --color-accent-dark--rgb: 103, 115, 96;
  --color-gry: #ECECEC;
  --color-gry--rgb: 236, 236, 236;
  --color-text: #000;
  --color-text--rgb: 0, 0, 0;
  --color-text-alt: #a8a8a8;
  --color-text-alt--rgb: 168, 168, 168;
  --color-bg: #000;
  --color-bg--rgb: 0, 0, 0;
  --color-bg-secondary: #e0e0e0;
  --color-bg-secondary--rgb: 224, 224, 224;
  --color-success: #259243;
  --color-success--rgb: 37, 146, 67;
  --color-error: #F85D5D;
  --color-error--rgb: 248, 93, 93;
  --font-size-default: 16px;
  /** Z-INDEX SYSTEM
  ------------------------- */
  --index-1: 100;
  --index-2: 200;
  --index-3: 1200;
  --index-4: 1300;
}
@layer base {
  * {
    margin: 0;
    padding: 0;
    border: 0;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  *::before,
  *::after {
    display: inline-block;
  }
  html,
  body {
    min-width: 360px;
    height: 100%;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scrollbar-gutter: stable;
  }
  body {
    color: var(--color-primary);
    font-size: var(--font-size-default);
    font-family: var(--font-primary);
    background-color: var(--color-gry);
    font-weight: 500;
    line-height: 1.25;
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  ::-webkit-scrollbar {
    width: 6px;
    height: 5px;
  }
  ::-webkit-scrollbar-track {
    background: var(--color-gry);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 0px;
  }
  ::selection {
    color: var(--color-whte);
    background: var(--color-primary);
  }
  input,
  button,
  textarea {
    font-size: inherit;
    font-family: var(--font-primary);
    line-height: inherit;
  }
  button {
    color: inherit;
    font-family: var(--font-primary);
    background-color: transparent;
    outline: 0;
    cursor: pointer;
  }
  div[class*=__text] p:only-of-type,
  div[class*=__text] p:last-of-type,
  div[class*=__details] p:only-of-type,
  div[class*=__details] p:last-of-type,
  div[class*=__note] p:only-of-type,
  div[class*=__note] p:last-of-type {
    margin: 0;
  }
  [class*=image] img {
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
  }
  ul li {
    list-style: none;
  }
  img {
    vertical-align: top;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: inherit;
    font-size: inherit;
  }
  address,
  cite {
    font-style: normal;
  }
  fieldset,
  dl,
  dd {
    margin: 0;
    padding: 0;
  }
  fieldset {
    border: none;
  }
}
img {
  display: block;
  max-width: 100%;
}
html.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
@font-face {
  font-weight: 500;
  font-family: "ppneuemontreal";
  font-style: normal;
  src: url("../fonts/ppneuemontreal-500.woff2") format("woff2"), url("../fonts/ppneuemontreal-500.woff") format("woff");
  font-display: swap;
}
/* stylelint-disable*/
/* IMPORTS
---------------------------- */
body::after {
  position: fixed;
  inset: 0;
  z-index: calc(var(--index-3) - 1);
  width: 100%;
  height: 100dvh;
  height: 100vh; /* Fallback для старых браузеров */
  height: 100dvh;
  background-color: rgba(var(--color-blck--rgb), 0.3);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px); /* Для Safari/iOS */
  opacity: 0;
  transition: opacity 0.2s ease;
  content: "";
  pointer-events: none;
}
[data-popup].popup-open {
  pointer-events: none;
}
.popup-show body::after {
  opacity: 1;
}
@layer component {
  .popup {
    position: sticky;
    inset: 0;
    width: 100%;
    height: 100vh; /* Fallback */
    height: 100dvh;
    display: none; /* Скрываем попап по умолчанию */
    visibility: hidden;
    transition: visibility 0.8s ease 0s;
    pointer-events: none;
  }
  /* stylelint-disable-next-line selector-class-pattern */
  .popup_show {
    display: block; /* Показываем попап при открытии */
    z-index: var(--index-3);
    overflow: auto;
    visibility: visible;
    pointer-events: auto;
  }
  /* stylelint-disable-next-line selector-class-pattern */
  .popup_show .popup__content {
    visibility: visible;
  }
  .popup__wrapper {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
  }
  .popup__content {
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: transform 0.3s ease 0s;
  }
  .lock .popup__content {
    visibility: visible;
  }
}
/* stylelint-enable*/
/* UTILS
---------------------------- */
/* stylelint-disable-next-line scss/percent-placeholder-pattern */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 99;
}
.header.is-fixed .header__inner {
  padding: 11px;
  border-radius: 4px;
  background-color: var(--color-gry);
  border: 1px solid rgba(var(--color-blck--rgb), 0.2);
}
.header.is-fixed .header__tel,
.header.is-fixed .header__email {
  background-color: var(--color-accent);
}
.header.is-fixed .header__burger {
  background-color: var(--color-accent);
}
.header.is-fixed .download-template__icon {
  background-color: var(--color-accent);
  color: var(--color-whte);
}
.header.is-fixed .download-template__text {
  color: var(--color-blck);
}
.header.is-fixed .download-template__text span {
  color: var(--color-blck);
}
.header.is-fixed .header__menu-item {
  color: var(--color-blck);
}
.header.is-fixed .header__logo-white {
  display: none;
}
.header.is-fixed .header__logo-black {
  display: block;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding 0.2s ease;
}
.header__logo {
  width: 124px;
}
.header__logo-white {
  display: block;
}
.header__logo-black {
  display: none;
}
.header__menu {
  width: 100%;
  display: none;
}
.header__menu-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__menu-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-whte);
}
.header__menu-link {
  color: unset;
  transition: color 0.2s ease;
}
.header__menu-dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: currentColor;
  transition: 0.3s ease;
}
.header__menu-dropdown-link::after {
  content: "";
  width: 16px;
  height: 16px;
  mask: url("../img/icons/chevron-down.svg") center center/16px no-repeat;
  -webkit-mask: url("../img/icons/chevron-down.svg") center center/16px no-repeat;
  background-color: currentColor;
}
.header__contacts {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 4px;
}
.header__tel, .header__email {
  --size: 40px;
  --iconSize: 16px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--color-whte--rgb), 0.2);
  color: var(--color-whte);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  border-radius: 4px;
  transition: 0.2s opacity ease;
}
.header__tel::before, .header__email::before {
  content: "";
  width: var(--iconSize);
  height: var(--iconSize);
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background-color: var(--color-whte);
}
.header__tel span, .header__email span {
  display: none;
}
.header__actions {
  display: flex;
  align-items: center;
}
.header__download-template {
  display: none;
}
.header__burger {
  --size: 40px;
  --iconSize: 16px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--color-whte--rgb), 0.2);
  color: var(--color-whte);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__burger::before {
  content: "";
  width: var(--iconSize);
  height: var(--iconSize);
  mask: url("../img/icons/burger.svg") center center/contain no-repeat;
  -webkit-mask: url("../img/icons/burger.svg") center center/contain no-repeat;
  background-color: currentColor;
}
.download-template {
  display: flex;
  gap: 12px;
}
.download-template--white .download-template__text {
  color: var(--color-whte);
}
.download-template--white .download-template__icon {
  background-color: var(--color-whte);
  color: var(--color-accent);
}
.download-template__text {
  font-size: 14px;
  color: var(--color-blck);
}
.download-template__text span {
  display: block;
  opacity: 0.5;
  margin-top: 4px;
}
.download-template__icon {
  --size: 40px;
  --iconSize: 16px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-whte);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.download-template__icon::before {
  content: "";
  width: var(--iconSize);
  height: var(--iconSize);
  mask: url("../img/icons/download.svg") center center/contain no-repeat;
  -webkit-mask: url("../img/icons/download.svg") center center/contain no-repeat;
  background-color: currentColor;
}
.footer {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background-color: var(--color-gry);
}
.footer__lines {
  display: none;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__logo {
  display: block;
  width: 104px;
}
.footer__main {
  width: 100%;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.footer__contacts-item {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -1px;
  transition: opacity 0.3s ease;
}
.footer__blocks {
  max-width: 420px;
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 32px;
}
.footer__block {
  width: 100%;
}
.footer__block-title {
  color: rgba(var(--color-blck--rgb), 0.6);
  margin-bottom: 12px;
}
.footer__block-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__block-adress {
  max-width: 130px;
  font-size: 12px;
  line-height: 1.2;
}
.footer__block a.footer__block-link {
  transition: opacity 0.3s ease;
}
.footer__block-link {
  font-size: 12px;
  line-height: 1.2;
}
.footer__bottom {
  margin-top: 91px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__title {
  font-size: 28px;
  line-height: 1;
}
.footer__title span {
  display: block;
  color: rgba(var(--color-blck--rgb), 0.5);
}
.footer__panel {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer__policy {
  max-width: 132px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(var(--color-blck--rgb), 0.5);
  transition: opacity 0.3s ease;
}
.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  z-index: 98;
  transition: 0.3s ease;
}
.to-top.is-visible {
  opacity: 1;
}
/* stylelint-disable*/
@layer component {
  .btn {
    --btn-bg: var(--color-accent);
    --btn-color: var(--color-whte);
    --btn-bg-hover: var(--color-accent-50);
    --btn-color-hover: var(--color-whte);
    --btn-icon-bg: var(--color-whte);
    --btn-icon-color: var(--color-accent);
    --btn-icon-bg-hover: var(--color-whte);
    --btn-icon-color-hover: var(--color-accent);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4px;
    background-color: var(--btn-bg);
    color: var(--btn-color);
    border-radius: 4px;
    min-height: 48px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .btn__text {
    font-size: 14px;
    line-height: 1.2;
    padding: 8px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
  .btn__icon {
    position: relative;
    --size: 40px;
    --iconSize: 16px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--btn-icon-color);
    border-radius: 2px;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
    z-index: 1;
  }
  .btn__icon span {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 2px;
    background-color: var(--btn-icon-bg);
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: -1;
  }
  .btn__icon::before {
    position: absolute;
    content: "";
    width: var(--iconSize);
    height: var(--iconSize);
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background-color: currentColor;
    transform: translate3d(0%, 0%, 0px);
    transform-style: preserve-3d;
    transition: 0.4s ease;
  }
  .btn__icon::after {
    position: absolute;
    content: "";
    width: var(--iconSize);
    height: var(--iconSize);
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background-color: currentColor;
    transform: translate3d(-150%, 150%, 0px);
    transform-style: preserve-3d;
    transition: 0.4s ease;
  }
  .btn-icon {
    --btn-bg: var(--color-accent);
    --btn-color: var(--color-whte);
    --btn-bg-hover: var(--color-accent-50);
    --btn-color-hover: var(--color-whte);
    --size: 40px;
    --iconSize: 16px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--btn-bg);
    color: var(--btn-color);
    border-radius: 4px;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .btn-icon--xl {
    --size: 56px;
    --iconSize: 24px;
  }
  .btn-icon--xxl {
    --size: 64px;
    --iconSize: 24px;
  }
  .btn-icon--l {
    --size: 49px;
    --iconSize: 20px;
  }
  .btn-icon::before {
    content: "";
    width: var(--iconSize);
    height: var(--iconSize);
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background-color: currentColor;
  }
  .btn-icon.swiper-button-disabled {
    pointer-events: none;
    background-color: rgba(0, 118, 86, 0.5019607843);
  }
  .btn-icon.swiper-button-disabled::before {
    opacity: 0.3;
  }
  .btn-base {
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 49px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.2;
    background-color: var(--color-whte);
    color: var(--color-accent);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  .btn-base[disabled] {
    pointer-events: none;
    color: rgba(var(--color-blck--rgb), 0.3);
  }
}
@layer mod {
  .btn--white {
    --btn-bg: var(--color-whte);
    --btn-color: var(--color-blck);
    --btn-bg-hover: var(--color-accent);
    --btn-color-hover: var(--color-whte);
    --btn-icon-bg: var(--color-accent);
    --btn-icon-color: var(--color-whte);
    --btn-icon-bg-hover: var(--color-whte);
    --btn-icon-color-hover: var(--color-accent);
  }
  .btn--blured {
    --btn-bg: var(--color-whte-20);
    --btn-color: var(--color-whte);
    --btn-bg-hover: var(--color-whte);
    --btn-color-hover: var(--color-accent);
    --btn-icon-bg: var(--color-whte);
    --btn-icon-color: var(--color-accent);
    --btn-icon-bg-hover: var(--color-accent);
    --btn-icon-color-hover: var(--color-whte);
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
  }
  .btn--wide {
    width: 100%;
  }
  .btn-icon--white {
    --btn-bg: var(--color-whte);
    --btn-color: var(--color-accent);
    --btn-bg-hover: var(--color-whte-50);
    --btn-color-hover: var(--color-whte);
  }
  .btn-icon--white.swiper-button-disabled {
    background-color: var(--color-whte);
  }
  .btn-icon--blured {
    --btn-bg: var(--color-whte-20);
    --btn-color: var(--color-whte);
    --btn-bg-hover: var(--color-whte);
    --btn-color-hover: var(--color-accent);
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
  }
  .btn-icon--outline {
    --btn-bg: transparent;
    --btn-border-color: var(--color-accent-20);
    --btn-bg-hover: var(--color-accent);
    --btn-color: var(--color-accent);
    border: 1px solid var(--color-accent-20);
  }
}
/* stylelint-enable*/
.form-radio-types {
  width: 100%;
}
.form-radio-types__list {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  width: calc(100% + 32px);
  padding: 0 16px;
  margin: 0 -16px;
}
.form-radio-types__list::-webkit-scrollbar {
  display: none;
}
.form-radio-type {
  position: relative;
  flex-shrink: 0;
}
.form-radio-type input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.form-radio-type input:checked + label {
  background-color: var(--color-whte);
  color: var(--color-accent);
}
.form-radio-type label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
  cursor: pointer;
  background-color: rgba(var(--color-whte--rgb), 0.2);
  color: var(--color-whte);
  border-radius: 4px;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  font-size: 14px;
  line-height: 1.2;
}
.form-radio-type label::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background-color: currentColor;
}
.form-files {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-files__panel {
  display: contents;
}
.form-files__template {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  cursor: pointer;
  margin-top: 16px;
  order: 10;
}
.form-files__template::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  mask: url("../img/icons/download.svg") center center/contain no-repeat;
  -webkit-mask: url("../img/icons/download.svg") center center/contain no-repeat;
  background-color: currentColor;
  flex-shrink: 0;
}
.form-files__control {
  position: relative;
  display: block;
}
.form-files__control input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-files__control span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-whte);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.form-files__control span::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  mask: url("../img/icons/chain.svg") center center/contain no-repeat;
  -webkit-mask: url("../img/icons/chain.svg") center center/contain no-repeat;
  background-color: currentColor;
}
.form-files__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.form-files__item {
  width: 100%;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  border: 1px solid rgba(var(--color-whte--rgb), 0.2);
  background-color: var(--color-accent);
  border-radius: 4px;
  margin-top: 8px;
}
.form-files__item-info {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-files__item-info span {
  display: block;
  margin-top: 2px;
  color: rgba(var(--color-whte--rgb), 0.5);
}
.form-files__item-remove {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
  mask: url("../img/icons/close.svg") center center/contain no-repeat;
  -webkit-mask: url("../img/icons/close.svg") center center/contain no-repeat;
  background-color: currentColor;
  cursor: pointer;
}
.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-group {
  position: relative;
  width: 100%;
}
.form-group--w-type {
  display: none;
}
.form-group--w-type.is-active {
  display: block;
}
.form-group._form-error .form-error-tip {
  display: block;
}
.form-label {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 14px;
  color: rgba(var(--color-whte--rgb), 0.7);
  z-index: 1;
}
.form-control {
  display: inline-block;
  width: 100%;
  background-color: rgba(var(--color-whte--rgb), 0.2);
  font-size: 16px;
  line-height: 1.25;
  color: var(--color-whte);
  border-radius: 4px;
  padding: 33px 20px 12px;
  outline: none;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
}
.form-control::placeholder {
  color: rgba(var(--color-whte--rgb), 0.5);
}
.form-control._form-error {
  padding: 32px 19px 11px;
  border: 1px solid var(--color-error);
  background-color: var(--color-accent-dark);
}
.form-error-tip {
  display: none;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-error);
  margin-top: 4px;
}
.form-textarea {
  position: relative;
}
.form-textarea .form-control {
  height: 137px;
  resize: none;
  padding-bottom: 20px;
  padding-bottom: 40px;
  overflow: hidden;
}
.form-textarea .form-control::-webkit-scrollbar {
  display: none;
}
.form-textarea .form-control._form-error ~ .form-textarea-count {
  color: var(--color-error);
  bottom: 32px;
}
.form-textarea .form-control._form-error ~ .form-error-tip {
  display: block;
}
.form-textarea .form-textarea-field {
  position: relative;
}
.form-textarea .form-textarea-count {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(var(--color-whte--rgb), 0.7);
}
.form-checkbox {
  position: relative;
  width: 100%;
}
.form-checkbox._form-error label {
  color: var(--color-error);
}
.form-checkbox._form-error label::before {
  background-color: var(--color-error);
}
.form-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.form-checkbox input:checked + label::before {
  mask: url("../img/icons/checkbox-checked.svg") center center/contain no-repeat;
  -webkit-mask: url("../img/icons/checkbox-checked.svg") center center/contain no-repeat;
}
.form-checkbox label {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox label::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  mask: url("../img/icons/checkbox-empty.svg") center center/contain no-repeat;
  -webkit-mask: url("../img/icons/checkbox-empty.svg") center center/contain no-repeat;
  background-color: var(--color-whte);
  display: block;
}
.form-checkbox label span {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(var(--color-whte--rgb), 0.5);
}
.form-checkbox label span a {
  color: var(--color-whte);
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}
@layer base {
  [class*=__container],
  .container {
    --pad: 16px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pad);
  }
}
@layer component {
  .hero {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .hero.section {
    padding: 0;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .hero__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4784313725);
  }
  .hero__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__container {
    height: 100%;
  }
  .hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 148px;
    height: 100%;
    min-height: 100dvh;
    padding: 112px 0 16px;
    z-index: 1;
  }
  .hero__title {
    font-size: 32px;
    line-height: 1;
    color: var(--color-whte);
    margin-bottom: 24px;
  }
  .hero__actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero__details {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
    gap: 4px;
  }
  .hero__license {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    background-color: var(--color-accent);
    color: var(--color-whte);
    padding: 12px;
    border-radius: 4px;
    grid-column: 2/3;
  }
  .hero__license-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hero__license-icons {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .hero__license-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(var(--color-whte--rgb), 0.2);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    z-index: 1;
  }
  .hero__license-icon::before {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background-color: currentColor;
  }
  .hero__license-icon:not(:first-child) {
    margin-left: -4px;
    z-index: 0;
  }
  .hero__license-icon--white {
    background-color: var(--color-whte);
    color: var(--color-accent);
  }
  .hero__license-title {
    font-size: 14px;
    line-height: 1.2;
  }
  .hero__license-desc {
    display: none;
  }
  .hero__license-inn {
    position: relative;
  }
  .hero__license-inn.is-copied {
    pointer-events: none;
  }
  .hero__license-inn.is-copied .hero__license-inn-tip {
    opacity: 1;
    visibility: visible;
  }
  .hero__license-inn-tip {
    position: absolute;
    bottom: 100%;
    left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--color-whte);
    color: var(--color-blck);
    box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.0784313725);
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .hero__license-inn-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(var(--color-whte--rgb), 0.5);
    transition: color 0.3s ease;
  }
  .hero__license-inn-text::before {
    content: "";
    width: 16px;
    height: 16px;
    mask: url("../img/icons/copy.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/copy.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .hero__territory {
    width: 100%;
    padding: 6px;
    display: flex;
    flex-direction: column;
    background-color: rgba(var(--color-whte--rgb), 0.2);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    border-radius: 4px;
    overflow: hidden;
    grid-column: 1/2;
  }
  .hero__territory-title {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    padding: 6px;
    color: var(--color-whte);
  }
  .hero__clients {
    width: 100%;
    background-color: rgba(var(--color-whte--rgb), 0.2);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    border-radius: 4px;
    overflow: hidden;
  }
  .hero__clients-info {
    display: none;
  }
  .hero__clients-slider {
    width: 100%;
    padding: 22px 0;
  }
  .hero__clients-slider .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  .hero__clients-item.swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 48px !important;
  }
  .hero__clients-item img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}
@layer component {
  .about {
    padding: 50px 0;
    background-color: var(--color-accent);
    color: var(--color-whte);
  }
  .about__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
  }
  .about__subtitle {
    color: rgba(var(--color-whte--rgb), 0.6);
  }
  .about__main {
    margin-bottom: 40px;
  }
  .about__img {
    display: block;
    max-width: 560px;
    width: 100%;
    height: 226px;
    margin-bottom: 24px;
  }
  .about__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
  .about__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .about__text {
    color: rgba(var(--color-whte--rgb), 0.7);
  }
  .about__desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .about__btn {
    width: 247px;
  }
  .about__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .about__detail {
    width: 100%;
    display: grid;
    grid-template-columns: 191px 1fr;
    color: var(--color-whte);
    padding: 11px 0 12px;
    min-height: 124px;
    border-top: 1px solid rgba(var(--color-whte--rgb), 0.2);
  }
  .about__detail:last-child {
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(var(--color-whte--rgb), 0.2);
  }
  .about__detail-num {
    font-size: 64px;
    line-height: 1;
    letter-spacing: -6px;
    padding-right: 8px;
  }
}
@layer component {
  .blog {
    background-color: var(--color-gry);
    overflow: hidden;
  }
  .blog__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 40px;
  }
  .blog__subtitle {
    color: rgba(var(--color-blck--rgb), 0.5);
  }
  .blog__slider .swiper-slide {
    width: 335px !important;
  }
  .blog__list {
    display: none;
  }
  .blog__item {
    width: 100%;
    padding: 20px;
    background-color: var(--color-whte);
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .blog__item-img {
    display: block;
    width: 100%;
    margin-bottom: 16px;
  }
  .blog__item-img img {
    display: block;
    width: 100%;
    border-radius: 2px;
    filter: grayscale(1);
    transition: filter 0.3s ease-in-out;
  }
  .blog__item-date {
    color: rgba(var(--color-blck--rgb), 0.5);
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out;
  }
  .blog__item-title {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  .blog__bottom {
    margin-top: 24px;
  }
  .blog__btn {
    width: 240px;
  }
}
@layer component {
  .contact-us {
    position: relative;
    overflow: hidden;
    padding: 50px 0 0;
    background-color: var(--color-accent);
    color: var(--color-whte);
  }
  .contact-us__inner {
    position: relative;
    z-index: 1;
  }
  .contact-us__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 40px;
  }
  .contact-us__subtitle {
    color: rgba(var(--color-whte--rgb), 0.5);
  }
  .contact-us__main {
    width: 100%;
  }
  .contact-us__progress {
    margin-top: 40px;
  }
  .contact-us__progress-steps {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 20px;
  }
  .contact-us__progress-steps-current {
    font-size: 32px;
    line-height: 1;
  }
  .contact-us__progress-steps-all {
    font-size: 20px;
    line-height: 1;
    color: rgba(var(--color-whte--rgb), 0.5);
  }
  .contact-us__progress-bar {
    position: relative;
    width: calc(100% + 32px);
    margin: 0 -16px;
    height: 12px;
    background-color: rgba(var(--color-whte--rgb), 0.2);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
  }
  .contact-us__progress-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 12px;
    background-color: var(--color-whte);
    border-radius: 0 2px 2px 0;
  }
  .contact-us__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .contact-us__form-block + .contact-us__form-block {
    margin-top: 24px;
  }
  .contact-us__form-block-title {
    margin-bottom: 12px;
    color: rgba(var(--color-whte--rgb), 0.5);
  }
  .contact-us__form-step {
    display: none;
  }
  .contact-us__form-step.is-active {
    display: block;
  }
  .contact-us__form-row {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .contact-us__form-bottom {
    margin-top: auto;
  }
}
@layer component {
  .h1 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -1px;
  }
  .h2 {
    font-size: 28px;
    line-height: 1;
  }
  .caption {
    font-size: 14px;
    line-height: 1.25;
  }
  .opacity-50 {
    opacity: 0.5;
  }
  .opacity-70 {
    opacity: 0.7;
  }
  .words {
    overflow: hidden;
  }
  .word {
    display: inline-block;
  }
}
@layer component {
  .why-us {
    position: relative;
    padding: 50px 0;
    z-index: 1;
    color: var(--color-whte);
    overflow: hidden;
  }
  .why-us__bg {
    position: absolute;
    z-index: -1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .why-us__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .why-us__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48));
  }
  .why-us__inner {
    position: relative;
    padding-bottom: 77px;
  }
  .why-us__subtitle {
    color: rgba(var(--color-whte--rgb), 0.6);
  }
  .why-us__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .why-us__btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 272px;
  }
  .why-us__top {
    margin-bottom: 191px;
  }
  .why-us__slider {
    padding-right: 60px;
  }
  .why-us__slider .swiper-slide {
    max-width: 100%;
  }
  .why-us__card {
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 19px 20px;
    border-top: 1px solid rgba(var(--color-whte--rgb), 0.2);
    border-bottom: 1px solid rgba(var(--color-whte--rgb), 0.2);
  }
  .why-us__card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-whte);
    background-color: rgba(var(--color-whte--rgb), 0.2);
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
    border-radius: 4px;
  }
  .why-us__card-icon::before {
    content: "";
    width: 32px;
    height: 32px;
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    background-color: var(--color-whte);
  }
  .why-us__card-title {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .why-us__card-desc {
    color: rgba(var(--color-whte--rgb), 0.7);
  }
}
@layer component {
  .docs {
    background-color: var(--color-gry);
  }
  .docs__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
  }
  .docs__subtitle {
    color: rgba(var(--color-blck--rgb), 0.5);
  }
  .docs__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .docs__types {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .docs__type {
    position: relative;
  }
  .docs__type input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .docs__type input:checked + label {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-whte);
  }
  .docs__type label {
    display: inline-block;
    width: auto;
    cursor: pointer;
    padding: 7px 11px;
    border: 1px solid rgba(var(--color-blck--rgb), 0.2);
    background-color: transparent;
    color: var(--color-blck);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .docs__content {
    width: 100%;
  }
  .docs__list {
    width: 100%;
    background-color: var(--color-gry);
  }
  .docs__item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding-top: 11px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.2);
  }
  .docs__item:first-child {
    border-top: 1px solid rgba(var(--color-blck--rgb), 0.2);
  }
  .docs__item:last-child {
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.2);
  }
  .docs__item-name {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    grid-row: 1/2;
  }
  .docs__item-name::before {
    content: "";
    width: 24px;
    height: 24px;
    mask: url("../img/icons/file.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/file.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .docs__item-icon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--color-whte);
    color: var(--color-accent);
    border-radius: 4px;
    flex-shrink: 0;
    transition-delay: 0.2s;
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .docs__item-icon::before, .docs__item-icon::after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-mask: none;
            mask: none;
  }
  .docs__item-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .docs__item-type {
    grid-row: 2/3;
    font-size: 14px;
    color: rgba(var(--color-blck--rgb), 0.5);
  }
  .docs__item-type span {
    color: var(--color-blck);
    opacity: 0.5;
  }
  .docs__more-btn {
    color: var(--color-accent);
    margin-top: 24px;
    transition: opacity 0.3s ease;
  }
}
@layer component {
  .reviews {
    position: relative;
    color: var(--color-whte);
    overflow: hidden;
  }
  .reviews__overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
  }
  .reviews__overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4784313725);
    z-index: 2;
  }
  .reviews__overlay-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .reviews__overlay-slider .swiper-slide .reviews__overlay-img {
    transform: scale(1);
  }
  .reviews__overlay-slider .swiper-slide-active .reviews__overlay-img {
    transform: scale(1.2);
  }
  .reviews__overlay-img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.35s ease-in-out;
  }
  .reviews__overlay-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .reviews__inner {
    position: relative;
    padding-bottom: 72px;
  }
  .reviews__top {
    margin-bottom: 184px;
  }
  .reviews__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .reviews__btn {
    width: 272px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .reviews__slider {
    max-width: 100%;
    padding-right: 16px;
  }
  .reviews__controls {
    display: none;
  }
  .reviews__item.swiper-slide {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews__item {
    min-height: 349px;
    gap: 24px;
    padding: 20px;
    background-color: rgba(var(--color-whte--rgb), 0.2);
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
    border-radius: 4px;
  }
  .reviews__item-logo {
    display: flex;
    width: 72px;
    height: 40px;
  }
  .reviews__item-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  .reviews__item-icon img {
    max-height: 53px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
  }
  .reviews__item-desc {
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.4;
  }
  .reviews__item-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin-top: auto;
  }
  .reviews__item-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .reviews__item-author-post {
    font-size: 14px;
    color: rgba(var(--color-whte--rgb), 0.5);
  }
  .reviews__item-view {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    min-width: 90px;
    height: 116px;
    flex-shrink: 0;
    border-radius: 4px;
    background-color: #48474A;
    padding: 2px;
    border: 2px solid var(--color-whte);
    overflow: hidden;
    z-index: 1;
  }
  .reviews__item-view-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .reviews__item-view-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .reviews__item-view-picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .reviews__item-view-picture::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  .reviews__item-view-picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@layer component {
  .steps {
    background-color: var(--color-accent);
    color: var(--color-whte);
    padding: 50px 0;
    overflow: hidden;
  }
  .steps__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .steps__subtitle {
    color: rgba(var(--color-whte--rgb), 0.5);
  }
  .steps__title {
    max-width: 328px;
  }
  .steps__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .steps__slider {
    width: 100%;
    max-width: 100%;
  }
  .steps__slider .swiper-slide-active .steps__item-img img {
    transform: scale(1.1);
  }
  .steps__item-img {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 4px;
    height: 334px;
  }
  .steps__item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 0.3s ease-in-out;
  }
  .steps__item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .steps__item-title {
    font-size: 32px;
    line-height: 1;
  }
  .steps__item-desc {
    font-size: 14px;
    color: rgba(var(--color-whte--rgb), 0.5);
  }
  .steps__bottom {
    margin-top: 42px;
  }
  .steps__counter .swiper-pagination {
    font-size: 20px;
    line-height: 1;
    color: rgba(var(--color-whte--rgb), 0.5);
    letter-spacing: -1px;
  }
  .steps__counter .swiper-pagination-current {
    font-size: 32px;
    color: var(--color-whte);
  }
  .steps__controls {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 24px;
  }
  .steps__progress {
    width: 100%;
    height: 24px;
    margin-top: 12px;
    position: relative;
  }
  .steps__progress::before, .steps__progress::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: rgba(var(--color-whte--rgb), 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .steps__progress::before {
    left: -20px;
  }
  .steps__progress::after {
    right: -20px;
  }
  .steps__progress-track {
    position: absolute;
    width: 100%;
    left: 0;
    top: 11px;
    height: 1px;
    background: rgba(var(--color-whte--rgb), 0.2);
    overflow: hidden;
  }
  .steps__progress-line {
    position: absolute;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-whte);
    transition: width 0.3s ease;
  }
  .steps__progress-arrow {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 10px;
    background: url("../img/icons/arrow-forward.svg") left center/6px 10px no-repeat;
    transition: left 0.3s ease;
    z-index: 2;
    opacity: 0;
  }
  .steps__progress-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 5px;
  }
  .steps__progress-dot {
    --size: 12px;
    --dotSize: 8px;
    position: relative;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    border: 1px solid rgba(var(--color-whte--rgb), 0.2);
    background-color: var(--color-accent);
    transition: all 0.3s ease;
  }
  .steps__progress-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--dotSize);
    height: var(--dotSize);
    border-radius: 50%;
    background-color: var(--color-whte);
    opacity: 0;
    transition-delay: 0s;
  }
  .steps__progress-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    border: 1px solid var(--color-whte);
    opacity: 0;
    transition-delay: 0s;
  }
  .steps__progress-dot.is-active {
    animation: bounce 1s ease;
  }
  .steps__progress-dot.is-active::after, .steps__progress-dot.is-active::before {
    opacity: 1;
    transition-delay: 0.3s ease 0.3s;
  }
  @keyframes bounce {
    0% {
      transform: scale(1);
    }
    33% {
      transform: scale(0.8);
    }
    66% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
}
@layer component {
  .services__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    z-index: 1;
  }
  .services__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .services__subtitle {
    color: rgba(var(--color-blck--rgb), 0.5);
  }
  .services__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--color-gry);
  }
  .services__item {
    width: 100%;
    padding: 20px 0 19px;
    border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.2);
  }
  .services__item:first-of-type {
    padding-top: 19px;
    border-top: 1px solid rgba(var(--color-blck--rgb), 0.2);
  }
  .services__item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition-delay: 0.5s;
  }
  .services__item-head._spoller-active {
    padding-left: 10px;
    transition-delay: 0s;
  }
  .services__item-head._spoller-active + .services__item-body {
    padding-left: 10px;
  }
  .services__item-head._spoller-active + .services__item-body .services__item-img img {
    animation: rotate360 1s 0.2s ease forwards;
  }
  .services__item-head._spoller-active .services__item-head-icon {
    background-color: var(--color-accent);
    color: var(--color-whte);
    transition-delay: 0s;
  }
  .services__item-head._spoller-active .services__item-head-icon::after {
    opacity: 0;
  }
  .services__item-head._spoller-active .services__item-head-num {
    font-size: 28px;
    color: var(--color-blck);
    transition-delay: 0s;
  }
  .services__item-head._spoller-active .services__item-head-title {
    opacity: 0;
    transition-delay: 0s;
  }
  .services__item-head-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .services__item-head-num {
    font-size: 16px;
    color: rgba(var(--color-blck--rgb), 0.5);
    transition-delay: 0.5s;
  }
  .services__item-head-title {
    font-size: 18px;
    line-height: 1.2;
    transition-delay: 0.5s;
  }
  .services__item-head-icon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--color-whte);
    color: var(--color-accent);
    border-radius: 4px;
    flex-shrink: 0;
    transition-delay: 0.2s;
  }
  .services__item-head-icon::before, .services__item-head-icon::after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .services__item-head-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .services__item-body {
    width: 100%;
    padding-bottom: 20px;
  }
  .services__item-main {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 34px;
  }
  .services__item-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .services__item-title {
    font-size: 28px;
    line-height: 1;
  }
  .services__item-btn {
    width: 304px;
  }
  .services__item-img {
    display: block;
    width: 270px;
    aspect-ratio: 1/1;
  }
  .services__item-img img {
    display: block;
    width: 100%;
  }
  .services__item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    margin-top: 40px;
  }
  .services__item-desc {
    color: rgba(var(--color-blck--rgb), 0.7);
    max-width: 243px;
    font-size: 14px;
    letter-spacing: -0.2px;
  }
  .services__item-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .services__item-links-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .services__item-link {
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-accent);
    padding-bottom: 2px;
    transition: color 0.2s ease;
  }
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@layer component {
  .section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
  }
  .section--xl {
    padding: 80px 0;
  }
}
@layer component {
  .our-projects {
    position: relative;
    background-color: var(--color-accent);
    color: var(--color-whte);
    overflow: hidden;
  }
  .our-projects .lines {
    z-index: 2;
  }
  .our-projects__inner {
    position: relative;
    z-index: 2;
  }
  .our-projects__nav {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
  }
  .our-projects__nav-btn {
    color: rgba(var(--color-whte--rgb), 0.5);
    cursor: pointer;
  }
  .our-projects__nav-btn:first-child::after {
    content: "/";
    padding-left: 12px;
  }
  .our-projects__nav-btn._tab-active {
    color: var(--color-whte);
  }
  .our-projects__head {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .our-projects__subtitle {
    color: rgba(var(--color-whte--rgb), 0.5);
    margin-bottom: 8px;
  }
  .our-projects__btn {
    display: none;
  }
  .our-projects__bottom {
    margin-top: 24px;
  }
  .our-projects__bottom-btn {
    width: 251px;
  }
  .our-projects__section--map {
    position: relative;
    padding-bottom: 50px;
  }
  .our-projects__section--map .our-projects__head {
    position: absolute;
    left: 0px;
    top: 50px;
    z-index: 1;
  }
  .our-projects__card {
    width: 100%;
    background-color: var(--color-whte);
    border-radius: 4px;
    overflow: hidden;
  }
  .our-projects__card-inner {
    position: relative;
  }
  .our-projects__card-img {
    display: block;
    width: 100%;
    height: 182px;
    border-radius: 4px;
    overflow: hidden;
  }
  .our-projects__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .our-projects__card-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 20px 84px;
  }
  .our-projects__card-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .our-projects__card-section + .projects__card-section {
    margin-top: 16px;
  }
  .our-projects__card-section-title {
    color: var(--color-blck);
  }
  .our-projects__card-section-desc {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    color: rgba(var(--color-blck--rgb), 0.7);
  }
  .our-projects__card-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 20px;
    margin-top: 24px;
    z-index: 1;
  }
  .our-projects__list {
    padding: 52px 0;
  }
  .our-projects__list .our-projects__head {
    margin-bottom: 24px;
  }
  .our-projects__list .projects {
    padding-top: 32px;
  }
  .projects-map {
    position: relative;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  .projects-map__frame {
    width: 100%;
  }
  .projects-map__frame #map {
    width: 100%;
    height: 456px;
  }
  .projects-map__zoom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .projects {
    width: 100%;
  }
  .projects__inner {
    width: 100%;
  }
  .projects__top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 40px;
  }
  .projects__search {
    width: 100%;
  }
  .projects__categories {
    width: 100%;
  }
  .projects__alphabets {
    width: 100%;
    overflow: hidden;
  }
  .projects__alphabets-list {
    display: flex;
    align-items: center;
    gap: 8px;
    width: calc(100% + 32px);
    padding: 0 16px;
    margin: 0 -16px;
    overflow-x: auto;
  }
  .projects__alphabets-list::-webkit-scrollbar {
    display: none;
  }
  .projects__alphabets-letter {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: rgba(var(--color-whte--rgb), 0.5);
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.2s ease;
  }
  .projects__alphabets-letter.is-active {
    color: var(--color-whte);
  }
  .projects__alphabets-letter.is-active::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background-color: currentColor;
  }
  .projects__main {
    width: 100%;
  }
  .projects__more {
    display: none;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    transition: opacity 0.3s ease;
  }
  .projects__more::after {
    content: "";
    width: 16px;
    height: 16px;
    mask: url("../img/icons/chevron-down.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/chevron-down.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .projects__section {
    width: 100%;
  }
  .projects__section + .projects__section {
    margin-top: 40px;
  }
  .projects__section-city {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
  .projects__section-head {
    display: none;
  }
  .projects__section-head-cell {
    font-size: 14px;
    line-height: 1.2;
    color: rgba(var(--color-whte--rgb), 0.5);
  }
  .projects__section-list {
    width: 100%;
    background-color: var(--color-accent);
  }
  .projects__section-item {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr auto;
    gap: 8px 50px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(var(--color-whte--rgb), 0.2);
    transition: 0.2s ease;
  }
  .projects__section-item-link {
    display: contents;
  }
  .projects__section-item:first-child {
    border-top: 1px solid rgba(var(--color-whte--rgb), 0.2);
  }
  .projects__section-item-title {
    font-size: 14px;
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .projects__section-item-desc {
    display: none;
  }
  .projects__section-item-details {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .projects__section-item-icon {
    grid-column: 2/3;
    grid-row: 1/3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--color-whte--rgb), 0.2);
    color: var(--color-whte);
    border-radius: 4px;
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
  }
  .projects__section-item-icon::after {
    content: "";
    width: 16px;
    height: 16px;
    mask: url("../img/icons/plus.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/plus.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .projects__empty {
    height: 588px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -1px;
  }
}
@layer component {
  .menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 99;
    visibility: hidden;
  }
  .menu.is-open {
    visibility: visible;
  }
  .menu.is-open .menu__inner {
    clip-path: inset(0 0 0 0 round 0px);
  }
  .menu.is-locked .menu__inner {
    overflow: hidden;
  }
  .menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-blck--rgb), 0.3);
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
    z-index: 1;
  }
  .menu__inner {
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 16px;
    background-color: var(--color-gry);
    overflow-y: auto;
    z-index: 2;
    clip-path: inset(0 0 100% 0);
    transition: 0.6s cubic-bezier(0.53, 0, 0, 1);
    border-radius: 0;
  }
  .menu__inner::before, .menu__inner::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(var(--color-blck--rgb), 0.1);
    z-index: 99;
  }
  .menu__inner::before {
    left: 6px;
  }
  .menu__inner::after {
    right: 6px;
  }
  .menu__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .menu__logo {
    display: block;
    width: 104px;
  }
  .menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgba(var(--color-accent--rgb), 0.5);
    color: var(--color-accent);
    background-color: transparent;
  }
  .menu__close::before {
    content: "";
    width: 16px;
    height: 16px;
    mask: url("../img/icons/close.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/close.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .menu__download-template {
    display: none;
  }
  .menu__main {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .menu__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .menu__link {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.5px;
    transition: opacity 0.3s ease;
  }
  .menu__details {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
  }
  .menu__details-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .menu__detail-subtitle {
    font-size: 14px;
    line-height: 1.2;
    color: rgba(var(--color-blck--rgb), 0.5);
    margin-bottom: 8px;
  }
  .menu__detail-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .menu__detail-link {
    font-size: 14px;
    line-height: 1.2;
    transition: opacity 0.3s ease;
  }
  .menu__detail-region {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    transition: opacity 0.3s ease;
    color: unset;
    text-decoration: none;
  }
  .menu__detail-region svg {
    flex-shrink: 0;
  }
  .menu__detail-address {
    font-size: 14px;
    line-height: 1.2;
    color: unset;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .menu__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: auto;
  }
  .menu__bottom .menu__nav {
    gap: 8px;
  }
  .menu__bottom .menu__download-template {
    display: block;
  }
  .menu__btn {
    width: 284px;
  }
  .menu__services {
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 96px);
    padding: 0 16px;
    overflow-y: hidden;
    background-color: var(--color-gry);
    display: none;
    z-index: 10;
  }
  .menu__services.is-open {
    display: block;
  }
  .menu__services.search-active .menu__services-nav {
    display: none;
  }
  .menu__services.search-active .menu__services-search-clear-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .menu__services-main {
    display: flex;
    flex-direction: column;
  }
  .menu__services-main .menu__services-link:first-child {
    border-top: 0;
  }
  .menu__services-search {
    position: relative;
  }
  .menu__services-search::before {
    position: absolute;
    content: "";
    left: 0;
    top: 20px;
    width: 16px;
    height: 16px;
    mask: url("../img/icons/search.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/search.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .menu__services-search-input {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--color-blck);
    font-size: 14px;
    line-height: 1;
    padding: 20px 24px;
    height: 57px;
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.2);
    border-radius: 0;
  }
  .menu__services-search-input::placeholder {
    color: rgba(var(--color-blck--rgb), 0.4);
  }
  .menu__services-search-input:focus {
    border-color: rgba(var(--color-blck--rgb), 0.5);
  }
  .menu__services-search-clear-btn {
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--color-blck);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .menu__services-search-clear-btn::before {
    content: "";
    width: 16px;
    height: 16px;
    mask: url("../img/icons/close.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/close.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .menu__services-search-results {
    display: none;
  }
  .menu__services-search-results.is-active {
    display: block;
  }
  .menu__services-no-results {
    display: none;
  }
  .menu__services-no-results.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
  .menu__services-no-results-text {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -1px;
    color: rgba(var(--color-blck--rgb), 0.4);
  }
  .menu__services-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 240px;
  }
  .menu__services-main {
    width: 100%;
    height: calc(100dvh - 96px);
    overflow-y: auto;
  }
  .menu__services-section {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - 96px);
    padding: 0 16px;
    overflow-y: auto;
    background-color: var(--color-gry);
    z-index: 2;
    display: none;
  }
  .menu__services-section.is-open {
    display: block;
  }
  .menu__services-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
  .menu__services-back::before {
    content: "";
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    mask: url("../img/icons/chevron-left.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/chevron-left.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .menu__services-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu__services-link {
    width: 100%;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.5px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.2);
  }
  .menu__services-link:first-child {
    border-top: 1px solid rgba(var(--color-blck--rgb), 0.2);
  }
}
@layer component {
  .callback-popup {
    width: 100%;
    height: 100svh;
    padding-top: 70px;
  }
  .callback-popup--white .callback-popup__inner {
    background-color: var(--color-gry);
    color: var(--color-blck);
  }
  .callback-popup--white .callback-popup__desc {
    color: rgba(var(--color-blck--rgb), 0.5);
  }
  .callback-popup__inner {
    position: relative;
    width: 100%;
    height: calc(100svh - 70px);
    background-color: var(--color-accent);
    color: var(--color-whte);
    padding: 16px;
    border-radius: 4px 4px 0 0;
    overflow-y: auto;
  }
  .callback-popup__close {
    --icon: url('../img/icons/close.svg');
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .callback-popup__title {
    margin-bottom: 24px;
    padding-right: 64px;
  }
  .callback-popup__main {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
  }
  .callback-popup__main.is-hidden {
    display: none;
  }
  .callback-popup__form {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .callback-popup__form .form-btn {
    margin-top: auto;
  }
  .callback-popup__loader {
    display: none;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    height: 100%;
  }
  .callback-popup__loader.is-active {
    display: flex;
  }
  .callback-popup__success {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-height: 100%;
    height: 100%;
  }
  .callback-popup__success .callback-popup__head {
    padding-top: 80px;
  }
  .callback-popup__success.is-active {
    display: flex;
  }
}
@layer component {
  .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .loader__icon {
    width: 64px;
    height: 64px;
    animation: rotate 4s linear infinite;
  }
  .loader__text {
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.5px;
  }
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
}
@layer component {
  .coockie {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 16px;
    z-index: 50;
    display: none;
  }
  .coockie.is-visible {
    display: block;
  }
  .coockie__inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 395px;
    width: 100%;
  }
  .coockie__info {
    width: 100%;
    background-color: var(--color-whte);
    padding: 16px 20px;
    border-radius: 4px;
    color: rgba(var(--color-blck--rgb), 0.5);
    font-size: 14px;
    line-height: 1.2;
  }
  .coockie__info a {
    display: inline;
    color: var(--color-blck);
  }
}
@layer component {
  .h-services {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 98;
    padding: 94px 20px 102px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
  }
  .h-services.is-open {
    opacity: 1;
    visibility: visible;
    z-index: 98;
    pointer-events: all;
  }
  .h-services.is-open .h-services__inner {
    transform: translateY(0);
  }
  .h-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-blck--rgb), 0.3);
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
    z-index: -1;
  }
  .h-services__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-color: var(--color-gry);
    z-index: 1;
    padding-top: 20px;
    border: 1px solid rgba(var(--color-blck--rgb), 0.2);
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
  }
  .h-services__search {
    width: 100%;
    border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.2);
  }
  .h-services__search-result {
    display: none;
    width: 100%;
    height: 100%;
    padding: 12px 10px;
  }
  .h-services__search-empty {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 12px 20px;
  }
  .h-services__search-empty-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    line-height: 1;
    text-align: center;
    color: rgba(var(--color-blck--rgb), 0.5);
    letter-spacing: -1px;
  }
  .h-services__list {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: flex-start;
    padding: 12px 10px;
    max-height: 100%;
    height: 100%;
  }
  .h-services__list::before, .h-services__list::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(var(--color-blck--rgb), 0.2);
    position: absolute;
    top: 0;
  }
  .h-services__list::before {
    left: 33.333%;
  }
  .h-services__list::after {
    left: calc(66.666% - 5px);
  }
  .h-services__list-section {
    display: none;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
  }
  .h-services__list-section.is-active {
    display: flex;
  }
  .h-services__list-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 33.333%;
    max-height: 100%;
    overflow: hidden;
  }
  .h-services__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    overflow-y: auto;
    max-height: 100%;
    padding: 0 10px;
  }
  .h-services__items::-webkit-scrollbar {
    width: 8px;
  }
  .h-services__items::-webkit-scrollbar-thumb {
    background-color: var(--color-accent);
    border: 3px solid var(--color-gry);
  }
  .h-services__item {
    width: 100%;
    padding: 24px 0 23px;
    font-size: 36px;
    line-height: 1;
    border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.2);
    transition: 0.3s ease;
    cursor: pointer;
  }
  .h-services__item.is-active {
    padding: 24px 10px 23px;
    background-color: var(--color-accent);
    color: var(--color-whte) !important;
    border-radius: 4px;
  }
  .h-services__item.is-hightlighted {
    color: rgba(var(--color-blck--rgb), 0.5);
  }
  .h-services__btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
}
@layer component {
  .searchbar {
    position: relative;
    width: 100%;
    color: var(--color-blck);
    padding-top: 1px;
  }
  .searchbar--white {
    color: var(--color-whte);
  }
  .searchbar--white .searchbar__input {
    color: var(--color-whte);
  }
  .searchbar--white .searchbar__input::placeholder {
    color: rgba(var(--color-whte--rgb), 0.5);
  }
  .searchbar--white .searchbar__input:focus {
    padding: 14px 39px 14px 43px;
    border-color: var(--color-whte);
  }
  .searchbar--blured .searchbar__input {
    background: rgba(var(--color-whte--rgb), 0.2);
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
  }
  .searchbar::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 15px;
    left: 20px;
    mask: url("../img/icons/search.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/search.svg") center center/contain no-repeat;
    background-color: currentColor;
    z-index: 2;
  }
  .searchbar.is-filled .searchbar__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .searchbar__clear {
    position: absolute;
    top: 16px;
    right: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    width: 16px;
    height: 16px;
    z-index: 2;
  }
  .searchbar__clear::before {
    content: "";
    width: 24px;
    height: 24px;
    mask: url("../img/icons/close.svg") center center/contain no-repeat;
    -webkit-mask: url("../img/icons/close.svg") center center/contain no-repeat;
    background-color: currentColor;
  }
  .searchbar__input {
    display: block;
    width: 100%;
    padding: 15px 40px 15px 44px;
    font-size: 14px;
    background: transparent;
    font-family: var(--font-primary);
    color: var(--color-blck);
    border: none;
    outline: none;
    -webkit-user-select: none;
            user-select: none;
    border-radius: 4px;
    border: 1px solid transparent;
  }
  .searchbar__input::placeholder {
    font-size: 14px;
    line-height: 1.2;
    color: currentColor;
  }
}
@layer component {
  .chips {
    display: flex;
    align-items: center;
    gap: 4px;
    width: calc(100% + 32px);
    padding: 0 16px;
    margin: 0 -16px;
    overflow-x: auto;
  }
  .chips::-webkit-scrollbar {
    display: none;
  }
  .chips-control {
    position: relative;
  }
  .chips-control input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .chips-control input:checked + label {
    background-color: var(--color-whte);
    color: var(--color-accent);
  }
  .chips-control label {
    display: inline-block;
    width: auto;
    height: 40px;
    padding: 11px 12px;
    background-color: rgba(var(--color-whte--rgb), 0.2);
    color: var(--color-whte);
    -webkit-backdrop-filter: blur(48px);
            backdrop-filter: blur(48px);
    font-size: 14px;
    line-height: 1.2;
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap;
    cursor: pointer;
  }
}
@layer component {
  .popup-documents {
    width: 100%;
    height: 100svh;
    overflow: hidden;
    padding: 16px;
  }
  .popup-documents__slider-prev, .popup-documents__slider-next {
    display: none;
  }
  .popup-documents__slider-prev {
    left: 0;
  }
  .popup-documents__slider-next {
    right: 0;
  }
  .popup-documents__close {
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .popup-documents__wrapper {
    width: 100%;
    height: 100%;
  }
  .popup-documents__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .popup-documents__pagination {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  .popup-documents__pagination .swiper-pagination {
    position: static;
  }
  .popup-documents__pagination .swiper-pagination-fraction {
    font-size: 16px;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--color-whte);
    display: flex;
  }
  .popup-documents__pagination .swiper-pagination-total {
    color: rgba(var(--color-whte--rgb), 0.5) !important;
  }
  .popup-documents__slider {
    max-width: 100%;
  }
  .popup-documents__slide.swiper-slide .popup-documents__slide-title {
    opacity: 0;
  }
  .popup-documents__slide.swiper-slide-active .popup-documents__slide-title {
    opacity: 1;
  }
  .popup-documents__slide-title {
    font-size: 24px;
    line-height: 1;
    color: var(--color-whte);
    text-align: center;
    margin-bottom: 24px;
    transition: opacity 0.3s ease-in-out;
  }
  .popup-documents__slide-img {
    display: block;
    width: 100%;
  }
  .popup-documents__slide-img img {
    display: block;
    width: 100%;
    border-radius: 4px;
  }
  .popup-documents__slide-img iframe,
  .popup-documents__slide-img object,
  .popup-documents__slide-img embed {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
  }
}
@layer component {
  .popup-project {
    width: 100%;
    height: 100vh;
  }
  .popup-project__inner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--color-gry);
  }
  .popup-project__content {
    height: 100vh;
    overflow-y: auto;
  }
  .popup-project__main {
    height: 100vh;
  }
  .popup-project__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
  }
  .popup-project__img {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
  }
  .popup-project__img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .popup-project__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
  }
  .popup-project__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .popup-project__title {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -1px;
  }
  .popup-project__date {
    color: rgba(var(--color-blck--rgb), 0.7);
    letter-spacing: -1px;
  }
  .popup-project__section {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .popup-project__section-label {
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.5px;
  }
  .popup-project__section-desc {
    color: rgba(var(--color-blck--rgb), 0.7);
    letter-spacing: -0.5px;
  }
  .popup-project__section-desc ol {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: list;
  }
  .popup-project__section-desc ol li {
    position: relative;
    padding-left: 24px;
    counter-increment: list;
  }
  .popup-project__section-desc ol li:not(:last-child) {
    margin-bottom: 12px;
  }
  .popup-project__section-desc ol li::before {
    content: counter(list) ".";
    position: absolute;
    top: 0;
    left: 5px;
  }
}
@layer component {
  .custom-placemark {
    --size: 16px;
    --dotSize: 8px;
    position: relative;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    border: 2px solid var(--color-whte);
    background-color: transparent;
  }
  .custom-placemark::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--dotSize);
    height: var(--dotSize);
    border-radius: 50%;
    background-color: var(--color-whte);
  }
  .custom-placemark.is-active {
    border-color: transparent;
    background-color: rgba(var(--color-whte--rgb), 0.5);
  }
  .custom-cluster {
    --size: 24px;
    --dotSize: 16px;
    position: relative;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    border: 2px solid var(--color-whte);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1.25;
  }
  .custom-cluster::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--dotSize);
    height: var(--dotSize);
    border-radius: 50%;
    background-color: var(--color-whte);
    z-index: -1;
  }
  [class*=copyrights-pane],
  [class*=controls-pane] {
    display: none;
  }
  [class*=-balloon] {
    width: 220px !important;
    box-shadow: none !important;
    margin-top: -3px;
    margin-left: 8px;
  }
  [class*=-balloon__layout] {
    border-radius: 4px;
  }
  [class*=-balloon__content] {
    box-sizing: border-box !important;
    margin-right: 0 !important;
    padding: 4px 8px !important;
  }
  [class*=-balloon__content] * {
    width: 100% !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }
  [class*=-balloon__close],
  [class*=-balloon__tail] {
    display: none !important;
  }
  [class*=ground-pane] {
    filter: brightness(0.4) contrast(1.3) sepia(1) hue-rotate(90deg) saturate(1.8);
  }
}
@layer component {
  .lines {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(var(--color-blck--rgb), 0.2);
    pointer-events: none;
  }
  .lines--white {
    color: rgba(var(--color-whte--rgb), 0.2);
  }
  .line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: currentColor;
  }
  .line:nth-of-type(1) {
    left: 6px;
  }
  .line:nth-of-type(2) {
    left: calc(100% - 6px);
  }
  .line:nth-of-type(3) {
    display: none;
  }
}
@media only screen and (min-width: 560px) {
@layer component{
    .popup-documents__slider-prev, .popup-documents__slider-next {
      display: flex;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin: 0 20px;
    }
}
@layer component{
    .popup-documents__slider {
      max-width: 360px;
      margin: 0 auto;
      overflow: hidden;
    }
}
  }
@media only screen and (min-width: 767.98px) {
  .header {
    padding: 20px 0;
  }
  .header__logo {
    width: 140px;
  }
  .footer__top {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
    gap: 20px;
  }
  .form-radio-types__list {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  @layer base{
    [class*=__container],
    .container {
      --pad: 20px;
    }
}
  @layer component{
    .about__img {
      height: auto;
    }
}
  @layer component{
    .about__details {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
}
  @layer component{
    .about__detail {
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding-bottom: 11px;
      border-bottom: 1px solid rgba(var(--color-whte--rgb), 0.2);
    }
}
  @layer component{
    .steps__item-img {
      height: auto;
    }
}
  @layer component{
    .steps__bottom {
      margin-top: 32px;
    }
}
  @layer component{
    .services__item-img {
      width: 320px;
    }
}
  @layer component{
    .our-projects__btn {
      display: flex;
      margin-top: 24px;
    }
}
  @layer component{
    .our-projects__bottom {
      display: none;
    }
}
  @layer component{
    .our-projects__section--map {
      padding-bottom: 0;
    }
}
  @layer component{
    .our-projects__card {
      width: 300px;
      margin: 0;
      position: absolute;
      top: auto;
      bottom: 40px;
      right: 0px;
      transition: 0.25s ease;
    }
}
  @layer component{
    .projects-map__frame #map {
      height: 560px;
    }
}
  @layer component{
    .callback-popup__form .form-checkbox {
      max-width: 550px;
    }
}
  @layer component{
    .coockie__inner {
      max-width: 330px;
    }
}
  @layer component{
    [class*=-balloon] {
      width: 280px !important;
    }
}
}
@media only screen and (min-width: 1023.98px) {
@layer component{
    .steps__main {
      display: grid;
      gap: 0;
      grid-template-columns: repeat(2, 50%);
    }
}
@layer component{
    .steps__slider {
      overflow: hidden;
    }
}
@layer component{
    .steps__item-info {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
}
  }
@media only screen and (min-width: 1279.98px) {
@layer component{
    .popup__content {
      width: -moz-fit-content;
      width: fit-content;
    }
}
@layer component{
    .callback-popup > .popup__content, .popup-project > .popup__content {
      margin-left: auto;
    }
}
@layer component{
    .popup-documents > .popup__content {
      margin: 0 auto;
    }
}
  .header.is-fixed .header__inner {
    padding: 11px 19px;
  }
  .header.is-fixed .header__tel,
  .header.is-fixed .header__email {
    background-color: transparent;
    color: var(--color-blck);
  }
  .header__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .header__menu {
    display: block;
  }
  .header__contacts {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .header__tel, .header__email {
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    width: auto;
    height: auto;
  }
  .header__tel::before, .header__email::before {
    display: none;
  }
  .header__tel span, .header__email span {
    display: block;
  }
  .header__actions {
    gap: 12px;
  }
  .header__download-template {
    display: block;
  }
  .footer__lines {
    display: block;
    width: calc(50% + 1px);
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .footer__lines svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .footer__logo {
    width: 173px;
  }
  .footer__contacts {
    gap: 12px;
  }
  .footer__contacts-item {
    font-size: 52px;
    letter-spacing: -2px;
  }
  .footer__blocks {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 52px 20px;
  }
  .footer__block-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .footer__block-list {
    gap: 12px;
  }
  .footer__block-adress {
    max-width: 234px;
    font-size: 16px;
  }
  .footer__block-link {
    font-size: 16px;
  }
  .footer__bottom {
    margin-top: 73px;
  }
  .footer__title {
    font-size: 52px;
  }
  .footer__policy {
    max-width: unset;
    font-size: 16px;
  }
  @layer component{
    .btn {
      font-size: 16px;
      min-height: 64px;
      gap: 4px;
    }
}
  @layer component{
    .btn__text {
      font-size: 16px;
      line-height: 1.3;
      letter-spacing: -0.25px;
      padding: 16px;
    }
}
  @layer component{
    .btn__icon {
      --size: 56px;
      --iconSize: 24px;
    }
}
  @layer component{
    .btn-icon--l {
      --size: 64px;
      --iconSize: 24px;
    }
}
  @layer component{
    .btn-base {
      padding: 22px;
      height: 64px;
      font-size: 16px;
      line-height: 1.25;
    }
}
  @layer mod{
    .btn--m {
      min-height: 41px;
    }
    .btn--m .btn__text {
      padding: 8px 8px 8px 8px;
      font-size: 14px;
      letter-spacing: -0.2px;
    }
    .btn--m .btn__icon {
      --size: 32px;
      --iconSize: 16px;
    }
}
  .form-radio-type {
    width: auto;
    flex-shrink: unset;
    flex-grow: 1;
  }
  .form-radio-type label {
    padding: 20px 20px;
    font-size: 16px;
  }
  .form-files__panel {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .form-files__template {
    margin-top: 0;
  }
  .form-files__list {
    flex-direction: row;
    align-items: center;
    padding-top: 8px;
  }
  .form-files__item {
    margin-top: 0;
  }
  .form-checkbox label {
    align-items: center;
  }
  .form-checkbox label span {
    font-size: 14px;
  }
  @layer component{
    .hero {
      height: 100vh;
    }
}
  @layer component{
    .hero__inner {
      display: grid;
      grid-template-columns: repeat(2, calc(50% - 12px));
      gap: 24px;
      min-height: auto;
      padding: 100px 0 20px;
    }
}
  @layer component{
    .hero__title {
      font-size: 52px;
    }
}
  @layer component{
    .hero__actions {
      flex-direction: row;
      align-items: center;
    }
}
  @layer component{
    .hero__actions .btn {
      width: auto;
    }
}
  @layer component{
    .hero__bottom {
      padding-top: 202px;
      align-items: flex-end;
    }
}
  @layer component{
    .hero__details {
      grid-template-columns: 257px 277px;
      max-width: 538px;
    }
}
  @layer component{
    .hero__license {
      justify-content: flex-start;
      gap: 16px;
      grid-column: 1/2;
    }
}
  @layer component{
    .hero__license-top {
      flex-direction: row;
      align-items: center;
    }
}
  @layer component{
    .hero__license-icon {
      width: 40px;
      height: 40px;
    }
}
  @layer component{
    .hero__license-icon:not(:first-child) {
      margin-left: -12px;
    }
}
  @layer component{
    .hero__license-title {
      font-size: 16px;
    }
}
  @layer component{
    .hero__license-desc {
      display: block;
      font-size: 14px;
      color: rgba(var(--color-whte--rgb), 0.7);
    }
}
  @layer component{
    .hero__license-inn-text {
      margin-top: auto;
      color: var(--color-whte);
    }
}
  @layer component{
    .hero__territory {
      grid-column: 2/3;
    }
}
  @layer component{
    .hero__territory-title {
      font-size: 16px;
      letter-spacing: -0.25px;
      padding-top: 20px;
    }
}
  @layer component{
    .hero__clients {
      display: flex;
      align-items: stretch;
    }
}
  @layer component{
    .hero__clients-info {
      width: 170px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      padding: 12px;
      color: var(--color-whte);
    }
}
  @layer component{
    .hero__clients-amount {
      font-size: 40px;
      line-height: 1;
    }
}
  @layer component{
    .hero__clients-slider {
      width: calc(100% - 170px);
      padding: 56px 0;
      border-left: 1px solid rgba(var(--color-whte--rgb), 0.2);
      overflow: hidden;
    }
}
  @layer component{
    .hero__clients-item.swiper-slide {
      height: 92px !important;
      padding: 5px;
    }
}
  @layer component{
    .about__inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px 20px;
    }
}
  @layer component{
    .about__head {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 20px;
      grid-column: 1/5;
    }
}
  @layer component{
    .about__title {
      max-width: 1000px;
    }
}
  @layer component{
    .about__main {
      grid-column: 1/4;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 0;
    }
}
  @layer component{
    .about__info {
      display: contents;
    }
}
  @layer component{
    .about__btn {
      width: auto;
    }
}
  @layer component{
    .about__details {
      grid-column: 2/5;
    }
}
  @layer component{
    .about__detail {
      gap: 60px;
    }
}
  @layer component{
    .about__detail-num {
      font-size: 96px;
      line-height: 1.2;
    }
}
  @layer component{
    .about__detail-title {
      font-size: 20px;
      line-height: 1;
    }
}
  @layer component{
    .blog__head {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 20px;
      margin-bottom: 32px;
    }
}
  @layer component{
    .blog__slider {
      display: none;
    }
}
  @layer component{
    .blog__list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .blog__list .blog__item:nth-of-type(5n + 1) {
      grid-column: 1/2;
    }
    .blog__list .blog__item:nth-of-type(5n + 2) {
      grid-column: 2/3;
    }
    .blog__list .blog__item:nth-of-type(5n + 3) {
      grid-column: 4/5;
    }
    .blog__list .blog__item:nth-of-type(5n + 4) {
      grid-column: 2/3;
    }
    .blog__list .blog__item:nth-of-type(5n + 5) {
      grid-column: 3/4;
    }
}
  @layer component{
    .blog__bottom {
      padding-left: calc(25% + 10px);
      margin-top: 32px;
    }
}
  @layer component{
    .blog__btn {
      width: auto;
    }
}
  @layer component{
    .contact-us__inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      -moz-column-gap: 20px;
           column-gap: 20px;
    }
}
  @layer component{
    .contact-us__head {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-column: 1/5;
      gap: 20px;
    }
}
  @layer component{
    .contact-us__main {
      grid-column: 2/4;
    }
}
  @layer component{
    .contact-us__progress {
      margin-top: 20px;
      grid-column: 1/5;
    }
}
  @layer component{
    .contact-us__progress-steps-current {
      font-size: 52px;
    }
}
  @layer component{
    .contact-us__progress-steps-all {
      font-size: 24px;
    }
}
  @layer component{
    .contact-us__progress-bar {
      width: calc(100% + 40px);
      margin: 0 -20px;
    }
}
  @layer component{
    .contact-us__title {
      grid-column: 2/4;
    }
}
  @layer component{
    .contact-us__form {
      min-height: 580px;
    }
}
  @layer component{
    .contact-us__form-block-title {
      font-size: 18px;
    }
}
  @layer component{
    .h1 {
      font-size: 52px;
      letter-spacing: -2px;
    }
}
  @layer component{
    .h2 {
      font-size: 40px;
    }
}
  @layer component{
    .caption {
      font-size: 16px;
    }
}
  @layer component{
    .why-us {
      height: 100vh;
    }
}
  @layer component{
    .why-us__wrapper {
      height: 100%;
    }
}
  @layer component{
    .why-us__container {
      height: 100%;
    }
}
  @layer component{
    .why-us__inner {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-bottom: 0;
    }
}
  @layer component{
    .why-us__btn {
      position: static;
      width: auto;
      margin-top: 24px;
    }
}
  @layer component{
    .why-us__top {
      max-width: 531px;
      margin-bottom: 106px;
    }
}
  @layer component{
    .why-us__slider {
      padding-right: 0;
      padding-left: calc(25% + 5px);
    }
}
  @layer component{
    .why-us__slider .swiper-slide {
      max-width: unset;
    }
}
  @layer component{
    .docs__head {
      display: grid;
      grid-template-columns: 1fr 3fr;
      margin-bottom: 40px;
    }
}
  @layer component{
    .docs__title {
      max-width: 1000px;
    }
}
  @layer component{
    .docs__main {
      position: relative;
      display: grid;
      grid-template-columns: calc(25% - 3px) 75%;
      gap: 0;
      z-index: 1;
    }
}
  @layer component{
    .docs__types {
      flex-direction: column;
      align-items: flex-start;
      padding-right: 40px;
    }
}
  @layer component{
    .docs__type label {
      font-size: 16px;
      line-height: 1.3;
    }
}
  @layer component{
    .docs__list {
      margin-left: -1px;
    }
}
  @layer component{
    .docs__item {
      display: grid;
      row-gap: 0;
      grid-template-columns: 1fr 0.4fr 40px;
      padding: 19px 0 19px 10px;
      transition: 0.3s ease;
    }
}
  @layer component{
    .docs__item:last-child {
      padding-bottom: 19px;
    }
}
  @layer component{
    .docs__item-name {
      grid-row: unset;
      font-size: 24px;
      line-height: 1;
    }
}
  @layer component{
    .docs__item-icon {
      grid-column: unset;
      grid-row: unset;
    }
}
  @layer component{
    .docs__item-type {
      grid-row: unset;
    }
}
  @layer component{
    .docs__more-btn {
      margin-left: 12px;
    }
}
  @layer component{
    .reviews__inner {
      padding-bottom: 0;
    }
}
  @layer component{
    .reviews__top {
      max-width: 800px;
      margin-bottom: 52px;
    }
}
  @layer component{
    .reviews__btn {
      width: auto;
      position: static;
      margin-top: 24px;
    }
}
  @layer component{
    .reviews__main {
      padding-left: calc(25% + 5px);
      padding-right: calc(25% + 5px);
    }
}
  @layer component{
    .reviews__slider {
      padding-right: 0;
    }
    .reviews__slider .swiper-slide {
      transform-origin: bottom;
      transition: transform 0.3s ease;
      margin-top: auto;
    }
}
  @layer component{
    .reviews__controls {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 24px;
    }
}
  @layer component{
    .reviews__item:nth-child(odd) {
      min-height: 349px !important;
    }
    .reviews__item:nth-child(even) {
      min-height: 378px !important;
    }
}
  @layer component{
    .reviews__item-desc {
      font-size: 20px;
    }
}
  @layer component{
    .steps__title {
      max-width: 455px;
    }
}
  @layer component{
    .steps__slider {
      padding-top: 30px;
      padding-left: 10px;
      overflow: hidden;
    }
}
  @layer component{
    .steps__item-title {
      font-size: 40px;
    }
}
  @layer component{
    .steps__item-desc {
      font-size: 16px;
    }
}
  @layer component{
    .steps__bottom {
      margin-top: 0;
    }
}
  @layer component{
    .steps__controls {
      padding-left: calc(50% + 10px);
    }
}
  @layer component{
    .steps__progress-arrow {
      width: 10px;
      height: 16px;
      background-size: 10px 16px;
    }
}
  @layer component{
    .steps__progress-dots {
      top: auto;
    }
}
  @layer component{
    .steps__progress-dot {
      --size: 24px;
      --dotSize: 16px;
    }
    .steps__progress-dot:nth-of-type(2) {
      position: relative;
      left: -10px;
    }
    .steps__progress-dot:nth-of-type(4) {
      position: relative;
      left: 10px;
    }
}
  @layer component{
    .services__inner {
      display: grid;
      grid-template-columns: repeat(2, 50%);
      gap: 0;
    }
}
  @layer component{
    .services__list {
      margin-left: 1px;
    }
}
  @layer component{
    .services__item {
      padding-left: 10px;
    }
}
  @layer component{
    .services__item-head._spoller-active .services__item-head-num {
      font-size: 40px;
      line-height: 40px;
    }
}
  @layer component{
    .services__item-head-info {
      flex-direction: row;
      gap: 93px;
    }
}
  @layer component{
    .services__item-head-num {
      width: 25px;
    }
}
  @layer component{
    .services__item-body {
      padding-left: 10px;
    }
}
  @layer component{
    .services__item-main {
      flex-direction: row;
      align-items: flex-end;
      gap: 24px;
    }
}
  @layer component{
    .services__item-top {
      width: auto;
    }
}
  @layer component{
    .services__item-title {
      max-width: 233px;
      font-size: 40px;
    }
}
  @layer component{
    .services__item-btn {
      width: auto;
    }
}
  @layer component{
    .services__item-img {
      width: 317px;
    }
}
  @layer component{
    .services__item-info {
      flex-direction: row;
    }
}
  @layer component{
    .services__item-desc {
      max-width: 262px;
      font-size: 16px;
      letter-spacing: -0.5px;
    }
}
  @layer component{
    .section--xl {
      padding: 100px 0;
    }
}
  @layer component{
    .our-projects__head {
      max-width: 550px;
    }
}
  @layer component{
    .our-projects__card {
      width: 335px;
      bottom: 80px;
    }
    .our-projects__card.is-active {
      transform: translateY(33px);
    }
}
  @layer component{
    .our-projects__card-img {
      height: 218px;
    }
}
  @layer component{
    .our-projects__card-info {
      padding-bottom: 100px;
    }
}
  @layer component{
    .our-projects__card-section-title {
      font-size: 18px;
      line-height: 1.22;
    }
}
  @layer component{
    .our-projects__card-section-desc {
      font-size: 16px;
    }
}
  @layer component{
    .our-projects__list {
      padding: 50px 0;
      display: grid;
      grid-template-columns: calc(50% + 1px) calc(50% - 1px);
    }
}
  @layer component{
    .projects-map__frame #map {
      height: 760px;
    }
}
  @layer component{
    .projects__inner {
      position: relative;
      z-index: 2;
      width: calc(100% + 32px);
      margin-left: -32px;
      padding-left: 32px;
    }
}
  @layer component{
    .projects__inner {
      max-height: 677px;
      overflow-y: auto;
      padding-right: 10px;
      scrollbar-gutter: stable;
    }
    .projects__inner::-webkit-scrollbar {
      width: 8px;
      background-color: var(--color-accent);
    }
    .projects__inner::-webkit-scrollbar-track {
      background-color: var(--color-accent);
    }
    .projects__inner::-webkit-scrollbar-thumb {
      background-color: var(--color-whte);
      border: 3px solid var(--color-accent);
    }
}
  @layer component{
    .projects__top {
      padding: 0 0 0 12px;
      gap: 12px;
      margin-bottom: 24px;
    }
}
  @layer component{
    .projects__alphabets {
      position: absolute;
      top: 0;
      left: 0;
      width: 24px;
    }
}
  @layer component{
    .projects__alphabets-list {
      width: 24px;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      margin: 0;
      overflow: hidden;
    }
}
  @layer component{
    .projects__alphabets-letter {
      position: relative;
      width: 24px !important;
      height: 24px !important;
      font-size: 14px;
      line-height: 1.2;
    }
}
  @layer component{
    .projects__alphabets-letter.is-active::before {
      position: absolute;
      left: 0;
    }
}
  @layer component{
    .projects__section-city {
      font-size: 40px;
      padding-left: 10px;
    }
}
  @layer component{
    .projects__section-head {
      display: grid;
      padding-left: 10px;
      grid-template-columns: 1.2fr 1fr 40px;
      gap: 10px;
      margin-bottom: 12px;
    }
}
  @layer component{
    .projects__section-item {
      padding: 20px 0 20px 10px;
      grid-template-columns: 1.2fr 1fr 40px;
      gap: 0 10px;
    }
}
  @layer component{
    .projects__section-item-title {
      grid-column: unset;
      grid-row: unset;
      font-size: 16px;
      padding-right: 80px;
    }
}
  @layer component{
    .projects__section-item-desc {
      display: block;
    }
}
  @layer component{
    .projects__section-item-details {
      display: none;
    }
}
  @layer component{
    .projects__section-item-icon {
      grid-column: unset;
      grid-row: unset;
    }
}
  @layer component{
    .projects__empty {
      font-size: 40px;
      letter-spacing: -2px;
      padding: 0 64px;
      height: 500px;
    }
}
  @layer component{
    .menu {
      padding: 20px;
    }
}
  @layer component{
    .menu {
      height: 100vh;
    }
}
  @layer component{
    .menu__inner {
      width: 1045px;
      height: calc(100vh - 40px);
      margin-left: auto;
      gap: 48px;
      clip-path: inset(0 0 100% 100%);
      border-radius: 4px;
    }
}
  @layer component{
    .menu__inner::before, .menu__inner::after {
      background-color: rgba(var(--color-blck--rgb), 0.2);
      z-index: 1;
    }
}
  @layer component{
    .menu__inner::before {
      left: 50%;
      transform: translateX(-50%);
    }
}
  @layer component{
    .menu__inner::after {
      display: none;
    }
}
  @layer component{
    .menu__top {
      display: grid;
      grid-template-columns: 1fr 322px;
      gap: 20px;
    }
}
  @layer component{
    .menu__logo {
      width: 140px;
    }
}
  @layer component{
    .menu__toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
}
  @layer component{
    .menu__download-template {
      display: block;
    }
}
  @layer component{
    .menu__main {
      display: grid;
      grid-template-columns: 1fr 322px;
      gap: 20px;
    }
}
  @layer component{
    .menu__nav {
      gap: 24px;
    }
}
  @layer component{
    .menu__link {
      font-size: 40px;
      letter-spacing: -1px;
    }
}
  @layer component{
    .menu__details {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
}
  @layer component{
    .menu__detail-subtitle {
      font-size: 18px;
    }
}
  @layer component{
    .menu__detail-link {
      font-size: 16px;
    }
}
  @layer component{
    .menu__detail-region {
      font-size: 16px;
    }
}
  @layer component{
    .menu__detail-address {
      font-size: 16px;
    }
}
  @layer component{
    .menu__bottom {
      display: grid;
      grid-template-columns: 1fr 322px;
      align-items: flex-end;
      gap: 20px;
    }
}
  @layer component{
    .menu__bottom .menu__nav {
      gap: 12px;
    }
}
  @layer component{
    .menu__bottom .menu__download-template {
      display: none;
    }
}
  @layer component{
    .menu__btn {
      width: 228px;
    }
}
  @layer component{
    .menu__services {
      display: none;
    }
}
  @layer component{
    .callback-popup {
      padding: 20px;
      height: 100vh;
    }
}
  @layer component{
    .callback-popup__inner {
      height: calc(100vh - 40px);
      width: 710px;
      margin-left: auto;
      padding: 17px 20px;
      border-radius: 4px;
    }
}
  @layer component{
    .callback-popup__desc {
      font-size: 20px;
      line-height: 1.3;
    }
}
  @layer component{
    .callback-popup__success .callback-popup__head {
      padding-top: 0;
    }
}
  @layer component{
    .coockie {
      padding: 20px;
    }
}
  @layer component{
    .coockie__info {
      font-size: 16px;
    }
}
  @layer component{
    .searchbar--white .searchbar__input:focus {
      padding: 22px 20px 19px 51px;
    }
}
  @layer component{
    .searchbar::before {
      top: 20px;
      left: 20px;
      width: 24px;
      height: 24px;
    }
}
  @layer component{
    .searchbar__clear {
      width: 24px;
      height: 24px;
      top: 20px;
      right: 24px;
    }
}
  @layer component{
    .searchbar__input {
      padding: 23px 50px 18px 52px;
      font-size: 18px;
      line-height: 1.2;
    }
}
  @layer component{
    .searchbar__input::placeholder {
      font-size: 18px;
    }
}
  @layer component{
    .chips {
      width: 100%;
      flex-wrap: wrap;
      padding: 0;
      margin: 0;
      overflow: hidden;
    }
}
  @layer component{
    .chips-control label {
      padding: 10px 12px;
      font-size: 16px;
    }
}
  @layer component{
    .popup-documents {
      padding: 20px;
    }
}
  @layer component{
    .popup-documents__close {
      top: 44px;
    }
}
  @layer component{
    .popup-documents__wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
}
  @layer component{
    .popup-documents__inner {
      position: relative;
      max-width: 534px;
      height: auto;
      padding: 0 52px;
    }
}
  @layer component{
    .popup-documents__pagination {
      position: static;
      transform: translateX(0);
      margin-top: 40px;
    }
}
  @layer component{
    .popup-documents__pagination .swiper-pagination-fraction {
      font-size: 18px;
    }
}
  @layer component{
    .popup-documents__slider {
      max-width: 428px;
    }
}
  @layer component{
    .popup-documents__slide-title {
      margin-bottom: 20px;
    }
}
  @layer component{
    .popup-project {
      height: 100vh;
      padding: 20px;
    }
}
  @layer component{
    .popup-project__inner {
      height: calc(100vh - 40px);
      width: 710px;
      margin-left: auto;
      border-radius: 4px;
    }
}
  @layer component{
    .popup-project__content {
      height: calc(100vh - 40px);
    }
}
  @layer component{
    .popup-project__main {
      height: calc(100vh - 40px);
    }
}
  @layer component{
    .popup-project__img {
      padding-top: 37.5%;
    }
}
  @layer component{
    .popup-project__info {
      padding: 20px;
    }
}
  @layer component{
    .popup-project__title {
      font-size: 40px;
    }
}
  @layer component{
    .custom-placemark {
      --size: 24px;
      --dotSize: 16px;
    }
}
  @layer component{
    .custom-cluster {
      --size: 48px;
      --dotSize: 40px;
      font-size: 16px;
    }
}
  @layer component{
    .lines {
      width: calc(100% - 40px);
      margin: 0 20px;
      opacity: 1;
      transform: translateY(-100%);
    }
}
  @layer component{
    .line:nth-of-type(1) {
      left: calc(25% - 5px);
    }
}
  @layer component{
    .line:nth-of-type(2) {
      left: 50%;
    }
}
  @layer component{
    .line:nth-of-type(3) {
      display: block;
      left: calc(75% + 5px);
    }
}
  }
@media only screen and (min-width: 1535.98px) {
@layer component{
    .hero__title {
      font-size: 58px;
    }
}
  }
@media (max-width: 991.98px) {
  :root {
    --spacing: 80px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --spacing: 60px;
  }
}
@media (hover: hover) {
  .header.is-fixed .header__burger:hover {
    background-color: var(--color-accent-50);
    color: var(--color-whte);
  }
  .header.is-fixed .download-template:hover .download-template__icon {
    background-color: var(--color-accent-50);
    color: var(--color-whte);
  }
  .header__menu-link:hover {
    color: rgba(var(--color-blck--rgb), 0.5);
  }
  .header__menu-dropdown-link:hover {
    color: var(--color-accent);
    opacity: 1;
  }
  .header__menu-dropdown-link:hover::after {
    transform: rotate(180deg);
  }
  .header__tel:hover, .header__email:hover {
    opacity: 0.5;
  }
  .header__burger:hover {
    background-color: var(--color-whte);
    color: var(--color-accent);
  }
  .download-template:hover .header__icon {
    background-color: var(--color-whte);
    color: var(--color-accent);
  }
  .download-template--white:hover .download-template__icon {
    background-color: var(--color-accent);
    color: var(--color-whte);
  }
  .footer__contacts-item:hover {
    opacity: 0.5;
  }
  .footer__block a.footer__block-link:hover {
    opacity: 0.5;
  }
  .footer__policy:hover {
    opacity: 0.5;
  }
  @layer component{
    .btn-icon:hover {
      background-color: var(--btn-bg-hover);
      color: var(--btn-color-hover);
    }
}
  @layer component{
    .btn-base:hover {
      background-color: var(--color-gry);
    }
}
  @layer mod{
    .btn--no-hover:hover {
      --btn-bg-hover: var(--color-accent);
      --btn-color-hover: var(--color-whte);
    }
}
  .form-files__template:hover {
    opacity: 0.5;
  }
  .form-files__control span:hover {
    opacity: 0.5;
  }
  @layer component{
    .hero__license-inn-text:hover {
      color: rgba(var(--color-whte--rgb), 0.5);
    }
}
  @layer component{
    .blog__item:hover {
      background-color: var(--color-accent);
      color: var(--color-whte);
    }
    .blog__item:hover .blog__item-img img {
      filter: grayscale(0);
    }
    .blog__item:hover .blog__item-date {
      color: rgba(var(--color-whte--rgb), 0.5);
    }
}
  @layer component{
    .docs__type label:hover {
      border-color: rgba(var(--color-blck--rgb), 0.7);
    }
}
  @layer component{
    .docs__item:hover {
      background-color: var(--color-accent);
      color: var(--color-whte);
      padding-right: 20px;
      border-color: var(--color-accent);
      border-radius: 4px;
    }
    .docs__item:hover .docs__item-type {
      color: rgba(var(--color-whte--rgb), 0.5);
    }
    .docs__item:hover .docs__item-icon {
      background-color: #339178;
      color: var(--color-whte);
      transition-delay: 0s;
    }
    .docs__item:hover + .docs__item {
      border-top-color: transparent !important;
    }
}
  @layer component{
    .docs__more-btn:hover {
      opacity: 0.5;
    }
}
  @layer component{
    .reviews__controls .btn-icon--white:hover {
      background-color: #F6F6F6;
      color: var(--color-accent);
    }
}
  @layer component{
    .services__item-link:hover {
      color: var(--color-accent-50);
    }
}
  @layer component{
    .projects__alphabets-letter:hover {
      color: var(--color-whte);
    }
}
  @layer component{
    .projects__more:hover {
      opacity: 0.5;
    }
}
  @layer component{
    .projects__section-item:hover {
      background-color: var(--color-whte);
      color: var(--color-accent);
      padding-right: 20px;
      border-radius: 4px;
    }
    .projects__section-item:hover .projects__section-item-icon {
      color: var(--color-whte);
      background-color: var(--color-accent);
    }
}
  @layer component{
    .menu__link:hover {
      opacity: 0.5;
    }
}
  @layer component{
    .menu__detail-link:hover {
      opacity: 0.5;
    }
}
  @layer component{
    .menu__detail-region:hover {
      opacity: 0.5;
    }
}
  @layer component{
    .menu__detail-address:hover {
      opacity: 0.7;
    }
}
  @layer component{
    .menu__btn:hover {
      background-color: var(--color-accent);
    }
}
  @layer component{
    .h-services__items:hover .h-services__item {
      color: rgba(var(--color-blck--rgb), 0.5);
    }
}
  @layer component{
    .h-services__item:hover {
      padding: 24px 10px 23px;
      background-color: var(--color-accent);
      color: var(--color-whte) !important;
      border-radius: 4px;
    }
}
}
@media (any-hover: hover) {
@layer component{
    .btn:hover {
      background-color: var(--btn-bg-hover);
      color: var(--btn-color-hover);
    }
    .btn:hover .btn__icon {
      color: var(--btn-icon-color-hover);
    }
    .btn:hover .btn__icon span {
      background-color: var(--btn-icon-bg-hover);
      transform: scale(0.9);
    }
    .btn:hover .btn__icon::before {
      transform: translate3d(150%, -150%, 0px);
    }
    .btn:hover .btn__icon::after {
      transform: translate3d(0%, 0%, 0px);
    }
}
  }/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

.swiper-3d {
  perspective: 1200px;
}

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

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
  }

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
      display: none;
    }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
      scroll-snap-type: none;
    }

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-start: var(--swiper-centered-offset-before);
              margin-inline-start: var(--swiper-centered-offset-before);
    }

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-before: var(--swiper-centered-offset-before);
              margin-block-start: var(--swiper-centered-offset-before);
    }

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }

/* Slide styles start */

/* 3D Shadows */

.swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */

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