@charset "UTF-8";

@keyframes fadeInTop {
  0% {
    translate: 0 -100%
  }

  to {
    translate: 0 0
  }
}

@keyframes fadeOutTop {
  0% {
    translate: 0 0
  }

  to {
    translate: 0 -200%
  }
}

@keyframes showIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes showOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes pulse {
  0% {
    opacity: 0
  }

  80%,
  to {
    opacity: 1
  }
}

.menu-link {
  position: relative;
  order: 10;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  border-radius: 8px
}

.menu-link:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background-image: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none
}

.menu-link.active .menu-lines {
  background: 0 0
}

.menu-link.active .menu-lines:after {
  top: 0;
  rotate: -135deg
}

.menu-link.active .menu-lines:before {
  top: 0;
  rotate: 135deg
}

.menu-lines,
.menu-lines:before,
.menu-lines:after {
  position: absolute;
  left: 50%;
  width: 13px;
  height: 1px;
  translate: -50% -50%;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  transition: .4s;
  pointer-events: none;
  border-radius: 1px
}

.menu-lines {
  top: 50%
}

.menu-lines:before {
  content: "";
  top: -4px
}

.menu-lines:after {
  content: "";
  top: 5px
}

.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer
}

.checkbox__input {
  position: relative;
  display: flex;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer
}

.checkbox__input:before {
  content: "";
  aspect-ratio: 1;
  border: 1px solid #fff;
  border-radius: 6px;
  transition: background-color .3s, border-color .3s;
  box-sizing: border-box
}

.checkbox__input:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 50%;
  height: 50%;
  mask: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.742126 5.36594L5.92586 11.1051L15.3508 0.670288' stroke='white' stroke-width='2' /%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.742126 5.36594L5.92586 11.1051L15.3508 0.670288' stroke='white' stroke-width='2' /%3E%3C/svg%3E") center/contain no-repeat;
  background: #fff;
  opacity: 0;
  transition: all .2s
}

.checkbox__input:checked:after {
  opacity: 1
}

.checkbox__input:disabled~span {
  opacity: .4;
  cursor: not-allowed
}

.checkbox__input:focus-visible {
  outline: 0
}

.checkbox__input:focus-visible:before {
  background: color-mix(in srgb, white 85%, #007bff);
  border-color: #007bff
}

.checkbox-text {
  position: relative
}

.checkbox-text .checkbox__text {
  transition: all .4s
}

.checkbox-text .checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden
}

.checkbox-text .checkbox__input:focus-visible+.checkbox__text:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  box-shadow: 0 0 0 1px #007bff;
  border-radius: 6px
}

.checkbox-text .checkbox__input:before {
  display: none
}

.checkbox-text .checkbox__input:checked~.checkbox__text {
  color: #007bff
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px
}

.crumbs li:not(:last-child) {
  color: #dfe4ec
}

.crumbs li:last-child {
  pointer-events: none
}

.crumbs li:last-child a {
  cursor: default
}

.crumbs li:not(:last-child) {
  position: relative
}

.crumbs li:not(:last-child):before {
  content: "/";
  position: absolute;
  top: 50%;
  translate: 50% -50%
}

.map-wrapper {
  position: relative;
  min-height: 400px;
  width: 100%;
  background: center/cover no-repeat;
  overflow: hidden
}

.map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 123, 255, .4);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none
}

.loader.is-active {
  opacity: 1
}

.loader:after {
  content: "";
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border: solid 8px #fff;
  border-left-color: transparent;
  border-radius: 50%;
  animation: rotation .7s linear infinite
}

@keyframes rotation {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(359deg)
  }
}

.arrow {
  display: flex;
  transition: all .4s
}

.arrow svg {
  width: 48px;
  aspect-ratio: 1
}

.arrow[disabled] {
  opacity: .4;
  cursor: not-allowed
}

.navigation {
  display: flex;
  align-items: center;
  gap: 12px
}

[data-spoller-title] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: all .4s
}

[data-spoller-title]:after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9C18 9.19891 17.921 9.38968 17.7803 9.53033C17.6397 9.67098 17.4489 9.75 17.25 9.75H9.75V17.25C9.75 17.4489 9.67098 17.6397 9.53033 17.7803C9.38968 17.921 9.19891 18 9 18C8.80109 18 8.61032 17.921 8.46967 17.7803C8.32902 17.6397 8.25 17.4489 8.25 17.25V9.75H0.75C0.551088 9.75 0.360322 9.67098 0.21967 9.53033C0.0790178 9.38968 0 9.19891 0 9C0 8.80109 0.0790178 8.61032 0.21967 8.46967C0.360322 8.32902 0.551088 8.25 0.75 8.25H8.25V0.75C8.25 0.551088 8.32902 0.360322 8.46967 0.21967C8.61032 0.0790178 8.80109 0 9 0C9.19891 0 9.38968 0.0790178 9.53033 0.21967C9.67098 0.360322 9.75 0.551088 9.75 0.75V8.25H17.25C17.4489 8.25 17.6397 8.32902 17.7803 8.46967C17.921 8.61032 18 8.80109 18 9Z' fill='%232B2F33' /%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9C18 9.19891 17.921 9.38968 17.7803 9.53033C17.6397 9.67098 17.4489 9.75 17.25 9.75H9.75V17.25C9.75 17.4489 9.67098 17.6397 9.53033 17.7803C9.38968 17.921 9.19891 18 9 18C8.80109 18 8.61032 17.921 8.46967 17.7803C8.32902 17.6397 8.25 17.4489 8.25 17.25V9.75H0.75C0.551088 9.75 0.360322 9.67098 0.21967 9.53033C0.0790178 9.38968 0 9.19891 0 9C0 8.80109 0.0790178 8.61032 0.21967 8.46967C0.360322 8.32902 0.551088 8.25 0.75 8.25H8.25V0.75C8.25 0.551088 8.32902 0.360322 8.46967 0.21967C8.61032 0.0790178 8.80109 0 9 0C9.19891 0 9.38968 0.0790178 9.53033 0.21967C9.67098 0.360322 9.75 0.551088 9.75 0.75V8.25H17.25C17.4489 8.25 17.6397 8.32902 17.7803 8.46967C17.921 8.61032 18 8.80109 18 9Z' fill='%232B2F33' /%3E%3C/svg%3E") center/contain no-repeat;
  background: #2b2f33;
  transition: all .4s
}

[data-spoller-title].active:after {
  rotate: 180deg;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='2' viewBox='0 0 18 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 0.75C18 0.948912 17.921 1.13968 17.7803 1.28033C17.6397 1.42098 17.4489 1.5 17.25 1.5H0.75C0.551088 1.5 0.360322 1.42098 0.21967 1.28033C0.0790178 1.13968 0 0.948912 0 0.75C0 0.551088 0.0790178 0.360322 0.21967 0.21967C0.360322 0.0790178 0.551088 0 0.75 0H17.25C17.4489 0 17.6397 0.0790178 17.7803 0.21967C17.921 0.360322 18 0.551088 18 0.75Z' fill='%232B2F33' /%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='2' viewBox='0 0 18 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 0.75C18 0.948912 17.921 1.13968 17.7803 1.28033C17.6397 1.42098 17.4489 1.5 17.25 1.5H0.75C0.551088 1.5 0.360322 1.42098 0.21967 1.28033C0.0790178 1.13968 0 0.948912 0 0.75C0 0.551088 0.0790178 0.360322 0.21967 0.21967C0.360322 0.0790178 0.551088 0 0.75 0H17.25C17.4489 0 17.6397 0.0790178 17.7803 0.21967C17.921 0.360322 18 0.551088 18 0.75Z' fill='%232B2F33' /%3E%3C/svg%3E")
}

[data-spoller-title][disabled]:after {
  display: none
}

.text-block {
  text-wrap: pretty
}

.text-block>:last-child {
  margin-bottom: 0
}

.text-block h1,
.text-block h2,
.text-block h3,
.text-block b,
.text-block strong {
  font-weight: 700
}

.text-block h2 {
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.5
}

.text-block h3 {
  margin-bottom: 12px;
  font-weight: 600
}

.text-block h4 {
  margin-bottom: 8px;
  font-weight: 600
}

.text-block p:last-child {
  margin-bottom: 0
}

.text-block ul,
.text-block ol {
  display: grid
}

.text-block ul ul,
.text-block ul ol,
.text-block ol ul,
.text-block ol ol {
  padding-top: 12px
}

.text-block ul li>*,
.text-block ol li>* {
  display: contents
}

.text-block ul>li {
  position: relative
}

.text-block ul>li:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(.5lh - 2px);
  width: 4px;
  height: 4px;
  flex-basis: 4px;
  flex-grow: 0;
  flex-shrink: 0;
  background: #007bff;
  border-radius: 50%
}

.text-block ol {
  list-style: none;
  counter-reset: number
}

.text-block ol>li:before {
  counter-increment: number;
  content: counters(number, ".") ". ";
  font: inherit
}

.text-block ol ol {
  padding-left: 20px
}

.text-block blockquote {
  margin: 0;
  background: #dfe4ec
}

.text-block .table {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden
}

@supports (-moz-appearance:none) {
  .text-block .table {
    scrollbar-color: #3395ff #dfe4ec;
    scrollbar-width: thin
  }
}

.text-block .table::-webkit-scrollbar {
  display: none;
  height: 4px
}

.text-block .table::-webkit-scrollbar-track-piece {
  background: #dfe4ec;
  border-radius: 4px
}

.text-block .table::-webkit-scrollbar-thumb {
  background: #3395ff;
  border-radius: 4px
}

.text-block table {
  width: 100%;
  border-collapse: collapse
}

.text-block table th {
  font-weight: 700;
  text-align: left
}

.text-block table tr>:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px
}

.text-block table tr>:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px
}

.text-block table thead {
  background: #000;
  color: #fff
}

.text-block table tbody tr:nth-child(even) {
  background: #f7fbff
}

.text-block table tbody tr:nth-child(odd) {
  background: #fff
}

.text-block .video {
  max-height: 882px;
  aspect-ratio: auto;
  overflow: hidden;
  cursor: pointer
}

.text-block .video:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(29, 36, 40, .6);
  transition: opacity .3s
}

.text-block .video:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg width='52' height='57' viewBox='0 0 52 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.32 4.32128C1.41002 3.56441 1.67537 2.83898 2.09494 2.20266C2.51452 1.56634 3.07675 1.03667 3.73695 0.655761C4.39714 0.274854 5.13709 0.0532114 5.89798 0.00845545C6.65887 -0.0363005 7.4197 0.0970637 8.12 0.397946C11.66 1.91128 19.5933 5.50795 29.66 11.3179C39.73 17.1313 46.8133 22.2079 49.89 24.5113C52.5167 26.4813 52.5233 30.3879 49.8933 32.3646C46.8467 34.6546 39.85 39.6646 29.66 45.5513C19.46 51.4379 11.62 54.9913 8.11333 56.4846C5.09333 57.7746 1.71333 55.8179 1.32 52.5613C0.860001 48.7546 0 40.1113 0 28.4379C0 16.7713 0.856668 8.13128 1.32 4.32128Z' fill='%23FF9900' /%3E%3C/svg%3E") center/contain no-repeat
}

