@charset "UTF-8";

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

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

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

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

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

/* 
$prop - свойство,
$min - минимальное значение,
$max - максимальное значение,
$minW - минимальная ширина вьюпорта,
$maxW - махимальная ширина вьюпорта
*/

/*
$grow - коэффициент увеличения,
$shrink - коэффициент уменьшения,
$min - минимальная ширина,
$max - максимальная ширина,
$minW - минимальная ширина вьюпорта,
$maxW - махимальная ширина вьюпорта
*/

:root {
  --font-family: "Aeonik Pro", sans-serif;
  --font-Helios: "Helios", sans-serif;
  --color-white: #ffffff;
  --color-black: #020102;
  --background-content: #141214;
  --color-modal-bg: rgba(2, 1, 2, 0.8);
  --height-header: 88px;
  --vh: 100vh;
}

@supports (height: 100dvh) {
  :root {
    --vh: 100dvh;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  background-color: transparent;
  font-family: inherit;
}

textarea {
  resize: none;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

:root {
  scrollbar-gutter: stable;
}

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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0px;
}

a,
button {
  color: inherit;
  font-size: inherit;
}

body {
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-black);
  --padding-container: 20px;
  --container-width: 1440px;
  --max-width-container: 1480px;
  --max-width-big-container: 1960px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.main {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

[class*=__container] {
  padding-left: var(--padding-container);
  padding-right: var(--padding-container);
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width-container);
}

[class*=__big-container] {
  padding-left: var(--padding-container);
  padding-right: var(--padding-container);
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width-big-container);
}

.nav-panel {
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 44px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #1c1a1c;
  border-radius: 20px;
}