.text-block .video.is-playing:after,
.text-block .video.is-playing:before {
  display: none
}

.text-block .video:not(.is-playing) video::-webkit-media-controls {
  display: none
}

.text-block mark {
  background: color-mix(in srgb, white 8%, #007bff)
}

[data-splitview] {
  position: relative;
  width: 100%;
  overflow: hidden
}

[data-splitview]:before,
[data-splitview]:after {
  position: absolute;
  z-index: 3;
  padding: 4px 16px;
  border-radius: 40px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, .25);
  background: linear-gradient(180deg, rgba(245, 245, 245, .8) 0, rgba(255, 255, 255, .8) 100%)
}

[data-splitview]:before {
  content: "До"
}

[data-splitview]:after {
  content: "После"
}

[data-splitview-before],
[data-splitview-after] {
  width: 100%
}

[data-splitview-before] picture,
[data-splitview-after] picture {
  display: contents
}

[data-splitview-before] img,
[data-splitview-after] img {
  max-width: none;
  width: 100%;
  display: block;
  -webkit-user-select: none;
  user-select: none
}

[data-splitview-before] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50%;
  height: 100%;
  overflow: hidden
}

[data-splitview-after] {
  display: block
}

[data-splitview-arrow] {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 6;
  height: 100%;
  translate: 50% 0;
  background-color: #fff;
  cursor: ew-resize
}

[data-splitview-arrow]:focus-within:after {
  background: #007bff
}

[data-splitview-arrow] input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none
}

[data-splitview-arrow]:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 48px;
  height: 32px;
  mask: url("data:image/svg+xml,%3Csvg width='44' height='28' viewBox='0 0 44 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.92434 15.5554C0.933992 14.7549 0.933992 13.2451 1.92434 12.4446L11.7428 4.50844C13.0506 3.45129 15 4.38217 15 6.06387L15 21.9361C15 23.6178 13.0506 24.5487 11.7428 23.4916L1.92434 15.5554Z' fill='white' /%3E%3Cpath d='M42.0757 15.5554C43.066 14.7549 43.066 13.2451 42.0757 12.4446L32.2572 4.50844C30.9494 3.45129 29 4.38217 29 6.06387V21.9361C29 23.6178 30.9494 24.5487 32.2572 23.4916L42.0757 15.5554Z' fill='white' /%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='44' height='28' viewBox='0 0 44 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.92434 15.5554C0.933992 14.7549 0.933992 13.2451 1.92434 12.4446L11.7428 4.50844C13.0506 3.45129 15 4.38217 15 6.06387L15 21.9361C15 23.6178 13.0506 24.5487 11.7428 23.4916L1.92434 15.5554Z' fill='white' /%3E%3Cpath d='M42.0757 15.5554C43.066 14.7549 43.066 13.2451 42.0757 12.4446L32.2572 4.50844C30.9494 3.45129 29 4.38217 29 6.06387V21.9361C29 23.6178 30.9494 24.5487 32.2572 23.4916L42.0757 15.5554Z' fill='white' /%3E%3C/svg%3E") center/contain no-repeat;
  background: #fff
}

@property --color-gradient-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #007bff
}

@property --color-gradient-end-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #0cf
}

.button {
  background-image: linear-gradient(90deg, var(--color-gradient-1, #007bff) 0%, var(--color-gradient-end-1, #0cf) 100%);
  transition: --color-gradient-1 .5s, --color-gradient-end-1 .5s
}

.button:focus-visible {
  --color-gradient-1: #0cf;
  --color-gradient-end-1: #007bff
}

@keyframes fadeInTop {
  0% {
    translate: 0 -100%
  }

  to {
    translate: 0 0
  }
}

@keyframes fadeOutTop {
  0% {
    translate: 0 0
  }

  to {
    translate: 0 -200%
  }
}

@keyframes showIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes showOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes pulse {
  0% {
    opacity: 0
  }

  80%,
  to {
    opacity: 1
  }
}

.main {
  padding-bottom: 100px
}

body {
  line-height: 1.5;
  background: linear-gradient(180deg, #f5f5f5 0, #fff 100%)
}

.section {
  padding-block: 60px 140px
}

.section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px
}

.title {
  font-weight: 700
}

.title-2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.5
}

.title-3 {
  font-weight: 600
}

.title-4 {
  font-weight: 600
}

.tel {
  white-space: nowrap
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: .25em 1.25em;
  min-height: 56px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  --icon: url(../img/icons/next.svg)
}

.button:after {
  content: "";
  width: 1em;
  height: 1em;
  mask: var(--icon) center/contain no-repeat;
  -webkit-mask: var(--icon) center/contain no-repeat;
  background: #fff;
  transition: all .4s
}

.button:focus-visible:after {
  translate: 4px 0
}

.button_border {
  position: relative;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all .4s
}

.button_border:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background-image: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none
}

.button_border:after {
  background: linear-gradient(90deg, #007bff 0, #0cf 100%)
}

.button_border.button_gray {
  border: 1px solid #9fabb9;
  background: 0 0
}

.button_border.button_gray:before {
  display: none
}

.button_border.button_gray:after {
  background: #9fabb9
}

.button_white {
  background: #fff;
  color: #2b2f33
}

.button_white:after {
  background: #2b2f33
}

.button_white:focus-visible {
  background: color-mix(in srgb, black 5%, #fff)
}

.social__item {
  display: flex
}

.social__item svg,
.social__item img {
  transition: all .4s
}

.social__item:focus-visible svg,
.social__item:focus-visible img {
  scale: 1.1
}

.form__fields {
  gap: 16px
}

.input,
.textarea {
  width: 100%;
  padding-inline: 20px;
  border-radius: 16px;
  font: inherit
}

.input:user-invalid,
.textarea:user-invalid {
  color: #f03;
  border-color: #f03
}

.input:user-invalid::placeholder,
.textarea:user-invalid::placeholder {
  color: #f03
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(43, 47, 51, .8)
}

.input {
  height: 56px
}

.textarea {
  height: 126px;
  padding-block: 16px
}

.checkbox {
  align-items: center;
  font-size: 14px
}

form.form-dragover {
  position: relative
}

form.form-dragover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 5;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border: 2px dashed #007bff;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, .4);
  transition: background-color .2s, border-color .2s
}

form.form-dragover:after {
  content: "Отпустите мышь, чтобы загрузить файлы";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  padding: 8px 16px;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  pointer-events: none;
  opacity: .9
}

form.form-dragover-error {
  background: #f03
}

form.form-dragover-error:before {
  border-color: #f03;
  background-color: rgba(255, 0, 51, .2)
}

form.form-dragover-error:after {
  content: "Недопустимый тип файла"
}

.input-file {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 16px;
  background: rgba(0, 123, 255, .1);
  transition: all .4s;
  transition: all .4s
}

.input-file:focus-visible {
  background: rgba(0, 123, 255, .2)
}

.input-file input {
  position: absolute;
  inset: 0;
  opacity: 0
}

.input-file-text {
  display: grid;
  justify-items: center;
  align-items: center;
  align-content: center
}

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

.input-file__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2)
}

.input-file__title {
  margin-bottom: 4px;
  font-weight: 700
}

.input-file__text {
  color: rgba(255, 255, 255, .8)
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 11;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, .7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px)
}

.modal_open .modal__content {
  animation: modal-open .4s ease forwards
}

.modal_close .modal__content {
  animation: modal-close .4s ease forwards
}

.modal__dialog {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer
}

.modal__content {
  position: relative;
  width: min(100%, 400px);
  max-height: 90vh;
  padding-right: 9px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  cursor: default;
  transition: all .4s
}

@supports (-moz-appearance:none) {
  .modal__content {
    scrollbar-color: #3395ff #dfe4ec;
    scrollbar-width: thin
  }
}

.modal__content::-webkit-scrollbar {
  width: 4px
}

.modal__content::-webkit-scrollbar-track-piece {
  background-color: #dfe4ec;
  border-radius: 4px
}

.modal__content::-webkit-scrollbar-thumb {
  background-color: #3395ff;
  border-radius: 4px
}

@keyframes modal-open {
  0% {
    opacity: 0;
    translate: 0 -24px
  }

  to {
    opacity: 1;
    translate: 0 0
  }
}

@keyframes modal-close {
  0% {
    opacity: 1;
    translate: 0 0
  }

  to {
    opacity: 0;
    translate: 0 -24px
  }
}

.modal__title {
  line-height: 1.2
}

.modal__form form {
  display: grid;
  justify-content: center;
  grid-template-columns: 100%
}

.modal__form .form__fields {
  gap: 12px
}

.modal-callback .modal__content {
  background: #fff;
  color: #2b2f33
}

.modal-callback .input,
.modal-callback .textarea {
  border: 1px solid #d7dfe8;
  color: #2b2f33;
  background: #fff
}

.modal-callback .input::placeholder,
.modal-callback .textarea::placeholder {
  color: rgba(43, 47, 51, .7)
}

.modal-callback .checkbox {
  color: #2b2f33
}

.modal-callback .checkbox__input:before {
  border-color: #2b2f33
}

.modal-callback .checkbox__input:after {
  background: #2b2f33
}

.modal__close {
  position: absolute;
  z-index: 4;
  display: flex;
  cursor: pointer;
  transition: all .4s
}

.modal__close svg {
  width: 20px;
  height: 20px;
  fill: #dfe4ec
}

.modal__close svg:focus-visible {
  fill: #007bff
}

.modal-thank .modal__content {
  display: grid;
  min-width: 280px;
  justify-items: center;
  background: #fff;
  color: #2b2f33
}

.modal-thank .modal__title,
.modal-thank .modal__subtitle {
  margin: 0
}

.header-main {
  position: relative;
  z-index: 1;
  padding-block: 120px;
  min-height: 900px;
  max-width: 2400px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
  color: #fff
}

.header-main__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  pointer-events: none
}

.header-main__content {
  position: relative;
  z-index: 2
}

.header-main__features {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none
}

.header-main__title {
  margin-bottom: 4px;
  font-weight: 800;
  font-size: 70px;
  line-height: 1.05714
}

.header-main__title span {
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.header-main__subtitle {
  margin-bottom: 40px;
  font-weight: 800;
  font-size: 40px
}

.header-main__text {
  margin-bottom: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7)
}

.header-main__list {
  display: grid;
  gap: 8px;
  margin-bottom: 40px
}

.header-main__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700
}

.header-main__list li svg,
.header-main__list li img {
  width: 20px;
  height: 20px
}

.header-main__button {
  min-width: 274px
}

.header-main__features li {
  position: absolute;
  padding: 16px;
  width: max-content;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1);
  background: rgba(255, 255, 255, .2);
  font-weight: 700;
  pointer-events: none
}

.header-main__features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  translate: -50% -50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 8px solid #2b2f33;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .26);
  box-sizing: content-box
}

/* Десктоп ≥992px: плашки по фону (порядок = «Модули» → Шапка → Преимущества) */
@media (min-width: 992px) {
  .header-main__features li:nth-child(1) {
    top: 6%;
    right: 9%;
    left: auto;
    bottom: auto
  }

  .header-main__features li:nth-child(2) {
    top: 36%;
    right: 20%;
    left: auto;
    bottom: auto
  }

  .header-main__features li:nth-child(3) {
    top: 58%;
    left: 33%;
    right: auto;
    bottom: auto
  }

  .header-main__features li:nth-child(4) {
    top: 32%;
    right: 5%;
    left: auto;
    bottom: auto
  }

  .header-main__features li:nth-child(5) {
    right: 24%;
    bottom: 11%;
    top: auto;
    left: auto
  }
}

@media (min-width: 992px) and (max-width: 1439px) {
  .header-main__features li:nth-child(1) {
    top: 5%;
    right: 7%
  }

  .header-main__features li:nth-child(2) {
    top: 34%;
    right: 16%
  }

  .header-main__features li:nth-child(3) {
    top: 60%;
    left: 36%
  }

  .header-main__features li:nth-child(4) {
    top: 30%;
    right: 4%
  }

  .header-main__features li:nth-child(5) {
    right: 20%;
    bottom: 9%
  }
}

.footer {
  padding-top: 100px;
  padding-bottom: 12px;
  background: #2b2f33;
  color: #fff
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #9fabb9
}

.footer__left {
  display: grid;
  gap: 32px
}

.footer__text {
  max-width: 370px
}

.footer__social {
  display: flex;
  gap: 24px
}

.footer__right {
  display: flex;
  gap: 20px
}

.footer__item {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 235px;
  gap: 12px
}

.footer__item-title {
  margin-bottom: 44px;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.04348
}

.footer__item ul {
  display: grid;
  gap: 12px
}

.footer__item a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: .1lh;
  transition: color .3s, text-decoration-color .3s;
  text-decoration-color: transparent
}

.footer__item a:focus-visible {
  text-decoration-color: currentColor
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px
}

@keyframes fadeInTop {
  0% {
    translate: 0 -100%
  }

  to {
    translate: 0 0
  }
}

@keyframes fadeOutTop {
  0% {
    translate: 0 0
  }

  to {
    translate: 0 -200%
  }
}

@keyframes showIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes showOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes pulse {
  0% {
    opacity: 0
  }

  80%,
  to {
    opacity: 1
  }
}

:root {
  --container-max: 1440px;
  --container-offset: calc(8px + 192 * ((100vw - 375px) / 1545))
}

.container {
  position: relative;
  margin-inline: auto;
  max-width: min(1440px, var(--container-max));
  box-sizing: content-box;
  padding-inline: var(--container-offset)
}

.container-right {
  position: relative;
  width: 100%;
  padding-left: var(--container-offset);
  padding-right: 0
}

:root {
  --active: #007bff;
  --text: #2b2f33
}

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

a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 0
}

html {
  display: flex;
  flex-direction: column;
  min-height: 100%
}

html:not(.loaded) [data-da*=header__mobile],
html:not(.loaded) ._dynamic_adapt_,
html:not(.loaded) .sub-menu-wrapper {
  position: absolute;
  opacity: 0
}

html:not(.loaded) .header {
  opacity: 0
}

html:not(.loaded) [data-lines] {
  opacity: 0
}

html.safari {
  -webkit-text-size-adjust: 100%
}

html.safari input,
html.safari textarea {
  font-size: 16px !important
}

html.safari input {
  -webkit-appearance: none;
  appearance: none
}

@supports not (-webkit-hyphens:none) {
  body {
    padding-right: 0 !important
  }
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
  font-family: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  color: #2b2f33;
  -webkit-tap-highlight-color: transparent;
  overflow-x: clip
}

body.no-scroll {
  overflow-y: hidden
}

.wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-x: clip
}

.main {
  flex: 1
}

html,
body,
.header__mobile {
  scrollbar-gutter: stable
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
figure,
fieldset,
iframe {
  margin: 0;
  padding: 0
}

button,
a {
  cursor: pointer;
  color: inherit
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #007bff;
  outline-offset: 8px;
  border-radius: 16px;
  z-index: 20
}

li {
  padding: 0;
  color: inherit;
  list-style: none
}

button {
  padding: 0;
  border: 0;
  background: 0 0
}

a {
  text-decoration: none
}

strong,
a,
button,
li {
  font: inherit
}

input,
textarea {
  border: 0;
  background: 0 0;
  text-decoration: none;
  color: inherit;
  font-family: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-appearance: none;
  appearance: none
}

input::placeholder,
textarea::placeholder {
  font: inherit;
  color: inherit
}

input:focus-visible,
textarea:focus-visible,
[role=combobox]:focus-visible {
  outline: 1px solid #007bff
}

textarea {
  resize: none;
  max-height: 100%;
  padding-right: 9px;
  overflow-y: auto;
  overflow-x: hidden
}

@supports (-moz-appearance:none) {
  textarea {
    scrollbar-color: #3395ff #dfe4ec;
    scrollbar-width: thin
  }
}

textarea::-webkit-scrollbar {
  width: 4px
}

textarea::-webkit-scrollbar-track-piece {
  background-color: #dfe4ec;
  border-radius: 4px
}

textarea::-webkit-scrollbar-thumb {
  background-color: #3395ff;
  border-radius: 4px
}

@supports (-webkit-hyphens:none) {
  input {
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px !important
  }
}

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

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

input[type=submit],
input[type=button] {
  cursor: pointer
}

img {
  max-width: 100%;
  object-fit: contain
}

picture {
  display: flex;
  justify-content: center
}

picture img {
  height: 100%
}

svg {
  max-height: 100%;
  transition: all .4s
}

sup {
  font-size: .5em
}

[data-digits-counter] {
  display: inline-block;
  white-space: nowrap
}

[data-lines] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden
}

[data-lines].active {
  -webkit-line-clamp: unset;
  overflow: visible
}

.form__fields {
  display: grid
}

.logo {
  display: flex
}

.submit,
.menu li,
a,
.tel {
  transition: color .3s, background .3s, opacity .3s, text-decoration-color .3s
}

.menu li {
  position: relative;
  z-index: 2
}

.menu-item:not(.menu-item-has-children) .menu-item-arrow {
  display: none
}

.link-button {
  display: inline-flex;
  justify-content: center;
  align-items: center
}

.hover-translate {
  transition: translate .4s
}

.hover-translate:focus-visible {
  translate: 0 -3px
}

.hover-scale {
  transition: all .4s
}

.hover-scale [class*=-img] {
  overflow: hidden
}

.hover-scale [class*=-img] img {
  transition: .4s ease-in
}

.hover-scale:focus-visible [class*=-img] img {
  scale: 1.02
}

.hover-icon img,
.hover-icon svg {
  transition: all .4s
}

.hover-icon:focus-visible img,
.hover-icon:focus-visible svg {
  scale: 1.08
}

.underline {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: .1lh;
  transition: color .3s, text-decoration-color .3s
}

.underline:focus-visible {
  text-decoration-color: transparent
}

.hover-underline {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: .1lh;
  transition: color .3s, text-decoration-color .3s;
  text-decoration-color: transparent
}

.hover-underline:focus-visible {
  text-decoration-color: currentColor
}

[hidden] {
  display: none !important
}

[data-scrolling] * {
  -webkit-user-select: none;
  user-select: none
}

.flex {
  display: flex
}

.flex-wrap {
  flex-wrap: wrap
}

.col,
.grid {
  display: grid;
  grid-template-columns: 100%;
  justify-items: start
}

.justify-center {
  justify-content: center;
  justify-items: center
}

.justify-end {
  justify-content: end
}

.justify-start {
  justify-items: start
}

.justify-between {
  width: 100%;
  justify-content: space-between
}

.align-center {
  align-items: center
}

.align-start {
  align-items: start;
  align-content: start
}

.align-end {
  align-items: end;
  align-content: end
}

.hidd {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s ease, opacity .4s ease
}

.hidd.show {
  max-height: 500px;
  opacity: 1
}

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

.about {
  position: relative;
  background: #fff
}

.about:after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: 0;
  width: calc(100% - 80px);
  height: 100%;
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 20px;
  pointer-events: none
}

.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 49.34%;
  align-items: center
}

.about__images {
  position: relative;
  display: flex;
  justify-content: flex-start
}

.about__img {
  border-radius: 16px
}

.about__img-2 {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #fff;
  border-radius: 16px
}

.about__img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px
}

.about__title {
  margin-bottom: 32px
}

.about__item {
  display: grid;
  gap: 16px;
  border-top: 1px solid rgba(43, 47, 51, .1)
}

.about__item-title {
  font-weight: 700;
  font-size: 23px
}

.application {
  background: linear-gradient(180deg, #f5f5f5 0, #fff 100%);
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 20px
}

.application:has(.application-tooltip__item-circle:hover) [data-splitview-arrow] {
  z-index: 2
}

.application:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 20px
}

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

.application__img {
  height: min(90vh, 900px);
  object-fit: cover
}

.application__button {
  width: 100%;
  margin-top: 40px
}

.application-tooltip {
  position: absolute;
  left: 20px;
  top: 50px;
  z-index: 3;
  width: calc(100% - 40px);
  height: calc(100% - 100px);
  display: grid;
  align-items: start;
  align-content: start;
  justify-items: start;
  gap: 12px
}

.application-tooltip:has(.application-tooltip__item:hover) .application-tooltip__item:not(:hover) {
  z-index: 2
}

.application-tooltip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none
}

.application-tooltip__item:nth-child(-n+5) {
  position: absolute;
  z-index: 3
}

.application-tooltip__item_reverse {
  flex-direction: row-reverse
}

.application-tooltip__item_reverse .application-tooltip__item-text:after {
  left: auto;
  right: 0;
  translate: 100% -50%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  -moz-transform: scale(.9999);
  border-width: 6px 0 6px 5px;
  border-color: transparent transparent transparent #fff
}

.application-tooltip__item-circle {
  position: relative;
  z-index: 6;
  flex: 0 0 24px;
  height: 24px;
  position: relative;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto
}

.application-tooltip__item-circle:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background-image: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none
}

.application-tooltip__item-circle:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, .15), 0 0 0 0 rgba(0, 204, 255, .15), 0 0 0 0 rgba(0, 123, 255, .05);
  animation: pulse-waves 1.8s infinite linear
}