.nav-panel li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-panel li:not(:last-child)::after {
  content: "";
  margin-left: 4px;
  margin-right: 4px;
  width: 1px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-panel a {
  position: relative;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.01em;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
}

.nav-panel a svg {
  width: 20px;
  height: 20px;
}

.nav-panel a:hover {
  -webkit-box-shadow: 0 0 6px 0 rgba(2, 1, 2, 0.12);
          box-shadow: 0 0 6px 0 rgba(2, 1, 2, 0.12);
  background-color: #282728;
}

.nav-panel.nav-text a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.nav-panel.nav-text a:hover {
  padding-left: 30px;
}

.nav-panel.nav-text a:hover:before {
  opacity: 1;
}

.nav-panel.nav-text a {
  padding: 6px 12px;
}

.anhor {
  position: relative;
  padding: 8px 16px 8px 30px;
  display: inline-block;
  font-family: var(--font-Helios);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(2, 1, 2, 0.25);
          box-shadow: 0 4px 4px 0 rgba(2, 1, 2, 0.25);
  background: #1c1a1c;
}

.anhor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.phone {
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
}

.applying button,
.applying a {
  padding: 10px 12px 8px;
  display: inline-block;
  font-size: 12px;
  text-align: center;
  color: #020102;
  border-radius: 20px;
  background-color: #fff;
}

.up {
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 20px;
  background-color: #1c1a1c;
}

.button {
  padding: 12px 10px 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #020102;
  background-color: #fff;
  border-radius: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 187px;
}

.text-animate .word {
  white-space: nowrap;
}

.text-animate .word span {
  opacity: 0.3;
  background: -webkit-gradient(linear, left top, left bottom, from(#4c4a54), to(#27252b));
  background: linear-gradient(180deg, #4c4a54 0%, #27252b 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.text-animate .word.white span {
  opacity: 0.1;
  color: #fff;
}

.framing {
  position: relative;
  white-space: nowrap;
}

.framing svg {
  position: absolute;
  top: 50%;
  left: -5%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 110%;
}

.framing svg path {
  stroke-dasharray: 0, var(--path-framing);
}

.framing.visible path {
  stroke-dasharray: var(--path-framing), var(--path-framing);
  -webkit-transition: stroke-dasharray 1s cubic-bezier(0.74, 0.14, 0.88, 0.55);
  transition: stroke-dasharray 1s cubic-bezier(0.74, 0.14, 0.88, 0.55);
}

.burger {
  position: relative;
  cursor: pointer;
  width: 30px;
  display: block;
}

.burger .line {
  position: absolute;
  height: 2px;
  width: 30px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.burger .line-1 {
  -webkit-transform: translate(-50%, 5px);
      -ms-transform: translate(-50%, 5px);
          transform: translate(-50%, 5px);
}

.burger .line-2 {
  -webkit-transform: translate(-50%, -5px);
      -ms-transform: translate(-50%, -5px);
          transform: translate(-50%, -5px);
}

.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-open body {
  overflow: hidden;
}

.mobile-menu-open .mobile-menu {
  top: 0;
}

.mobile-menu-open .burger .line-1 {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
      -ms-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
}

.mobile-menu-open .burger .line-2 {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
      -ms-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
}

.header__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.scroll-header .header__wrapper {
  -webkit-animation: headerScroll 0.5s forwards;
          animation: headerScroll 0.5s forwards;
}

@-webkit-keyframes headerScroll {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes headerScroll {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.header {
  position: relative;
  padding: 22px 0;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(43, 41, 41, 0.24);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
}

.header__body > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__group {
  gap: 16px;
}

.header__group > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__logo svg {
  max-height: 19px;
  max-width: 138px;
  width: 100%;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer {
  margin-top: 80px;
  padding-bottom: 40px;
}

.footer__body {
  padding-bottom: 40px;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 40px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.footer__icon a {
  display: block;
}

.footer__icon img {
  width: 100%;
  max-width: 138px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.footer__up a,
.footer__up button {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
}

.footer__address {
  font-weight: 500;
  font-size: 16px;
  line-height: 112%;
  color: #fff;
}

.footer__address p:first-child {
  margin-bottom: 32px;
}

.footer__services {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.footer__services p {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 24px;
  line-height: 108%;
  letter-spacing: 0.01em;
  color: #fff;
}

.footer__services ol {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 16px;
}

.footer__services li {
  list-style: none;
}

.footer__services a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links li {
  list-style: none;
  margin-bottom: 16px;
}

.footer__links a {
  font-weight: 500;
  font-size: 18px;
  line-height: 117%;
  letter-spacing: 0.01em;
  color: #fff;
}

.footer__under {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer__under-cell {
  padding-top: 24px;
  font-weight: 500;
  font-size: 12px;
  line-height: 117%;
  color: rgba(255, 255, 255, 0.4);
  /*  &.under-group {
     grid-column: span 2;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
  } */
}

.modal {
  --height-modal: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100vw;
  height: var(--height-modal);
  background-color: var(--color-modal-bg);
  scrollbar-gutter: stable;
  overflow-y: auto;
  overflow-x: hidden;
}

@supports (height: 100dvh) {
  .modal {
    --height-modal: 100dvh;
  }
}

.modal__container {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: var(--height-modal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__body {
  position: relative;
  margin: 0 auto;
  padding: 24px 20px;
  max-width: 556px;
  width: 100%;
  background-color: var(--background-content);
  border-radius: 24px;
}

.modal__header {
  margin-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.modal__inputs > *:not(:last-child) {
  margin-bottom: 16px;
}

.modal__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.8);
}

.modal__footer {
  margin-top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal__footer-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.4);
}

.js-modal-hidden {
  display: none;
}

.js-modal-hidden.js-modal-visible {
  display: block;
}

.body-overflow {
  overflow: hidden;
}

.baner {
  padding: 4px 0;
  background-color: #0060FE;
  min-height: 24px;
}

.baner__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
}

.baner__body > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.baner__icon img {
  max-width: 12px;
}

.baner__content {
  padding-top: 1px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.baner__text {
  padding-top: 1px;
  display: none;
  opacity: 0.6;
}

.baner__link {
  padding-top: 1px;
}

.baner__link-pc {
  display: none;
}

.baner__close {
  margin-left: auto;
}

.baner__close button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.first {
  position: relative;
  min-height: var(--vh);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}

.first__gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.first__gallery::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  height: 150vh;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 1, 2, 0)), to(#020102));
  background: linear-gradient(180deg, rgba(2, 1, 2, 0) 0%, #020102 100%);
}

.first__gallery-image {
  --size: 1vw;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: image_scale 1s 3s forwards;
          animation: image_scale 1s 3s forwards;
}

.first__gallery-image-1 {
  top: 24%;
  left: 16%;
}

.first__gallery-image-1 img {
  width: calc(var(--size) * 20);
}

.first__gallery-image-2 {
  top: 30%;
  left: 33%;
}

.first__gallery-image-2 img {
  width: calc(var(--size) * 24.23);
}

.first__gallery-image-3 {
  top: 33%;
  left: 67%;
}

.first__gallery-image-3 img {
  width: calc(var(--size) * 31);
}

.first__gallery-image-4 {
  top: 18%;
  left: 95%;
}

.first__gallery-image-4 img {
  width: calc(var(--size) * 17.78);
}

.first__gallery-image-5 {
  top: 51%;
  left: 3.8%;
}

.first__gallery-image-5 img {
  width: calc(var(--size) * 22.5);
}

.first__gallery-image-6 {
  top: 66%;
  left: 32.6%;
}

.first__gallery-image-6 img {
  width: calc(var(--size) * 29.72);
}

.first__gallery-image-7 {
  top: 68%;
  left: 65%;
}

.first__gallery-image-7 img {
  width: calc(var(--size) * 22.57);
}

.first__gallery-image-8 {
  top: 53%;
  left: 92%;
}

.first__gallery-image-8 img {
  width: calc(var(--size) * 22.57);
}

.first__text {
  position: relative;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 13vw;
  line-height: 86%;
  letter-spacing: 0.02em;
  color: #fff;
  z-index: 2;
}

.first__text p {
  background: -webkit-gradient(linear, left top, left bottom, from(#4c4a54), to(#27252b));
  background: linear-gradient(180deg, #4c4a54 0%, #27252b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes image_scale {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.3);
            transform: translate(-50%, -50%) scale(0.3);
  }

  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes image_scale {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.3);
            transform: translate(-50%, -50%) scale(0.3);
  }

  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

.case {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.case.set-opacity {
  opacity: 0.2;
}

.case__trigger {
  padding-top: var(--height-header);
  min-height: var(--vh);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.case__margin-anhor {
  margin-bottom: 40px;
}

.case__text {
  position: relative;
  z-index: 2;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 6vw;
  line-height: 100%;
  color: #fff;
}

.case__text-block {
  min-width: 100vw;
  width: 100vw;
}

.case__text-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.case__text-table > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 10px);
          flex: 0 0 calc(50% - 10px);
}

.case__button {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contacts {
  margin-top: 80px;
}

.contacts__subscription {
  position: relative;
  margin-top: 40px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0462fe), to(#1d72fe));
  background: linear-gradient(180deg, #0462fe 0%, #1d72fe 100%);
  overflow: hidden;
}

.contacts__content {
  padding: 15px;
}

.contacts__text {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 110%;
  color: #fff;
}

.contacts__text p {
  max-width: 615px;
}

.contacts__text span {
  opacity: 0.4;
}

.contacts__subscription-button {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
}

.contacts__image {
  position: relative;
  padding-bottom: 70%;
}

.contacts__image img {
  position: absolute;
  right: 0;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.contacts__body > * {
  border-radius: 16px;
  overflow: hidden;
  min-height: min(592px, (100vw - 40px) * 0.86);
  padding: min(32px, 0.043956044 * (100vw - 40px));
}

.contacts__map {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: linear-gradient(159deg, #363636 0%, rgba(37, 37, 37, 0.58) 100%);
}

.contacts__map-header {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  gap: min(32px, 0.043956044 * (100vw - 40px));
}

.contacts__map-group {
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  display: inherit;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  gap: inherit;
}

.contacts__map-phone {
  line-height: 100%;
  white-space: nowrap;
  font-size: min(32px, 0.043956044 * (100vw - 40px));
}

.contacts__map-address {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 108%;
  text-align: right;
  font-size: min(24px, 0.032967033 * (100vw - 40px));
}

.contacts__map-bg {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contacts__link {
  position: relative;
  z-index: 1;
}

.contacts__link a {
  display: inline-block;
  border-radius: 30px;
  padding: 10px 12px 8px;
  text-align: center;
  line-height: 100%;
  color: #020102;
  background: #fff;
  font-size: min(20px, 0.0274725275 * (100vw - 40px));
}

.contacts__link a span {
  color: #f00;
}

.contacts__consultation {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  background-color: #1D1D1D;
}

.contacts__consultation-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}

.contacts__consultation-title {
  line-height: 112%;
  max-width: min(300px, 0.4120879121 * (100vw - 40px));
  font-size: min(32px, 0.043956044 * (100vw - 40px));
}

.contacts__consultation-title span {
  color: #64616e;
}

.contacts__consultation-foto {
  text-align: center;
}

.contacts__consultation-foto img {
  border-radius: 7px;
  width: 128px;
  width: min(160px, 0.2197802198 * (100vw - 40px));
}

.contacts__consultation-text {
  max-width: 216px;
  font-size: 12px;
  line-height: 114%;
  color: #64616e;
  margin-bottom: min(40px, 0.0549450549 * (100vw - 40px));
}

.contacts__consultation-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts__consultation-price {
  line-height: 112%;
  font-size: min(32px, 0.043956044 * (100vw - 40px));
}

.about {
  margin-top: 40px;
}

.about__body {
  margin-top: 30px;
}

.about__text {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.16;
  color: #fff;
  max-width: 1064px;
}

.about__text span {
  background: -webkit-gradient(linear, left top, left bottom, from(#4c4a54), to(#27252b));
  background: linear-gradient(180deg, #4c4a54 0%, #27252b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.about__card {
  --size: calc(80vw - 40px);
  position: relative;
  padding: 15px;
  width: 100%;
  min-height: var(--size);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  border-radius: 24px;
  backdrop-filter: blur(40px);
  background: rgba(31, 30, 31, 0.6);
  overflow: hidden;
}

.about__card P:last-child {
  color: #3c3a43;
}

.about__card img {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
}

.about__card-header {
  font-family: var(--second-family);
  font-size: calc(var(--size) * 0.08);
  line-height: 100%;
  color: #fff;
  width: 50%;
}

.about__card-footer {
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-align: right;
  width: 60%;
  font-size: calc(var(--size) * 0.06);
  line-height: 112%;
  color: #fff;
}

.collaboration {
  margin-top: 64px;
}

.collaboration__body {
  border-radius: 16px;
  overflow: hidden;
}

.collaboration__baner {
  padding: 15px 15px 0;
  position: relative;
  min-height: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.collaboration__background {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.collaboration__title {
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  font-size: 36px;
  line-height: 87%;
  color: #fff;
}

.collaboration__title img {
  width: min(100px, 7vw);
}

.collaboration__content {
  padding: 0 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #141214;
  border-radius: 0 0 16px 16px;
}

.collaboration__list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.collaboration__list p {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 129%;
  color: #64616e;
}

.collaboration__list ul {
  padding-left: 1.5em;
}

.collaboration__list li {
  list-style: disc;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
}

.collaboration__description {
  padding-top: 15px;
}

.collaboration__description p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 143%;
  color: #64616e;
}

.proof__body {
  margin: 0 auto;
  max-width: 1094px;
}

.proof__block {
  --gap: 10px;
  margin-bottom: var(--gap);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap);
}

.proof__card {
  position: relative;
  padding: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - var(--gap) / 2);
          flex: 0 0 calc(50% - var(--gap) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 110vw;
  border-radius: 16px;
  overflow: hidden;
}

.proof__card img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

._pc .proof__card:hover .proof__arrow {
  opacity: 1;
}

.proof__card.black .proof__text {
  color: #020102;
}

.proof__card.black .proof__arrow path {
  stroke: #000;
}

.proof__arrow {
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

._touch .proof__arrow {
  display: none;
}

.proof__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.proof__text {
  position: relative;
  z-index: 1;
  max-width: 384px;
  font-size: 6.3vw;
  line-height: 100%;
  letter-spacing: 0.01em;
}

.proof__tags {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}

.proof__tags span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px 4px;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #fff;
  backdrop-filter: blur(40px);
  background: rgba(31, 30, 31, 0.6);
  border-radius: 20px;
}

.proof__more {
  display: block;
  border-radius: 30px;
  padding: 12px 8px 10px;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(40px);
  background: #1f1e1f;
}

.services {
  margin-top: 64px;
}

.services__body {
  position: relative;
}

.services__title {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 94%;
  text-align: center;
}

.services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.services__certificates {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.services__grid {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: min(32px, 2.22vw);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.services__cell:hover .services__cell-arrow {
  opacity: 1;
}

.services__cell-body {
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  backdrop-filter: blur(40px);
  background: rgba(31, 30, 31, 0.6);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  font-size: 16px;
  line-height: 100%;
}

.services__cell-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services__cell-header-image img {
  max-width: 100%;
}

.services__cell-title {
  padding-bottom: 4px;
}

.services__cell-arrow {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.services__cell-arrow-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16%;
}

.services__cell-arrow-sell {
  position: relative;
  padding-bottom: 100%;
  width: 100%;
}

.services__cell-arrow-sell svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.services__cell-price {
  margin-top: 3px;
  font-size: 16px;
  line-height: 100%;
  text-align: right;
}

.services__cell-text {
  max-width: 248px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 10px;
  line-height: 112%;
  letter-spacing: 0.02em;
  text-align: right;
}

.services__cell-image {
  text-align: center;
}

.services__cell-image img {
  width: calc((100% + 64px) / 2);
}

.services__tag span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #fff;
  border-radius: 20px;
  backdrop-filter: blur(40px);
  background: rgba(31, 30, 31, 0.6);
}

.services__enum {
  margin-bottom: 20px;
}

.services__enum-title {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 114%;
  color: #64616e;
}

.services__enum-item {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.services__enum-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 72px;
          flex: 0 0 72px;
}

.services__enum-image-sell {
  position: relative;
  padding-bottom: 70.83%;
  border-radius: 4px;
  overflow: hidden;
}

.services__enum-image-sell img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services__enum-name {
  font-size: 14px;
  line-height: 114%;
}

.services__enum-list {
  margin-top: 32px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.services__enum-list li {
  margin-left: 1.5em;
  list-style: disc;
  font-size: 14px;
  line-height: 114%;
  color: #64616e;
}

.services__enum-list li:not(:last-child) {
  margin-bottom: 8px;
}

.decisions {
  overflow: hidden;
}

.decisions__padding {
  padding-top: var(--height-header);
}

.decisions__trigger {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.decisions__body {
  padding: 0 20px;
  margin-top: 24px;
  gap: 5vw;
}

.decisions__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.decisions__wrapper {
  -ms-grid-columns: 400px 1fr;
  grid-template-columns: 400px 1fr;
  gap: 32px;
}

.decisions__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.decisions__number {
  margin-bottom: 24px;
  font-size: 20px;
  color: #fff;
}

.decisions__text {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 110%;
}

.decisions__text .gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#4c4a54), to(#27252b));
  background: linear-gradient(180deg, #4c4a54 0%, #27252b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.decisions__image img {
  width: 100%;
}

.decisions__subtext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 14px;
  line-height: 114%;
  color: #64616e;
}

.decisions__tags {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  max-width: calc(var(--CW) * 0.743);
}

.decisions__tags span {
  border-radius: 20px;
  padding: 4px 10px;
  backdrop-filter: blur(40px);
  background: #1c1a1c;
  font-size: 12px;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0.01em;
}

.loader {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100vw;
  height: var(--vh, 100vh);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
  -webkit-animation: loader 0.7s 3s forwards;
          animation: loader 0.7s 3s forwards;
}

.loader__icon {
  opacity: 0;
  -webkit-animation: logo 2.5s linear 0.5s;
          animation: logo 2.5s linear 0.5s;
}

.loader__icon svg {
  height: 100%;
  width: 80vw;
}

@-webkit-keyframes logo {
  0% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes logo {
  0% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes loader {
  from {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  to {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
}

@keyframes loader {
  from {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  to {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
}

.mobile-menu {
  padding-top: calc(var(--height-header) + 40px);
  padding-bottom: 30px;
  position: fixed;
  top: -120%;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  overflow-x: hidden;
  overflow-y: auto;
}

.mobile-menu .nav-panel.nav-text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.mobile-menu .nav-panel.nav-text li {
  width: 100%;
}

.mobile-menu .nav-panel.nav-text li:not(:last-child)::after {
  content: "";
  display: none;
}

.mobile-menu .nav-panel.nav-text a {
  padding: 12px 0;
  min-height: 72px;
  width: 100%;
  font-size: 18px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid #1c1a1c;
  border-radius: 0;
}

.mobile-menu .header__group {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
}

.mobile-menu .phone {
  font-size: 18px;
}

.mobile-menu .applying {
  width: 100%;
}

.mobile-menu .applying button,
.mobile-menu .applying a {
  width: 100%;
  font-size: 16px;
}

.about-page {
  padding-top: var(--height-header, 88px);
}

.about-page__title {
  padding-top: 24px;
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.about-page__main-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-page__main-image img {
  width: 100%;
}

.about-page__main-image .proof__tags {
  --padding: 16px;
  position: absolute;
  bottom: var(--padding);
  left: var(--padding);
  max-width: min(500px, 100% - var(--padding) * 2);
}

.about-page__block {
  margin-top: 32px;
  margin-bottom: 32px;
}

.about-page__block-header {
  margin-bottom: 20px;
}

.about-page__block-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.about-page__block-text {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: rgba(255, 255, 255, 0.8);
}

.about-page__block-list {
  font-size: 18px;
  line-height: 133%;
  color: rgba(255, 255, 255, 0.8);
}

.about-page__block-list li {
  margin-left: 1em;
  list-style: disc;
}

.about-page__block-list li:not(:last-child) {
  margin-bottom: 16px;
}

.about-page__block-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-page__block-icons img {
  height: 48px;
}

.about-page__block-image {
  overflow: hidden;
  border-radius: 12px;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.about-page__block-image img {
  margin-bottom: 16px;
  width: 100%;
}

.about-page__block-link {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  color: rgba(255, 255, 255, 0.8);
}

.input {
  padding: 17px 20px;
  width: 100%;
  min-height: 56px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: var(--color-white);
  background: #1f1e1f;
  border-radius: 8px;
}

.input::-webkit-input-placeholder {
  color: inherit;
}

.input::-moz-placeholder {
  color: inherit;
}

.input:-ms-input-placeholder {
  color: inherit;
}

.input::-ms-input-placeholder {
  color: inherit;
}

.input::placeholder {
  color: inherit;
}

.input-file {
  position: relative;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  border: 1px dashed #404040;
  border-radius: 8px;
  min-height: 108px;
}

.input-file input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.input-file input::-webkit-file-upload-button {
  cursor: pointer;
}

.input-file__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}

.input-file__title {
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.input-file__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 112%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 450px) {
  .modal__body {
    padding: 32px;
  }

  .modal__title {
    font-size: 32px;
  }

  .modal__footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .modal__footer-text {
    max-width: 253px;
  }

  .input-file__title {
    font-size: 18px;
  }

  .input-file__text {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .button {
    padding: 19px 20px 17px;
    font-size: 20px;
  }

  .footer__services ol {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .footer__links a {
    font-size: 24px;
  }

  .baner__body {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .first__text {
    font-size: min(100px, 8vw);
  }

  .case__text {
    font-size: 60px;
  }

  .contacts__subscription {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .contacts__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 32px 0 32px 32px;
  }

  .contacts__text {
    margin-bottom: 100px;
  }

  .contacts__image {
    padding-bottom: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding-bottom: 0;
  }

  .contacts__image img {
    top: 0;
    height: 100%;
    margin-left: -5%;
    max-width: 105%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .contacts__link a {
    padding: 19px 20px 17px;
  }

  .contacts__consultation-text {
    font-size: 14px;
  }

  .about {
    margin-top: 64px;
  }

  .about__body {
    margin-top: 80px;
  }

  .about__text {
    font-size: 40px;
  }

  .about__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 32px;
  }

  .about__card {
    padding: 32px;
    min-height: 320px;
    max-width: 400px;
  }

  .about__card-header {
    font-size: 32px;
  }

  .about__card-footer {
    font-size: 16px;
  }

  .collaboration__baner {
    min-height: 488px;
    padding: 40px 40px 0;
  }

  .collaboration__title {
    font-size: 65px;
  }

  .collaboration__content {
    padding: 0 40px 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .collaboration__description p {
    margin-bottom: 40px;
  }

  .proof__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .proof__card {
    border-radius: 24px;
    min-height: min(598px, 55vw);
  }

  .proof__text {
    font-size: 24px;
  }

  .proof__tags span {
    font-size: 14px;
  }

  .proof__more {
    padding: 19px 20px 17px;
    font-size: 20px;
  }

  .services__title {
    font-size: 80px;
  }

  .services__cell-body {
    font-size: 18px;
  }

  .services__cell-price {
    margin-left: calc(16% + 8px);
    font-size: 24px;
  }

  .services__cell-text {
    font-size: 12px;
  }

  .services__tag span {
    padding: 8px 16px;
    font-size: 16px;
  }

  .services__enum {
    max-width: 334px;
  }

  .decisions__number {
    font-size: 32px;
  }

  .decisions__text {
    font-size: 32px;
  }

  .decisions__tags span {
    padding: 8px 16px;
    font-size: 16px;
  }

  .about-page__title {
    font-size: 56px;
    padding-top: 40px;
  }

  .about-page__main-image {
    border-radius: 24px;
  }

  .about-page__block-title {
    margin-bottom: 40px;
    font-size: 40px;
  }

  .about-page__block-text {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .about-page__block-list {
    font-size: 24px;
  }

  .about-page__block-icons {
    gap: 40px;
  }

  .about-page__block-icons img {
    height: 56px;
  }

  .about-page__block-image {
    border-radius: 16px;
  }
}

@media (min-width: 992px) {
  .footer__body {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 0;
    -webkit-column-gap: 10vw;
       -moz-column-gap: 10vw;
            column-gap: 10vw;
  }

  .footer__icon {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .footer__nav {
    margin-bottom: 74px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .footer__up {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .footer__address {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .footer__services {
    margin-bottom: 48px;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .footer__links {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .footer__under {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .collaboration__title {
    font-size: 92px;
  }

  .collaboration__list li {
    font-size: 24px;
  }

  .collaboration__description {
    padding-top: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 344px;
            flex: 0 1 344px;
  }

  .proof__block {
    --gap: 32px;
  }

  .proof__block:nth-child(odd) .proof__card:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46.25%;
            flex: 0 0 46.25%;
  }

  .proof__block:nth-child(even) .proof__card:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46.25%;
            flex: 0 0 46.25%;
  }

  .proof__card {
    padding: 32px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .services__cell-text {
    margin-left: calc(16% + 8px);
    font-size: 16px;
  }

  .about-page__main-image .proof__tags {
    --padding: 24px;
  }

  .about-page__block {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .about-page__block-header {
    margin-bottom: 40px;
  }

  .about-page__block-content {
    margin-left: min(200px, 13.57vw);
    margin-right: min(200px, 13.57vw);
  }
}

@media (min-width: 1024px) {
  .burger {
    display: none !important;
  }

  .footer {
    margin-top: 144px;
  }

  .baner__text {
    display: block;
  }

  .baner__link-pc {
    display: block;
  }

  .baner__link-mobile {
    display: none;
  }

  .case__margin-anhor {
    margin-bottom: 80px;
  }

  .case__text {
    font-size: 88px;
  }

  .contacts {
    margin-top: 160px;
  }

  .contacts__subscription {
    margin-bottom: 32px;
  }

  .contacts__text {
    font-size: 40px;
  }

  .contacts__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .contacts__body {
    gap: min(32px, 0.0258064516 * (100vw - 40px));
  }

  .contacts__body > * {
    padding: min(32px, 0.0258064516 * (100vw - 40px));
  }

  .contacts__body > * {
    min-height: min(592px, 44.849vw);
  }

  .contacts__map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 53.75%;
            flex: 0 0 53.75%;
  }

  .contacts__map-header {
    gap: min(32px, 0.0258064516 * (100vw - 40px));
  }

  .contacts__map-phone {
    font-size: min(32px, 0.0258064516 * (100vw - 40px));
  }

  .contacts__map-address {
    font-size: min(24px, 0.0193548387 * (100vw - 40px));
  }

  .contacts__map-address {
    max-width: min(150px, 0.1209677419 * (100vw - 40px));
  }

  .contacts__link a {
    font-size: min(20px, 0.0161290323 * (100vw - 40px));
  }

  .contacts__consultation-title {
    max-width: min(300px, 0.2419354839 * (100vw - 40px));
  }

  .contacts__consultation-title {
    font-size: min(32px, 0.0258064516 * (100vw - 40px));
  }

  .contacts__consultation-foto img {
    width: min(128px, 0.1032258065 * (100vw - 40px));
  }

  .contacts__consultation-text {
    margin-bottom: min(40px, 0.0322580645 * (100vw - 40px));
  }

  .contacts__consultation-price {
    font-size: min(32px, 0.0258064516 * (100vw - 40px));
  }

  .about__text {
    font-size: 64px;
  }

  .proof__text {
    font-size: 32px;
  }

  .proof__tags span {
    padding: 9px 16px 7px;
    font-size: 16px;
  }

  .services__title {
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 100px;
  }

  .services__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .services__certificates {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .services__grid {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .services__cell-body {
    border-radius: 24px;
    font-size: 24px;
    padding: 32px;
  }

  .services__enum-list {
    padding: 24px;
  }

  .decisions__trigger {
    height: var(--vh);
  }

  .decisions__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 max(20px, (100vw - var(--container-width)) / 2);
  }

  .decisions__wrapper {
    display: -ms-grid;
    display: grid;
  }

  .decisions__info-sell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 370px;
  }

  .decisions__number {
    font-size: 40px;
  }

  .decisions__text {
    font-size: 40px;
  }

  .decisions__image img {
    width: auto;
    max-height: 60vh;
    height: 100%;
  }

  .decisions__subtext {
    max-width: 254px;
  }

  .mobile-menu {
    display: none;
  }

  .about-page__title {
    font-size: 64px;
  }
}

@media (min-width: 1200px) {
  .nav-panel a {
    padding: 8px;
    font-size: 16px;
  }

  .nav-panel.nav-text a {
    padding: 8px 16px;
  }

  .phone {
    font-size: 18px;
  }

  .applying button,
  .applying a {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  .services__title {
    font-size: 183px;
  }
}

@media (max-width: 1249.98px) {
  .contacts__map .nav-panel {
    min-height: auto;
    padding: 2px;
  }

  .contacts__map .nav-panel a {
    padding: 0.4vw;
  }

  .contacts__map .nav-panel svg {
    width: 1.6vw;
    height: 1.6vw;
  }
}

@media (max-width: 1023.98px) {
  .text-animate.text-animate-pc .word span,
  .text-animate.text-animate-pc .word.white span {
    opacity: 1;
  }

  .case {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }

  .decisions__block {
    margin-bottom: 40px;
  }

  .decisions__info {
    margin-bottom: 20px;
  }

  .decisions__info-sell .button {
    margin-top: 20px;
  }

  .decisions__subtext {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .contacts__map .nav-panel {
    min-height: auto;
    padding: 2px;
  }

  .contacts__map .nav-panel a {
    padding: 0.78vw;
  }

  .contacts__map .nav-panel svg {
    width: 3vw;
    height: 3vw;
  }
}

@media (max-width: 767.98px) {
  .footer__nav .applying {
    width: 100%;
  }

  .footer__nav .applying button,
  .footer__nav .applying a {
    width: 100%;
  }

  .footer__address {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .modal__container {
    padding: 20px;
  }

  .case__number {
    margin-bottom: 3vw;
    font-size: 10vw;
  }

  .contacts__image img {
    bottom: 0;
  }
}

@media (max-width: 449.98px) {
  .modal__footer button {
    width: 100%;
  }
}

@media (orientation: portrait) {
  .first__gallery-image {
    --size: 1vh;
  }
}