@keyframes pulse-waves {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, .15), 0 0 0 0 rgba(0, 204, 255, .15), 0 0 0 0 rgba(0, 123, 255, .05)
  }

  25% {
    box-shadow: 0 0 0 4px rgba(0, 123, 255, .15), 0 0 0 0 rgba(0, 204, 255, .15), 0 0 0 0 rgba(0, 123, 255, .05)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 123, 255, .1), 0 0 0 4px rgba(0, 204, 255, .15), 0 0 0 0 rgba(0, 123, 255, .05)
  }

  75% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, .05), 0 0 0 8px rgba(0, 204, 255, .1), 0 0 0 4px rgba(0, 123, 255, .05)
  }

  to {
    box-shadow: 0 0 0 10px transparent, 0 0 0 8px transparent, 0 0 0 4px transparent
  }
}

.application-tooltip__item-circle:hover+.application-tooltip__item-text {
  opacity: 1;
  pointer-events: auto;
  translate: 0 0;
  z-index: 7
}

.application-tooltip__item.active .application-tooltip__item-text {
  opacity: 1;
  pointer-events: auto;
  translate: 0 0;
  z-index: 7
}

.application-tooltip__item-text {
  position: relative;
  max-width: 260px;
  padding: 8px 12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .25);
  background: rgba(255, 255, 255, .8);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.38462;
  translate: 4px 0;
  opacity: 0;
  pointer-events: none;
  transition: all .3s
}

.application-tooltip__item-text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: -100% -50%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  -moz-transform: scale(.9999);
  border-width: 6px 5px 6px 0;
  border-color: transparent #fff transparent transparent
}

.application-tooltip__item:nth-child(1) {
  top: -1%;
  right: 8.5%
}

.application-tooltip__item:nth-child(2) {
  top: 13%;
  right: 25%
}

.application-tooltip__item:nth-child(3) {
  top: 24%;
  right: 4%
}

.application-tooltip__item:nth-child(4) {
  top: 37%;
  right: 15.5%
}

.application-tooltip__item:nth-child(5) {
  top: 45.5%;
  right: 40%
}

.application-big__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start
}

.application-big__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.application-big__item {
  position: relative;
  z-index: 1;
  min-height: 120px;
  display: grid;
  align-items: end;
  border-radius: 16px;
  border: 1px solid rgba(43, 47, 51, .1);
  overflow: hidden
}

.application-big__item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .7);
  pointer-events: none
}

.application-big__item-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.application-big__item-text {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fff;
  border-radius: 16px;
  font-weight: 700
}

.application-big__item-text:before {
  content: "";
  flex: 0 0 30px;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.375 14.6875C29.375 14.9361 29.2762 15.1746 29.1004 15.3504C28.9246 15.5262 28.6861 15.625 28.4375 15.625H15.625V28.4375C15.625 28.6861 15.5262 28.9246 15.3504 29.1004C15.1746 29.2762 14.9361 29.375 14.6875 29.375C14.4389 29.375 14.2004 29.2762 14.0246 29.1004C13.8488 28.9246 13.75 28.6861 13.75 28.4375V15.625H0.9375C0.68886 15.625 0.450403 15.5262 0.274587 15.3504C0.0987719 15.1746 0 14.9361 0 14.6875C0 14.4389 0.0987719 14.2004 0.274587 14.0246C0.450403 13.8488 0.68886 13.75 0.9375 13.75H13.75V0.9375C13.75 0.68886 13.8488 0.450403 14.0246 0.274587C14.2004 0.0987719 14.4389 0 14.6875 0C14.9361 0 15.1746 0.0987719 15.3504 0.274587C15.5262 0.450403 15.625 0.68886 15.625 0.9375V13.75H28.4375C28.6861 13.75 28.9246 13.8488 29.1004 14.0246C29.2762 14.2004 29.375 14.4389 29.375 14.6875Z' fill='url(%23paint0_linear_1_3220)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1_3220' x1='0' y1='14.6875' x2='29.375' y2='14.6875' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23007BFF' /%3E%3Cstop offset='1' stop-color='%2300CCFF' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat
}

.application-big__images {
  display: flex;
  border-radius: 16px;
  overflow: hidden
}

.application-big__images:after,
.application-big__images:before {
  top: 16px;
  padding-inline: 12px;
  font-size: 14px
}

.application-big__images:before {
  left: 16px
}

.application-big__images:after {
  right: 16px
}

.application-big__image {
  aspect-ratio: 750/560
}

.application-big__image img {
  object-fit: cover
}

.application-big__button {
  width: 100%;
  margin-top: 40px
}

.calc__top {
  display: grid;
  gap: 12px;
  margin-bottom: 60px
}

.calc__content {
  display: grid;
  gap: 40px;
  padding: 60px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 20px
}

.calc__step {
  display: none;
  opacity: 0;
  translate: 0 20px
}

.calc__step.is-active {
  display: block;
  animation: showStep .4s linear forwards
}

@keyframes showStep {
  0% {
    opacity: 0;
    translate: 0 12px
  }

  to {
    opacity: 1;
    translate: 0 0
  }
}

.calc__step.is-error .calc__option-title {
  color: #f03
}

.calc__step-title {
  margin-bottom: 40px;
  font-size: 23px;
  font-weight: 700
}

.calc__progress {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.calc__progress-item {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1
}

.calc__progress-item:last-child {
  flex: 0
}

.calc__progress-item:last-child__progress-line {
  display: none
}

.calc__progress-item.is-active .calc__progress-circle {
  border: 0;
  position: relative
}

.calc__progress-item.is-active .calc__progress-circle:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background-image: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none
}

.calc__progress-item.is-active .calc__progress-circle:after {
  background: linear-gradient(90deg, #007bff 0, #0cf 100%)
}

.calc__progress-item.is-completed .calc__progress-circle {
  border: 0;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%)
}

.calc__progress-item.is-completed .calc__progress-circle:after {
  background: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6L4.33333 9.33333L12.6667 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E") center/contain no-repeat
}

.calc__progress-item.is-completed .calc__progress-line {
  background: linear-gradient(90deg, #007bff 0, #0cf 100%)
}

.calc__progress-circle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #9fabb9
}

.calc__progress-circle:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 10px;
  height: 10px;
  background: #d7dfe8;
  border-radius: 50%
}

.calc__progress-line {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 2px;
  translate: -50% 0;
  background-color: #d1d5db;
  transform: translateY(-50%);
  transition: all .4s
}

.calc__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px
}

.calc__option {
  display: grid;
  gap: 16px
}

.calc__option-img {
  position: relative;
  display: flex;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  overflow: hidden;
  position: relative
}

.calc__option-img:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  background-image: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none
}

.calc__option-img:before {
  opacity: 0
}

.calc__option-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(43, 47, 51, .4);
  transition: all .4s
}

.calc__option-img img {
  aspect-ratio: 360/240;
  width: 100%;
  object-fit: cover
}

.calc__option-title {
  font-size: 16px;
  font-weight: 700
}

.calc__option-input {
  position: absolute
}

.calc__option-input:checked+.calc__option-img:after {
  opacity: 0
}

.calc__option-input:checked+.calc__option-img:before {
  opacity: 1
}

.calc__nav {
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.calc__nav-buttons {
  display: flex;
  align-items: center;
  gap: 8px
}

.calc__next {
  min-width: 178px
}

.calc__prev:focus-visible:after {
  translate: 0 0 !important
}

.calc__step-count {
  align-self: flex-end;
  color: #9fabb9
}

.calc__form .input,
.calc__form .textarea {
  border: 1px solid #d7dfe8;
  color: #9fabb9
}

.calc__form .input::placeholder,
.calc__form .textarea::placeholder {
  opacity: .8
}

.calc__form .checkbox__input:before {
  border-color: #2b2f33
}

.calc__form .checkbox__input:after {
  background: #2b2f33
}

.calc__result {
  display: grid;
  justify-items: center;
  grid-template-columns: 100%;
  align-content: center;
  min-height: min(632px, 50vh)
}

.calc__result-title {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.04348
}

.calc__result-price {
  font-weight: 800;
  font-size: 40px;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.calc__result-text {
  margin-bottom: 40px;
  font-size: 14px;
  opacity: .61
}

.calc__result-cost {
  display: grid;
  gap: 20px
}

.calc__result-cost span {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700
}

.calc__result-cost span:after,
.calc__result-cost span:before {
  content: "";
  width: 105px;
  height: 1px;
  background: rgba(43, 47, 51, .4)
}

.calc__social {
  display: flex;
  align-items: center;
  gap: 12px
}

.calc__social .social__item {
  width: 143px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(43, 47, 51, .4);
  border-radius: 12px
}

.callback {
  position: relative;
  color: #fff
}

.callback__img {
  position: absolute;
  left: -40px;
  bottom: -40px
}

.callback__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto
}

.callback__wrapper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  translate: -50% 0;
  pointer-events: none;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: 20px
}

.callback__title {
  margin-bottom: 12px
}

.callback__form {
  position: relative;
  z-index: 2;
  padding: 32px;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 16px
}

.callback__form .input,
.callback__form .textarea {
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff
}

.callback__form .input::placeholder,
.callback__form .textarea::placeholder {
  color: rgba(255, 255, 255, .8)
}

.callback__form .checkbox:not(:last-child) {
  margin-bottom: -4px
}

.callback__form .textarea {
  margin-bottom: 8px
}

.cost__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(505px, 49.09%);
  align-items: start;
  margin-inline: auto;
  padding-block: 60px;
  color: #fff;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: 20px;
  overflow: hidden
}

.cost__left {
  display: grid;
  align-items: start;
  gap: 12px
}

.cost__title {
  line-height: 1
}

.cost__form {
  padding: 32px;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 16px
}

.cost__form .input,
.cost__form .textarea {
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff
}

.cost__form .input::placeholder,
.cost__form .textarea::placeholder {
  color: rgba(255, 255, 255, .8)
}

.cost__form .checkbox:not(:last-child) {
  margin-bottom: -4px
}

.cost__form .textarea {
  margin-bottom: 8px
}

.cost__img {
  position: absolute;
  left: -20px;
  bottom: -20px;
  z-index: -1;
  pointer-events: none;
  object-position: left bottom
}

.case__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.case__item {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 16px;
  overflow: hidden
}

.case__item [data-splitview]:before,
.case__item [data-splitview]:after {
  top: 16px;
  font-size: 14px
}

.case__item [data-splitview]:before {
  left: 16px
}

.case__item [data-splitview]:after {
  right: 16px
}

.case__item-content {
  display: grid;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 0 21px 0 rgba(0, 0, 0, .08);
  background: linear-gradient(180deg, #f5f5f5 0, #fff 100%)
}

.case__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.case__item-title {
  font-weight: 700;
  font-size: 23px;
  line-height: 1.04348
}

.case__item-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.42857
}

.case__item-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-weight: 700
}

.case__item-info li {
  display: flex;
  align-items: center;
  gap: 8px
}

.case__item-info li:not(:last-child) {
  padding-right: 16px;
  border-right: 1px solid #2b2f33
}

.case__item-info li svg {
  max-width: 17px;
  max-height: 17px
}

.case__item-text {
  position: relative;
  color: rgba(43, 47, 51, .8);
  text-indent: 40px
}

.case__item-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 25px;
  background: url("data:image/svg+xml,%3Csvg width='31' height='25' viewBox='0 0 31 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.28' d='M13.3606 0V7.5175C13.3606 12.2378 12.2545 16.0839 10.0423 19.056C7.77183 22.0863 4.42442 24.0676 0 25V19.3182C1.97935 18.852 3.55118 17.9779 4.7155 16.6958C5.87981 15.472 6.63662 13.986 6.98592 12.2378H1.74648V0H13.3606ZM31 0V7.5175C31 12.2378 29.8939 16.0839 27.6817 19.056C25.4113 22.0863 22.093 24.0676 17.7268 25V19.3182C19.7061 18.852 21.2779 17.9779 22.4423 16.6958C23.6066 15.472 24.3634 13.986 24.7127 12.2378H19.4732V0H31Z' fill='url(%23paint0_linear_1_3268)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1_3268' x1='0' y1='12.5' x2='31' y2='12.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23007BFF' /%3E%3Cstop offset='1' stop-color='%2300CCFF' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") center/contain no-repeat
}

.case__top {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px
}

.case__subtitle {
  margin: 0;
  max-width: 720px;
  color: rgba(43, 47, 51, .7)
}

.case__button {
  width: 100%;
  margin-top: 40px
}

.case__body--compact {
  width: max-content;
  max-width: 100%;
  margin-inline: auto
}

.case__body--compact .case__wrapper {
  width: max-content;
  max-width: none;
  margin-inline: auto;
  grid-template-columns: repeat(var(--case-count, 1), minmax(0, 1fr))
}

.case__body--compact .case__button {
  width: 100%;
  box-sizing: border-box
}

.section.contact,
#contact.section.contact {
  margin-top: clamp(16px, 2vw, 28px);
  padding-top: clamp(8px, 1.2vw, 16px)
}

.section.contact .contact__top {
  margin-bottom: clamp(20px, 2.5vw, 36px)
}

.contact__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.contact__left {
  display: grid;
  grid-template-columns: 1fr 31.53%;
  gap: 32px;
  align-items: start;
  padding-block: 84px;
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 16px
}

.contact__items {
  display: grid;
  gap: 32px
}

.contact__item {
  display: grid;
  gap: 8px
}

.contact__item-label {
  color: #9fabb9
}

.contact__item-content {
  font-weight: 700
}

.contact__social {
  display: grid;
  gap: 32px
}

.contact__social .social__item {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 12px 4px;
  font-weight: 700
}

.contact__map {
  min-height: 320px;
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 16px
}

.faq__wrapper {
  display: grid;
  grid-template-columns: 1fr minmax(400px, 29.8%);
  gap: 60px
}

.faq__items {
  display: grid;
  gap: 20px
}

.faq__item {
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 16px
}

.faq__item-title {
  padding: 27px 20px;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(0);
  text-align: left;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
  transition: all .4s
}

.faq__item-title:after {
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  filter: brightness(0)
}

.faq__item-title:focus-visible {
  filter: none
}

.faq__item-title:focus-visible:after {
  filter: none
}

.faq__item-text {
  padding: 0 27px 27px
}

.faq-consultation {
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  align-content: center;
  padding: 60px 32px;
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 16px;
  text-align: center
}

.faq-consultation__icon {
  margin-bottom: 60px;
  width: 112px;
  height: 122px
}

.faq-consultation__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.04348
}

.faq-consultation__text {
  margin-bottom: 60px;
  max-width: 330px
}

.faq-consultation__button {
  width: 100%
}

.features__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(30%, 260px), 1fr));
  gap: 20px
}

.features__item {
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 40px 24px;
  gap: 12px;
  min-height: 200px;
  border-radius: 16px;
  text-align: center
}

.features__item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center
}

.features__item-label {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #fff
}

.features__item-text {
  font-weight: 700;
  color: #fff
}

.measure {
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 20px;
  background: #fff
}

.measure__wrapper {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 1fr;
  gap: 32px
}

.measure__title {
  margin-bottom: 12px
}

.measure__subtitle {
  margin-bottom: 60px
}

.measure__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px
}

.measure__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  min-height: 56px;
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 12px
}

.measure__item.active {
  border: 0;
  position: relative
}

.measure__item.active:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background-image: linear-gradient(90deg, #007bff 0, #0cf 100%);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none
}

.measure__item.active .measure__item-icon {
  background: linear-gradient(90deg, #007bff 0, #0cf 100%)
}

.measure__item.active .measure__item-text {
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.measure__item-icon {
  width: 20px;
  height: 20px;
  mask: var(--icon) center/contain no-repeat;
  -webkit-mask: var(--icon) center/contain no-repeat;
  background: #2b2f33
}

.measure__button {
  min-width: 365px;
  min-height: 56px
}

.measure__img {
  height: 100%;
  max-height: 620px;
  border-radius: 16px;
  object-fit: cover
}

.price__top {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
  text-align: center
}

.price__subtitle {
  font-weight: 700;
  font-size: 23px;
  line-height: 1.04348
}

.price__content {
  max-width: 1006px;
  margin-inline: auto
}

.price__table {
  padding: 20px 32px 40px;
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 16px;
  background: #fff
}

.price__table table td,
.price__table table th {
  width: 50%;
  padding: 28px 20px;
  text-align: center
}

.price__table tbody {
  font-weight: 700;
  font-size: 23px;
  line-height: 1.04348
}

.price__table tfoot {
  max-width: 740px;
  padding-top: 28px;
  color: rgba(43, 47, 51, .7)
}

.price__button {
  width: 100%;
  margin-top: 40px
}

.services__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(30%, 260px), 1fr));
  gap: 20px;
  align-items: start
}

.services__item {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 370px;
  border-radius: 16px;
  overflow: hidden
}

.services__item--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer
}

.services__item--link:visited {
  color: inherit
}

.services__item:focus-visible .services__item-img {
  scale: 1.02
}

.services__item-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s
}

.services__item-content {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(43, 47, 51, .4)
}

.services__item-title {
  padding: 16px;
  font-weight: 700;
  color: #fff
}

.types {
  position: relative;
  overflow: hidden
}

.types__top {
  position: relative;
  z-index: 2
}

.types__title {
  color: #fff
}

.types__navigation svg {
  fill: #fff
}

.types__wrapper {
  display: grid;
  grid-auto-flow: column;
  gap: 20px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-block: 12px;
  margin-block: -12px
}

@supports (-moz-appearance:none) {
  .types__wrapper {
    scrollbar-color: #3395ff #dfe4ec;
    scrollbar-width: thin
  }
}

.types__wrapper::-webkit-scrollbar {
  display: none;
  height: 4px
}

.types__wrapper::-webkit-scrollbar-track-piece {
  background: #dfe4ec;
  border-radius: 4px
}

.types__wrapper::-webkit-scrollbar-thumb {
  background: #3395ff;
  border-radius: 4px
}

.types__container {
  padding-inline: 0
}

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

.types__content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #007bff 0, #0cf 100%);
  pointer-events: none
}

.types__slider {
  position: relative
}

.types__slider .swiper-wrapper {
  display: grid;
  grid-auto-flow: column
}

.types__slider .swiper-slide {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 0
}

.types__item {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 0;
  align-content: start;
  height: 100%;
  align-items: start;
  padding: 32px 16px;
  border: 1px solid rgba(43, 47, 51, .1);
  border-radius: 16px;
  background: #fff;
  color: #2b2f33;
  scroll-snap-align: start
}

.types__item-title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.04348
}

.types__item-text {
  margin-bottom: 40px
}

.types__item-img {
  margin-bottom: 30px
}

.types__item-button {
  margin-top: auto
}

@media (min-width:576px) {
  .show-xs {
    display: none
  }

  .show-xs.swiper-pagination,
  .show-xs.swiper-navigation {
    display: none
  }

  .services__navigation {
    display: none
  }
}

@media (min-width:768px) {
  .show-sm {
    display: none
  }

  .show-sm.swiper-pagination,
  .show-sm.swiper-navigation {
    display: none
  }

  .cost {
    padding-bottom: 80px
  }
}

@media (min-width:992px) {
  .header__contacts>:not(:last-child):not(.header__button) {
    padding-right: 12px
  }

  .show-md {
    display: none
  }

  .show-md.swiper-pagination,
  .show-md.swiper-navigation {
    display: none
  }
}

@media (min-width:1200px) {
  .menu-link {
    display: none
  }

  .show-lg {
    display: none
  }

  .show-lg.swiper-pagination,
  .show-lg.swiper-navigation {
    display: none
  }
}

@media (min-width:1440px) {
  .crumbs {
    column-gap: 36px
  }

  .crumbs {
    font-size: 16px
  }

  .crumbs li:not(:last-child):before {
    right: -18px
  }

  .text-block h3 {
    font-size: 28px
  }

  .text-block h4 {
    font-size: 24px
  }

  .text-block p:not(:has(+ul, +ol)) {
    margin-bottom: 20px
  }

  .text-block ul,
  .text-block ol {
    gap: 16px
  }

  .text-block ul:not(:first-child),
  .text-block ol:not(:first-child) {
    padding-top: 16px
  }

  .text-block ul:not(:last-child),
  .text-block ol:not(:last-child) {
    padding-bottom: 16px
  }

  .text-block ul>li {
    padding-left: 20px
  }

  .text-block blockquote {
    padding: 40px
  }

  .text-block blockquote {
    font-size: 20px
  }

  .text-block .video {
    border-radius: 20px
  }

  .text-block .video {
    margin-bottom: 20px
  }

  .text-block .video:after {
    width: 51px
  }

  .text-block .video:after {
    height: 56px
  }

  .text-block img {
    border-radius: 20px
  }

  [data-splitview]:before,
  [data-splitview]:after {
    top: 24px
  }

  [data-splitview]:before {
    left: 24px
  }

  [data-splitview]:after {
    right: 24px
  }

  [data-splitview-arrow] {
    width: 4px
  }

  .title {
    font-size: 48px
  }

  .title-3 {
    font-size: 28px
  }

  .title-4 {
    font-size: 24px
  }

  .input-file-text {
    min-height: 232px
  }

  .modal__content {
    padding-block: 32px
  }

  .modal__content {
    padding-inline: 32px
  }

  .modal__title {
    margin-bottom: 16px
  }

  .modal__title {
    font-size: 28px
  }

  .modal__close {
    right: 16px
  }

  .modal__close {
    top: 16px
  }

  .modal-thank .modal__content {
    gap: 20px
  }

  .modal-thank img {
    width: 100px
  }

  .modal-thank img {
    height: 100px
  }

  .flex {
    gap: 16px
  }

  .grid {
    gap: 16px
  }

  .show-xl {
    display: none
  }

  .show-xl.swiper-pagination,
  .show-xl.swiper-navigation {
    display: none
  }

  .about__wrapper {
    gap: round(clamp(min(68px, 44px), -28px + 5vw, max(68px, 44px)), 1px)
  }

  .about__img {
    width: round(clamp(min(595px, 480px), 135px + 23.9583333333vw, max(595px, 480px)), 1px)
  }

  .about__img-2 {
    width: round(clamp(min(275px, 220px), 55px + 11.4583333333vw, max(275px, 220px)), 1px)
  }

  .about__img-2 {
    height: round(clamp(min(264px, 220px), 88px + 9.1666666667vw, max(264px, 220px)), 1px)
  }

  .about__text {
    margin-bottom: round(clamp(min(60px, 30px), -60px + 6.25vw, max(60px, 30px)), 1px)
  }

  .about__item {
    padding-block: round(clamp(min(32px, 26px), 8px + 1.25vw, max(32px, 26px)), 1px)
  }

  .application-big__item:nth-child(2) {
    grid-row: span 2;
    min-height: 420px
  }

  .application-big__item:nth-child(4) {
    grid-column: 1/-1
  }

  .callback__wrapper {
    gap: 124px
  }

  .callback__wrapper {
    padding: 40px
  }

  .callback__form {
    width: round(clamp(min(620px, 480px), 60px + 29.1666666667vw, max(620px, 480px)), 1px)
  }

  .cost__wrapper {
    gap: 90px
  }

  .cost__wrapper {
    padding-inline: round(clamp(min(128px, 40px), -224px + 18.3333333333vw, max(128px, 40px)), 1px)
  }

  .cost__img {
    width: round(clamp(min(834px, 720px), 378px + 23.75vw, max(834px, 720px)), 1px)
  }

  .cost__img {
    height: round(clamp(min(560px, 504px), 336px + 11.6666666667vw, max(560px, 504px)), 1px)
  }

  .contact__left {
    padding-inline: round(clamp(min(80px, 32px), -112px + 10vw, max(80px, 32px)), 1px)
  }

  .features__item-text {
    font-size: round(clamp(min(23px, 16px), -5px + 1.4583333333vw, max(23px, 16px)), 1px)
  }

  .services__item {
    min-height: round(clamp(min(370px, 263px), -58px + 22.2916666667vw, max(370px, 263px)), 1px)
  }

  .services__item-title {
    font-size: round(clamp(min(23px, 16px), -5px + 1.4583333333vw, max(23px, 16px)), 1px)
  }

  .types__content {
    padding: 40px
  }
}

@media (min-width:1921px) {
  .container-right {
    padding-left: calc((100vw - var(--container-max))/2)
  }

  .callback__img {
    width: 795px
  }

  .callback__img {
    height: 375px
  }
}

@media (max-width:1920px) {
  .callback__img {
    width: calc(424px + 371*((100vw - 375px)/1545))
  }

  .callback__img {
    height: calc(200px + 175*((100vw - 375px)/1545))
  }
}

@media (max-width:1439px) {
  .crumbs {
    column-gap: round(clamp(min(36px, 24px), 21.0873786408px + .7766990291vw, max(36px, 24px)), 1px)
  }

  .crumbs {
    font-size: round(clamp(min(16px, 14px), 13.5145631068px + .1294498382vw, max(16px, 14px)), 1px)
  }

  .crumbs li:not(:last-child):before {
    right: round(clamp(min(-18px, -12px), -10.5436893204px + -.3883495146vw, max(-18px, -12px)), 1px)
  }

  .text-block h3 {
    font-size: round(clamp(min(28px, 20px), 18.0582524272px + .5177993528vw, max(28px, 20px)), 1px)
  }

  .text-block h4 {
    font-size: round(clamp(min(24px, 16px), 14.0582524272px + .5177993528vw, max(24px, 16px)), 1px)
  }

  .text-block p:not(:has(+ul, +ol)) {
    margin-bottom: round(clamp(min(20px, 12px), 10.0582524272px + .5177993528vw, max(20px, 12px)), 1px)
  }

  .text-block ul,
  .text-block ol {
    gap: round(clamp(min(16px, 12px), 11.0291262136px + .2588996764vw, max(16px, 12px)), 1px)
  }

  .text-block ul:not(:first-child),
  .text-block ol:not(:first-child) {
    padding-top: round(clamp(min(16px, 12px), 11.0291262136px + .2588996764vw, max(16px, 12px)), 1px)
  }

  .text-block ul:not(:last-child),
  .text-block ol:not(:last-child) {
    padding-bottom: round(clamp(min(16px, 12px), 11.0291262136px + .2588996764vw, max(16px, 12px)), 1px)
  }

  .text-block ul>li {
    padding-left: round(clamp(min(20px, 16px), 15.0291262136px + .2588996764vw, max(20px, 16px)), 1px)
  }

  .text-block blockquote {
    padding: round(clamp(min(40px, 16px), 10.1747572816px + 1.5533980583vw, max(40px, 16px)), 1px)
  }

  .text-block blockquote {
    font-size: round(clamp(min(20px, 16px), 15.0291262136px + .2588996764vw, max(20px, 16px)), 1px)
  }

  .text-block .video {
    border-radius: round(clamp(min(20px, 16px), 15.0291262136px + .2588996764vw, max(20px, 16px)), 1px)
  }

  .text-block .video {
    margin-bottom: round(clamp(min(20px, 16px), 15.0291262136px + .2588996764vw, max(20px, 16px)), 1px)
  }

  .text-block .video:after {
    width: round(clamp(min(51px, 32px), 27.3883495146px + 1.2297734628vw, max(51px, 32px)), 1px)
  }

  .text-block .video:after {
    height: round(clamp(min(56px, 36px), 31.145631068px + 1.2944983819vw, max(56px, 36px)), 1px)
  }

  .text-block img {
    border-radius: round(clamp(min(20px, 16px), 15.0291262136px + .2588996764vw, max(20px, 16px)), 1px)
  }

  [data-splitview]:before,
  [data-splitview]:after {
    top: round(clamp(min(24px, 16px), 14.0582524272px + .5177993528vw, max(24px, 16px)), 1px)
  }

  [data-splitview]:before {
    left: round(clamp(min(24px, 12px), 9.0873786408px + .7766990291vw, max(24px, 12px)), 1px)
  }

  [data-splitview]:after {
    right: round(clamp(min(24px, 12px), 9.0873786408px + .7766990291vw, max(24px, 12px)), 1px)
  }

  [data-splitview-arrow] {
    width: round(clamp(min(4px, 2px), 1.5145631068px + .1294498382vw, max(4px, 2px)), 1px)
  }

  .section {
    padding-bottom: 100px
  }

  .title {
    font-size: round(clamp(min(48px, 32px), 28.1165048544px + 1.0355987055vw, max(48px, 32px)), 1px)
  }

  .title-3 {
    font-size: round(clamp(min(28px, 20px), 18.0582524272px + .5177993528vw, max(28px, 20px)), 1px)
  }

  .title-4 {
    font-size: round(clamp(min(24px, 16px), 14.0582524272px + .5177993528vw, max(24px, 16px)), 1px)
  }

  .input-file-text {
    min-height: round(clamp(min(232px, 224px), 222.0582524272px + .5177993528vw, max(232px, 224px)), 1px)
  }

  .modal__content {
    padding-block: round(clamp(min(32px, 20px), 17.0873786408px + .7766990291vw, max(32px, 20px)), 1px)
  }

  .modal__content {
    padding-inline: round(clamp(min(32px, 16px), 12.1165048544px + 1.0355987055vw, max(32px, 16px)), 1px)
  }

  .modal__title {
    margin-bottom: round(clamp(min(16px, 12px), 11.0291262136px + .2588996764vw, max(16px, 12px)), 1px)
  }

  .modal__title {
    font-size: round(clamp(min(28px, 24px), 23.0291262136px + .2588996764vw, max(28px, 24px)), 1px)
  }

  .modal__close {
    right: round(clamp(min(16px, 12px), 11.0291262136px + .2588996764vw, max(16px, 12px)), 1px)
  }

  .modal__close {
    top: round(clamp(min(16px, 12px), 11.0291262136px + .2588996764vw, max(16px, 12px)), 1px)
  }

  .modal-thank .modal__content {
    gap: round(clamp(min(20px, 12px), 10.0582524272px + .5177993528vw, max(20px, 12px)), 1px)
  }

  .modal-thank img {
    width: round(clamp(min(100px, 60px), 50.2912621359px + 2.5889967638vw, max(100px, 60px)), 1px)
  }

  .modal-thank img {
    height: round(clamp(min(100px, 60px), 50.2912621359px + 2.5889967638vw, max(100px, 60px)), 1px)
  }

  .header-main {
    min-height: 844px
  }

  .footer {
    padding-block: 80px 64px
  }

  .container {
    padding-inline: 100px
  }

  .flex {
    gap: round(clamp(min(16px, 12px), 11.0291262136px + .2588996764vw, max(16px, 12px)), 1px)
  }

  .grid {
    gap: round(clamp(min(16px, 12px), 11.0291262136px + .2588996764vw, max(16px, 12px)), 1px)
  }

  .hide-xl {
    display: none
  }

  .hide-xl.swiper-pagination,
  .hide-xl.swiper-navigation {
    display: none
  }

  .about__wrapper {
    gap: 44px
  }

  .about__img {
    width: 480px
  }

  .about__img-2 {
    width: 220px
  }

  .about__img-2 {
    height: 220px
  }

  .about__text {
    margin-bottom: 30px
  }

  .about__item {
    padding-block: 26px
  }

  .about__wrapper {
    grid-template-columns: auto 48.87%
  }

  .about:after {
    max-width: 100%
  }

  .application__img {
    height: min(90vh, 700px)
  }

  .application-big__items {
    grid-template-columns: 100%
  }

  .application-big__item {
    min-height: 88px
  }

  .application-big__item:after {
    display: none
  }

  .application-big__item-img {
    filter: opacity(.29)
  }

  .application-big__item-text {
    height: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, .8)
  }

  .callback__wrapper {
    gap: round(clamp(min(124px, 20px), -5.2427184466px + 6.7313915858vw, max(124px, 20px)), 1px)
  }

  .callback__wrapper {
    padding: round(clamp(min(40px, 20px), 15.145631068px + 1.2944983819vw, max(40px, 20px)), 1px)
  }

  .callback__form {
    width: 480px
  }

  .callback:after {
    width: calc(100% - 40px)
  }

  .callback__wrapper {
    gap: 44px
  }

  .callback__img {
    width: round(clamp(min(728.7px, 208.2px), 24.7531015038px + 48.9191729323vw, max(728.7px, 208.2px)), 1px);
    height: round(clamp(min(334.6px, 95.6px), 11.3659774436px + 22.462406015vw, max(334.6px, 95.6px)), 1px)
  }

  .cost__wrapper {
    gap: round(clamp(min(90px, 40px), 27.8640776699px + 3.2362459547vw, max(90px, 40px)), 1px)
  }

  .cost__wrapper {
    padding-inline: 40px
  }

  .cost__img {
    width: 720px
  }

  .cost__img {
    height: 504px
  }

  .contact__left {
    padding-inline: 32px
  }

  .contact__left {
    grid-template-columns: repeat(2, auto)
  }

  .types__content {
    padding: round(clamp(min(40px, 20px), 15.145631068px + 1.2944983819vw, max(40px, 20px)), 1px)
  }
}

@media (max-width:1300px) {
  .types__item-button span {
    display: none
  }
}

@media (max-width:1199px) {
  .header__mobile {
    position: fixed;
    right: -100vw;
    top: var(--headerFixedHeight);
    z-index: 5;
    display: grid;
    grid-template-columns: 100%;
    justify-items: start;
    align-content: start;
    gap: 20px;
    width: min(500px, 101vw);
    padding: 40px 20px 40px;
    background: #fff;
    border-radius: 0 0 0 20px;
    opacity: 0;
    transition: right .3s, opacity .3s;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none
  }

  @supports (-moz-appearance:none) {
    .header__mobile {
      scrollbar-color: #3395ff #dfe4ec;
      scrollbar-width: thin
    }
  }

  .header__mobile::-webkit-scrollbar {
    width: 4px
  }

  .header__mobile::-webkit-scrollbar-track-piece {
    background-color: #dfe4ec;
    border-radius: 4px
  }

  .header__mobile::-webkit-scrollbar-thumb {
    background-color: #3395ff;
    border-radius: 4px
  }

  .header__mobile.active {
    right: 0;
    opacity: 1;
    pointer-events: auto
  }

  .header__nav {
    width: 100%
  }

  .header__menu {
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
    width: 100%
  }

  .header__contacts>:not(:last-child):not(.header__button):after {
    display: none
  }

  .footer {
    padding-block: 40px
  }

  .footer__top {
    flex-direction: column-reverse;
    gap: 44px;
    margin-bottom: 12px;
    padding-bottom: 12px
  }

  .footer__left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
  }

  .footer__logo img {
    width: round(clamp(min(218px, 164px), 139.4247572816px + 6.5533980583vw, max(218px, 164px)), 1px);
    height: round(clamp(min(42px, 32px), 27.4490291262px + 1.213592233vw, max(42px, 32px)), 1px)
  }

  .footer__text {
    display: none
  }

  .footer__right {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%
  }

  .footer__item {
    min-width: auto
  }

  .footer__item:first-child {
    text-align: right
  }

  .footer__item-title {
    margin-bottom: 12px
  }

  .footer__social {
    gap: round(clamp(min(12px, 4px), .359223301px + .9708737864vw, max(12px, 4px)), 1px)
  }

  .container {
    padding-inline: 40px
  }

  .hide-lg {
    display: none
  }

  .hide-lg.swiper-pagination,
  .hide-lg.swiper-navigation {
    display: none
  }

  .about:after {
    left: 0;
    width: 100%;
    translate: 0 0
  }

  .about__wrapper {
    grid-template-columns: 100%;
    gap: 32px
  }

  .about__left {
    max-width: 700px
  }

  .about__right {
    display: contents
  }

  .about__title {
    margin-bottom: 0;
    order: -2
  }

  .about__text {
    margin-bottom: 0;
    order: -1
  }

  .about__images picture {
    display: contents
  }

  .about__img {
    width: 82%
  }

  .about__img-2 {
    top: 47%;
    width: round(clamp(min(400px, 156px), 44.9563106796px + 29.6116504854vw, max(400px, 156px)), 1px);
    aspect-ratio: 1;
    height: auto
  }

  .about__item {
    padding-block: 20px
  }

  .cost__wrapper {
    grid-template-columns: 100%;
    gap: 0;
    padding-inline: round(clamp(min(40px, 8px), -6.5631067961px + 3.8834951456vw, max(40px, 8px)), 1px)
  }

  .cost__subtitle {
    max-width: 560px
  }

  .cost__left {
    margin-bottom: 60px
  }

  .cost__form {
    padding-inline: round(clamp(min(32px, 12px), 2.8980582524px + 2.427184466vw, max(32px, 12px)), 1px)
  }

  .cost__img {
    position: static;
    width: 100%;
    margin-top: 10px;
    margin-bottom: -60px;
    height: auto;
    scale: 1.07
  }

  .faq__wrapper {
    grid-template-columns: 100%;
    gap: 40px
  }

  .faq-consultation {
    padding: 40px 32px
  }

  .faq-consultation__icon {
    width: 65px;
    height: 70px;
    margin-bottom: 32px
  }

  .faq-consultation__title {
    margin-bottom: 8px
  }

  .faq-consultation__text {
    margin-bottom: 32px
  }

  .measure__wrapper {
    grid-template-columns: 100%;
    justify-items: start;
    gap: 0
  }

  .measure__left {
    display: contents
  }

  .measure__title {
    order: -2
  }

  .measure__subtitle {
    margin-bottom: 40px;
    order: -2
  }

  .measure__right {
    order: -1;
    width: 100%;
    margin-bottom: 40px
  }

  .measure__img {
    width: 100%
  }

  .types:after {
    width: 100%;
    margin: 0
  }
}

@media (max-width:991px) {
  .main {
    padding-bottom: 60px
  }

  .section {
    padding-block: 40px 60px
  }

  .section__top {
    margin-bottom: 40px
  }

  .header-main {
    padding-block: 114px
  }

  .header-main__features li {
    padding: 8px 12px;
    font-size: 14px
  }

  .header-main__features li:nth-child(1) {
    top: 6%;
    right: 8%;
    left: auto;
    bottom: auto
  }

  .header-main__features li:nth-child(2) {
    top: 48%;
    right: 4%;
    left: auto;
    bottom: auto
  }

  .header-main__features li:nth-child(3) {
    top: auto;
    bottom: 6%;
    left: 12%;
    right: auto
  }

  .header-main__features li:nth-child(4) {
    top: 22%;
    right: 6%;
    left: auto;
    bottom: auto
  }

  .header-main__features li:nth-child(5) {
    right: 5%;
    bottom: 18%;
    top: auto;
    left: auto
  }

  .hide-md {
    display: none
  }

  .hide-md.swiper-pagination,
  .hide-md.swiper-navigation {
    display: none
  }

  .application__images:before,
  .application__images:after {
    padding: 4px 8px;
    top: 12px;
    border-radius: 4px;
    font-size: 14px
  }

  .application__images:before {
    left: 12px
  }

  .application__images:after {
    right: 12px
  }

  .application__img {
    height: min(90vh, 400px)
  }

  .application-tooltip__item:nth-child(-n+5) {
    flex-direction: row-reverse
  }

  .application-tooltip__item:nth-child(1) {
    top: 3.5%;
    right: 6.5%
  }

  .application-tooltip__item:nth-child(2) {
    top: -6.5%;
    right: 41%
  }

  .application-tooltip__item:nth-child(3) {
    top: 7%;
    right: 33%
  }

  .application-tooltip__item:nth-child(4) {
    top: 22.5%;
    right: 17%
  }

  .application-tooltip__item:nth-child(5) {
    top: 43%;
    right: 39%
  }

  .application-tooltip__item-text:after {
    left: auto;
    right: 0;
    translate: 100% -50%;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    -moz-transform: scale(.9999);
    border-width: 6px 0 6px 5px;
    border-color: transparent transparent transparent #fff
  }

  .application-big__wrapper {
    grid-template-columns: 100%
  }

  .application-big__images {
    order: -1;
    max-height: round(clamp(min(394px, 220px), 114.0746753247px + 28.2467532468vw, max(394px, 220px)), 1px)
  }

  .application-big__images picture {
    width: 100%
  }

  .application-big__button {
    margin-top: 20px
  }

  .callback {
    padding-bottom: 0;
    background: linear-gradient(90deg, #007bff 0, #0cf 100%);
    border-radius: 20px;
    margin-inline: 8px
  }

  .callback:after {
    display: none
  }

  .callback__wrapper {
    grid-template-columns: 100%;
    gap: 32px
  }

  .callback__form {
    width: 100%
  }

  .callback__img {
    position: static;
    width: 100%;
    height: auto
  }

  .case__wrapper {
    grid-template-columns: 100%
  }

  .contact__wrapper {
    grid-template-columns: 100%
  }

  .contact__left {
    grid-template-columns: 1fr minmax(200px, auto);
    gap: 20px;
    padding-block: round(clamp(min(56px, 20px), -1.9155844156px + 5.8441558442vw, max(56px, 20px)), 1px);
    padding-inline: round(clamp(min(20px, 12px), 7.1298701299px + 1.2987012987vw, max(20px, 12px)), 1px)
  }

  .contact__map {
    min-height: round(clamp(min(320px, 268px), 236.3441558442px + 8.4415584416vw, max(320px, 268px)), 1px)
  }

  .contact__items,
  .contact__social {
    gap: 20px
  }

  .services__wrapper {
    grid-template-columns: repeat(2, 1fr)
  }

  .types__slider .swiper-slide {
    width: min(365px, 100vw - 16px)
  }

  .types-container {
    overflow: visible;
    padding-right: 20px
  }

  .types:after {
    margin: 0
  }
}

@media (max-width:767px) {
  .header__tel {
    font-size: 14px
  }

  .header .container {
    padding-inline: 20px
  }

  .header-main {
    padding-block: 120px;
    min-height: round(clamp(min(960px, 600px), 255.612244898px + 91.8367346939vw, max(960px, 600px)), 1px)
  }

  .header-main__title {
    font-size: round(clamp(min(70px, 40px), 11.3010204082px + 7.6530612245vw, max(70px, 40px)), 1px)
  }

  .header-main__subtitle {
    font-size: round(clamp(min(40px, 23px), 6.737244898px + 4.3367346939vw, max(40px, 23px)), 1px)
  }

  .hide-sm {
    display: none
  }

  .hide-sm.swiper-pagination,
  .hide-sm.swiper-navigation {
    display: none
  }

  .calc__top {
    margin-bottom: 40px
  }

  .calc__content {
    padding: 32px 40px;
    gap: 32px
  }

  .calc__options {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
  }

  .calc__option {
    gap: 8px
  }

  .calc__step-title {
    margin-bottom: 32px
  }

  .calc__form .textarea {
    min-height: 310px
  }

  .features__item {
    min-height: 140px;
    padding: 28px;
    gap: 16px
  }

  .measure__img {
    max-height: round(clamp(min(400px, 240px), 86.9387755102px + 40.8163265306vw, max(400px, 240px)), 1px)
  }

  .measure__list {
    margin-bottom: 40px
  }

  .measure__button {
    min-width: auto;
    width: 100%
  }

  .types__item-img {
    max-height: 200px;
    margin-inline: auto
  }
}

@media (max-width:575px) {
  .arrow svg {
    width: 26px
  }

  .text-block h2 {
    font-size: 26px
  }

  .main {
    padding-bottom: 40px
  }

  .section {
    padding-bottom: 40px
  }

  .section__top {
    margin-bottom: 20px
  }

  .title-2 {
    font-size: 26px
  }

  .button {
    min-height: 48px
  }

  .form__fields {
    gap: 12px
  }

  .input {
    height: 48px
  }

  .modal__dialog {
    max-width: 100%;
    padding: 0 12px;
    margin-inline: auto
  }

  .header {
    padding-block: 8px
  }

  .header .container {
    padding-inline: 8px
  }

  .header__logo img {
    flex: 0 0 32px;
    height: 32px
  }

  .header__button {
    min-height: 32px
  }

  .header-main__content {
    padding-inline: 8px
  }

  .header-main__features {
    display: none
  }

  .footer__item-title {
    font-size: 16px
  }

  .container {
    padding-inline: round(clamp(min(20px, 8px), -14.5px + 6vw, max(20px, 8px)), 1px)
  }

  .hide-xs {
    display: none
  }

  .hide-xs.swiper-pagination,
  .hide-xs.swiper-navigation {
    display: none
  }

  .about__img {
    width: 78%
  }

  .about__item {
    padding-block: 12px
  }

  .application__img {
    height: min(90vh, 260px)
  }

  .application-tooltip {
    display: none
  }

  .application-big__items {
    gap: 12px
  }

  .calc__result {
    min-height: min(396px, 40vh)
  }

  .calc__content {
    padding: 20px 8px;
    gap: 20px
  }

  .calc__options {
    grid-template-columns: 100%;
    gap: 12px
  }

  .calc__option {
    padding: 8px;
    border: 1px solid rgba(43, 47, 51, .1);
    border-radius: 12px
  }

  .calc__option-img {
    max-height: 120px
  }

  .calc__step-title {
    margin-bottom: 16px
  }

  .calc__step[data-step="3"] .calc__option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px
  }

  .calc__step[data-step="3"] .calc__option-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(43, 47, 51, .1);
    border-radius: 4px
  }

  .calc__step[data-step="3"] .calc__option-img img {
    max-width: 90%;
    max-height: 90%
  }

  .calc__step[data-step="3"] .calc__option-img:after {
    display: none
  }

  .calc__next {
    min-width: auto
  }

  .calc__result {
    text-align: center
  }

  .calc__result-title,
  .calc__result-text {
    margin-bottom: 32px;
    text-wrap: balance
  }

  .calc__result-price {
    font-size: 26px
  }

  .calc__result-cost span:after,
  .calc__result-cost span:before {
    width: round(clamp(min(105px, 38px), -87.625px + 33.5vw, max(105px, 38px)), 1px)
  }

  .calc__social .social__item {
    width: auto;
    flex: 1
  }

  .callback__wrapper {
    padding: 60px 8px 0;
    gap: 32px
  }

  .callback__form {
    padding: 20px 12px
  }

  .callback__title,
  .callback__subtitle {
    text-align: center
  }

  .callback__title {
    line-height: 1
  }

  .callback__img {
    scale: 1.1
  }

  .cost__left {
    margin-bottom: 20px;
    text-align: center
  }

  .cost__wrapper {
    margin-inline: -8px
  }

  .case__button {
    margin-top: 20px
  }

  .case__item-content {
    padding: 16px 12px;
    gap: 16px
  }

  .case__item-title {
    font-size: 16px
  }

  .contact {
    padding-top: 0
  }

  .contact__left {
    grid-template-columns: 100%
  }

  .contact__social {
    display: flex;
    gap: 16px 20px;
    flex-wrap: wrap
  }

  .contact__social .social__item {
    gap: 4px;
    padding: 0
  }

  .contact__social .social__item svg {
    max-width: 24px;
    max-height: 24px
  }

  .contact__item-label {
    font-size: 14px
  }

  .faq__wrapper {
    gap: 20px
  }

  .faq__items {
    gap: 12px
  }

  .faq__item-title {
    padding: 16px 12px;
    font-size: 16px
  }

  .faq__item-text {
    padding: 0 12px 16px
  }

  .faq-consultation {
    padding: 28px 8px
  }

  .faq-consultation__text {
    margin-bottom: 20px;
    padding-top: 18px
  }

  .features__wrapper {
    gap: 12px
  }

  .measure__title,
  .measure__subtitle {
    width: 100%;
    text-align: center
  }

  .measure__subtitle {
    text-wrap: balance
  }

  .measure__right,
  .measure__list {
    margin-bottom: 20px
  }

  .measure__list {
    gap: 12px
  }

  .measure__item {
    width: 100%;
    font-size: 14px
  }

  .price__top {
    margin-bottom: 32px
  }

  .price__subtitle {
    font-size: 16px;
    font-weight: 400
  }

  .price__text {
    font-size: 14px
  }

  .price__table {
    padding: 12px
  }

  .price__table table td,
  .price__table table th {
    padding: 16px 8px;
    font-size: 16px
  }

  .price__table table tfoot td {
    font-size: 14px
  }

  .price__button {
    margin-top: 20px
  }

  .services .container {
    width: auto;
    padding: 0;
    padding-left: round(clamp(min(20px, 8px), -14.5px + 6vw, max(20px, 8px)), 1px)
  }

  .services__top {
    padding-right: round(clamp(min(20px, 8px), -14.5px + 6vw, max(20px, 8px)), 1px)
  }

  .services__wrapper {
    display: flex;
    gap: 12px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth
  }

  @supports (-moz-appearance:none) {
    .services__wrapper {
      scrollbar-color: #3395ff #dfe4ec;
      scrollbar-width: thin
    }
  }

  .services__wrapper::-webkit-scrollbar {
    display: none;
    height: 4px
  }

  .services__wrapper::-webkit-scrollbar-track-piece {
    background: #dfe4ec;
    border-radius: 4px
  }

  .services__wrapper::-webkit-scrollbar-thumb {
    background: #3395ff;
    border-radius: 4px
  }

  .services__item {
    flex: 0 0 auto;
    min-width: 264px;
    min-height: 200px;
    scroll-snap-align: start
  }

  .types__content {
    padding-inline: 8px
  }

  .types__slider .swiper-slide {
    width: min(320px, 100vw - 16px)
  }
}

@media (max-width:1439px) and (min-width:992px) {

  .header__left,
  .header__menu {
    gap: round(clamp(min(40px, 20px), -24.384787472px + 4.4742729306vw, max(40px, 20px)), 1px)
  }

  .header__left,
  .header__menu {
    font-size: round(clamp(min(16px, 14px), 9.5615212528px + .4474272931vw, max(16px, 14px)), 1px)
  }

  .header .container {
    padding-inline: round(clamp(min(40px, 32px), 14.2460850112px + 1.7897091723vw, max(40px, 32px)), 1px)
  }

  .header__contacts {
    gap: round(clamp(min(12px, 8px), -.8769574944px + .8948545861vw, max(12px, 8px)), 1px)
  }

  .header__contacts>:not(:last-child):not(.header__button) {
    padding-right: round(clamp(min(12px, 8px), -.8769574944px + .8948545861vw, max(12px, 8px)), 1px)
  }
}

@media (max-width:1199px) and (min-width:992px) {
  .header__contacts {
    gap: round(clamp(min(12px, 8px), -.8769574944px + .8948545861vw, max(12px, 8px)), 1px)
  }
}

@media (min-width:576px) and (max-width:1199px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-wrap: balance
  }
}

@media (max-width:1439px) and (min-width:991px) {
  .services__item {
    min-height: round(clamp(min(263px, 220px), 124.8816964286px + 9.5982142857vw, max(263px, 220px)), 1px)
  }
}

@media (max-width:991px) and (min-width:575px) {
  .services__item {
    min-height: round(clamp(min(263px, 220px), 160.5649038462px + 10.3365384615vw, max(263px, 220px)), 1px)
  }
}

@media (any-hover:hover) {
  .crumbs li:not(:last-child):hover {
    color: #007bff
  }

  .crumbs li:not(:last-child):hover:before {
    color: #dfe4ec
  }

  .button:hover {
    --color-gradient-1: #0cf;
    --color-gradient-end-1: #007bff
  }

  .button:hover:after {
    translate: 4px 0
  }

  .button_white:hover {
    background: color-mix(in srgb, black 5%, #fff)
  }

  .social__item:hover svg,
  .social__item:hover img {
    scale: 1.1
  }

  .input-file:hover {
    background: rgba(0, 123, 255, .2)
  }

  .modal__close svg:hover {
    fill: #007bff
  }

  .header__menu>li>a:hover {
    text-decoration-color: currentColor
  }

  .header__tel:hover {
    text-decoration-color: currentColor
  }

  .footer__item a:hover {
    text-decoration-color: currentColor
  }

  .hover-active:hover {
    color: #007bff
  }

  .hover-translate:hover {
    translate: 0 -3px
  }

  .hover-scale:hover [class*=-img] img {
    scale: 1.02
  }

  .hover-icon:hover img,
  .hover-icon:hover svg {
    scale: 1.08
  }

  .underline:hover {
    text-decoration-color: transparent
  }

  .hover-underline:hover {
    text-decoration-color: currentColor
  }

  .calc__prev:hover:after {
    translate: 0 0 !important
  }

  .faq__item-title:hover {
    filter: none
  }

  .faq__item-title:hover:after {
    filter: none
  }

  .services__item:hover .services__item-img {
    scale: 1.02
  }
}

.breadcrumbs {
  padding: clamp(20px, 2.2vw, 36px) 0 clamp(8px, 1vw, 12px);
  font-size: 13px;
  line-height: 1.4;
  color: #9a9a9a
}

.breadcrumbs + .section.header-main {
  padding-top: clamp(12px, 1.5vw, 24px)
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.breadcrumbs__item:not(:last-child)::after {
  content: "→";
  color: #c4c4c4;
  font-size: 12px;
  line-height: 1
}

.breadcrumbs__link {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease
}

.breadcrumbs__link:hover {
  color: #0096d9
}

.breadcrumbs__current {
  color: #7a7a7a
}
