/* reset styles */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

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

body {
  overflow-x: hidden;
}

body.lock {
  overflow-y: hidden;
}

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

textarea {
  resize: none;
}

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

input::-moz-placeholder {
  color: rgba(55, 55, 55, 0.3);
}

input::-webkit-input-placeholder {
  color: rgba(55, 55, 55, 0.3);
}

textarea::-moz-placeholder {
  color: rgba(55, 55, 55, 0.3);
}

textarea::-webkit-input-placeholder {
  color: rgba(55, 55, 55, 0.3);
}

button {
  cursor: pointer;
  background-color: transparent;
}

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

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

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

picture {
  display: block;
}

/* glob */
body {
  font-family: "Inter", sans-serif;
  color: #373737;
  min-width: 320px;
}

main {
  min-height: 100vh;
}

.container {
  max-width: 1408px;
  padding: 0 4px;
  margin: 0 auto;
}

.container-1280 {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 8px;
}

.main-container {
  padding: 100px 60px 0;
}

.page-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 120%;
  color: #fff;
  margin-bottom: 40px;
}

.page-title:last-child {
  margin-bottom: 0;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-right: 48px;
  margin-bottom: 16px;
}

.section-top::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-top: 1px solid #21a1ca;
  border-right: 1px solid #21a1ca;
}

.section-top:last-child {
  margin-bottom: 0;
}

.section-top_mb-40 {
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 120%;
}

.section-top .section-title {
  margin-bottom: 0;
}

.section-descr {
  position: relative;
  padding-right: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
}

.section-descr:last-child {
  margin-bottom: 0;
}

.section-descr::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 1px;
  background-color: #21a1ca;
}

.grid-3-36-48 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}

.grid-3-16-48 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 48px;
}

.grid-4-48-48 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.btn {
  position: relative;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #3bddf3 -39.85%, #004e96 131.08%);
  box-shadow: 0px 8px 40px 0px rgba(0, 58, 103, 0.3);
  overflow: hidden;
}

.btn::after {
  content: "";
  background: linear-gradient(
      0deg,
      rgba(75, 201, 255, 0.3) 0%,
      rgba(75, 201, 255, 0.3) 100%
    ),
    linear-gradient(180deg, #3bddf3 -39.85%, #004e96 131.08%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn:active::after {
  opacity: 1;
}

.btn__text {
  position: relative;
  z-index: 10;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 140%;
  pointer-events: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.btn:active .btn__text {
  opacity: 0.5;
}

.btn__icon {
  position: relative;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.btn:active .btn__icon {
  opacity: 0.5;
}

.btn-send {
  position: relative;
  padding: 22px 38px;
  border-radius: 4px;
  background: linear-gradient(180deg, #61ce6c -39.85%, #00b412 131.08%);
  overflow: hidden;
}

.btn-send::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      0deg,
      rgba(0, 255, 25, 0.3) 0%,
      rgba(0, 255, 25, 0.3) 100%
    ),
    linear-gradient(180deg, #61ce6c -39.85%, #00b412 131.08%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-send:active::after {
  opacity: 1;
}

.btn-send__text {
  position: relative;
  z-index: 10;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 140%;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.btn-send:active .btn-send__text {
  opacity: 0.5;
}

.slider-wrapper {
  position: relative;
}

.slider-btn {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 72px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.slider-btn:active {
  background-color: #f6f6f6 !important;
}

.slider-btn_prev {
  left: 0;
}

.slider-btn_next {
  right: 0;
}

.slider-btn svg {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.slider-btn:active svg {
  opacity: 0.5 !important;
}

.decor-item {
  position: relative;
}

.decor-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 48px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='385' viewBox='0 0 16 385' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_128_1640)'%3E%3Cpath d='M8 1L8 15' stroke='%2321A1CA' stroke-linecap='round'/%3E%3Cpath d='M15 8H1' stroke='%2321A1CA' stroke-linecap='round'/%3E%3C/g%3E%3Cpath d='M8 21L8.00002 384' stroke='%23E0E0E0' stroke-linecap='round' stroke-dasharray='8 8'/%3E%3Cdefs%3E%3CclipPath id='clip0_128_1640'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: repeat-y;
  background-position: top center;
}

.decor-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 48px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='385' viewBox='0 0 16 385' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_128_1640)'%3E%3Cpath d='M8 1L8 15' stroke='%2321A1CA' stroke-linecap='round'/%3E%3Cpath d='M15 8H1' stroke='%2321A1CA' stroke-linecap='round'/%3E%3C/g%3E%3Cpath d='M8 21L8.00002 384' stroke='%23E0E0E0' stroke-linecap='round' stroke-dasharray='8 8'/%3E%3Cdefs%3E%3CclipPath id='clip0_128_1640'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: repeat-y;
  background-position: top center;
}

.section-offset {
  margin-bottom: 100px;
}

.content-body p {
  color: rgb(55, 55, 55);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 16px;
}

.content-body p:last-child {
  margin-bottom: 0;
}

.form-select-data {
  position: relative;
  border-radius: 4px;
  margin-bottom: 20px;
}

.form-select-data:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.data-select {
  padding: 27px 16px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.data-select__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.data-select__item:last-child {
  margin-bottom: 0;
}

.data-select__preview {
  display: flex;
  align-items: center;
  gap: 8px;
}

.data-select__text {
  background: linear-gradient(180deg, #3bddf3 -39.85%, #004e96 131.08%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  white-space: nowrap;
}

.data-select__text_decor {
  position: relative;
}

.data-select__text_decor::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(
    270deg,
    rgb(240, 245, 255) 45.045%,
    rgba(240, 245, 255, 0) 100%
  );
  transition: opacity 0.2s ease;
}

.form-field {
  display: grid;
  position: relative;
  margin-bottom: 24px;
}

.form-field:last-child {
  margin-bottom: 0;
}

.form-field__title {
  color: rgb(55, 55, 55);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 8px;
}

.form-field__input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  min-height: 48px;
}

textarea.form-field__input {
  height: 160px;
}

.checbox-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  margin-bottom: 16px;
}

.checkbox__inner {
  border: 2px solid rgb(59, 221, 243);
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
}

.checkbox__text {
  color: rgb(0, 58, 103);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.checkbox__text-link {
  color: rgb(0, 58, 103);
  text-decoration-line: underline;
}

.checkbox__inner svg {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.checkbox__input:checked + .checkbox__inner svg {
  opacity: 1;
}

.choices {
  margin-bottom: 0;
}

.choices__inner {
  border: initial !important;
  background-color: #fff;
  border-radius: 4px !important;
  padding: 10px 60px 10px 20px !important;
  min-height: 48px;
  border: 1px solid rgb(224, 224, 224) !important;
}

.form-select-data.active .choices__inner {
  border: 1px solid rgb(0, 58, 103) !important;
  transition: border-color 0.2s ease;
  overflow: initial !important;
}

.form-select-data.active .choices {
  overflow: initial !important;
}

.form-select-data.active .choices.is-open .choices__inner {
  border: 1px solid rgb(224, 224, 224) !important;
}

.choices.is-open .choices__inner {
  border-radius: 6px 6px 0 0 !important;
}

.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 3px;
  transition: background-color 0.2s ease;
}

.choices[data-type*="select-one"] .choices__input {
  border: initial !important;
  border-bottom: 1px solid rgb(224, 224, 224) !important;
}

.choices__item {
  color: rgb(55, 55, 55);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.choices .choices__list {
  padding: 0;
  z-index: 15;
}

.choices[data-type*="select-one"]::after {
  border: none;
  width: 14px;
  height: 8px;
  background-image: url("../img/icons/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  right: 20px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.choices[data-type*="select-one"].is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.choices[data-type*="select-one"].is-open::after {
  margin-top: 0;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  background-color: #fff;
  border: 1px solid rgb(224, 224, 224) !important;
}

.choices__list--dropdown .choices__item--selectable::after,
.choices__list[aria-expanded] .choices__item--selectable::after {
  display: none;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f0f5ff;
  color: rgb(0, 58, 103);
}

.choices__list--dropdown .choices__item--selectable,
.choices__list[aria-expanded] .choices__item--selectable {
  padding: 3px 40px 3px 16px;
}

.choices__list--dropdown .choices__item.is-selected {
  display: none;
}

.choices__list--dropdown .choices__item:last-child {
  border-bottom: none;
}

.choices__list--dropdown {
  border: initial !important;
  border-radius: 6px !important;
}

.choices.is-open .choices__list--dropdown {
  border-radius: 0 0 6px 6px !important;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  border-bottom: 1px solid rgb(224, 224, 224) !important;
  color: rgb(0, 58, 103);
  padding: 11px 60px 11px 20px !important;
  transition: background-color 0.2s ease;
}

.choices__list--dropdown .choices__item:last-child,
.choices__list[aria-expanded] .choices__item:last-child {
  border-bottom: initial !important;
}

.choices.is-open {
  background-color: #ecf2f9;
  border-radius: 6px 6px 0 0 !important;
}

.accor-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.accor-open-decor {
  flex: 0 0 44px;
  transition: transform 0.2s ease;
}

.accor.active .accor-open-decor {
  transform: rotate(180deg);
}

.hover-opacity-05 {
  transition: opacity 0.2s ease;
}

.link {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(33, 161, 202, 1);
  transition: color 0.2s ease;
}

.link:active {
  color: rgba(33, 161, 202, 0.5) !important;
}

.animation-circle {
  position: relative;
}

.animation-circle::before,
.animation-circle::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid rgb(0, 194, 255);
  pointer-events: none;
}

.animation-circle::before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}

.animation-circle::after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }

  75% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0.2;
  }

  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 20px;
}

.popup__content {
  max-width: 800px;
  width: 100%;
  position: relative;
  background-color: #fff;
}

.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 100;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup__content .callback__wrapper {
  padding: 48px 56px;
}

.popup .block-decor_right::before {
  border: initial;
}

.just-validate-error-label {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 13px;
  margin-top: 5px;
  line-height: 120%;
  color: red !important;
}

.response-popup .callback__wrapper {
  grid-template-columns: initial;
}

.response-popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.response-popup__title {
  color: rgb(0, 58, 103);
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 16px;
}

.response-popup__descr {
  max-width: 460px;
  color: rgb(0, 58, 103);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  margin-bottom: 16px;
}

.response-popup__img {
  margin-bottom: 32px;
}

.response-popup__close {
  padding: 16px 20px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: rgb(0, 58, 103);
  min-width: 240px;
}

.region-popup .popup__content {
  padding: 48px;
  pointer-events: all;
}

.region-popup__title {
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: #003a67;
  margin-bottom: 16px;
}

.region-popup__descr {
  font-size: 16px;
  line-height: 23px;
  color: #003a67;
}

.region-popup__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.region-popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.region-popup__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.region-popup__btn {
  min-height: 48px;
}

.not-found-block__text {
  text-align: center;
  font-size: 24px;
  line-height: 120%;
}

/* header */
.header {
  min-width: 320px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.2s ease, box-shadow, border-radius 0.2s ease;
}

.header.fixed {
  position: fixed;
  background-color: #fff;
  box-shadow: 0px 10px 50px -10px rgba(89, 89, 89, 0.1);
  border-radius: 0px 0px 4px 4px;
}

.header__wrapper {
  padding: 26px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #fff;
  box-shadow: 0px 10px 50px -10px rgba(89, 89, 89, 0.1);
  border-radius: 0px 0px 4px 4px;
}

.header__dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-grow: 1;
}

.header.fixed .header__wrapper {
  box-shadow: initial;
}

.header__info {
  display: flex;
  flex-grow: 1;
  gap: 8px;
}

.header__city {
  display: flex;
  gap: 4px;
  flex-direction: column;
  text-transform: uppercase;
}

.header__city-text {
  position: relative;
  font-size: 16pt;
  font-weight: 900;
  line-height: 27px;
  background: linear-gradient(180deg, #3bddf3 2.24%, #004e96 100.86%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__city-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(180deg, #3bddf3 -39.85%, #004e96 131.08%);
}

.header__city-region {
  font-size: 10pt;
  line-height: 12px;
  background: linear-gradient(180deg, #3bddf3 2.24%, #004e96 100.86%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: start;
}

.menu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.menu__link {
  color: #003a67;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  transition: color 0.2s ease;
}

.menu__link:active {
  color: rgba(33, 161, 202, 0.5) !important;
}

.connection {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.connection__phone-wrapper {
  position: relative;
}

.connection-phone {
  position: relative;
  padding: 7px;
  border-radius: 4px;
  background-color: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f5ff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s ease;
}

.connection__phone-wrapper .connection-phone {
  width: 100%;
}

.connection-phone:active::after {
  opacity: 0;
}

.connection-phone:active {
  border-color: #21a1ca !important;
}

.connection-phone__text {
  pointer-events: none;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  background: linear-gradient(180deg, #3bddf3 -39.85%, #004e96 131.08%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.connection-phone__icon {
  pointer-events: none;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background-color: rgb(33, 161, 202);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(33, 161, 202);
  transition: background-color 0.2s ease;
}

.connection-phone__icon svg path {
  transition: fill 0.2s ease;
}

.connection__phone-show {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 11px 12px;
  border-radius: 4px;
  border: 1px solid #f0f5ff;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.connection__phone-show:active {
  border-color: #21a1ca !important;
}

.connection__phone-show.hide {
  opacity: 0;
  pointer-events: none;
}

.connection__phone-show::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(
    270deg,
    #f0f5ff 45.04%,
    rgba(240, 245, 255, 0) 99.5%
  );
  transition: opacity 0.2s ease;
}

.connection__phone-show-text {
  position: relative;
  z-index: 10;
  text-align: right;
  color: rgb(33, 161, 202);
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  text-decoration-line: underline;
}

.socials {
  display: flex;
  gap: 8px;
}

.social {
  flex: 0 0 48px;
}

.social__link {
  padding: 7px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #f0f5ff;
  border: 1px solid #f0f5ff;
  transition: border-color 0.2s ease;
}

.social__link:active::after {
  opacity: 0;
}

.social__link:active {
  border-color: #21a1ca !important;
}

.header__menu-action {
  display: none;
}

.header__phone-mobile {
  display: none;
}

.header__text-mobile {
  display: none;
}

.header__dropdown-close-menu {
  display: none;
}

/* promo */
.promo {
  position: relative;
  padding: 56px;
}

.block-decor {
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.block-decor_left {
  left: 16px;
}

.block-decor_right {
  right: 16px;
}

.block-decor::before,
.block-decor::after {
  content: "";
  width: 32px;
  height: 32px;
}

.block-decor_left::before {
  border-top: 1px solid #21a1ca;
  border-left: 1px solid #21a1ca;
}

.block-decor_left::after {
  border-bottom: 1px solid #21a1ca;
  border-left: 1px solid #21a1ca;
}

.block-decor_right::before {
  border-top: 1px solid #21a1ca;
  border-right: 1px solid #21a1ca;
}

.block-decor_right::after {
  border-bottom: 1px solid #21a1ca;
  border-right: 1px solid #21a1ca;
}

.promo__wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.promo__wrapper::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    208.17% 100% at 50% 0%,
    rgba(0, 49, 65, 0.8) 40.85%,
    rgba(0, 115, 204, 0.7) 100%
  );
  pointer-events: none;
}

.promo__row {
  position: relative;
  z-index: 10;
  padding: 110px 50px 160px;
  display: flex;
  justify-content: space-between;
  gap: 45px;
}

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

.promo__stickers {
  margin-bottom: 40px;
}

.promo__stickers:last-child {
  margin-bottom: 0;
}

.stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticker {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  border: 1px solid #fff;
  padding: 4px 8px;
}

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

.promo__item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.promo__item:last-child {
  margin-bottom: 0;
}

.promo__item-icon {
  flex: 0 0 40px;
  height: 40px;
}

.promo__item-text {
  padding-top: 3px;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  color: #fff;
}

.promo__item-text b {
  font-weight: 900;
}

.promo__check {
  flex: 0 0 240px;
  height: 100%;
}

.check {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.check__title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  color: #ca003d;
  margin-bottom: 16px;
}

.check__descr {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 4px;
}

.check__num {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}

.check__btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 4px;
  background-color: #ca003d;
}

.check__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    #ca003d;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.check__btn:active::after {
  opacity: 1;
}

.check__btn-text {
  position: relative;
  z-index: 10;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 140%;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.check__btn:active .check__btn-text {
  opacity: 0.5;
}

.check__btn-icon {
  position: relative;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.check__btn:active .check__btn-icon {
  opacity: 0.5;
}

.promo__preview {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

/* advantages */
.advantages__wrapper {
  position: relative;
  z-index: 10;
  background-color: #fff;
  border-radius: 4px;
  margin-top: -116px;
}

.advantages__row {
  padding: 0 36px;
  margin-bottom: 40px;
}

.advantage {
  position: relative;
  padding: 16px 0;
}

.advantage__picture {
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
}

.advantage__img {
  width: 100%;
  height: 100%;
}

.advantage__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}

.advantage__descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.advantages__btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* promotions */
.promotions__slider-container {
  border-radius: 4px;
  overflow: hidden;
  background-color: #f0f5ff;
}

.promotions__slider-btn.swiper-button-lock {
  display: none;
}

.promotion {
  text-align: initial;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: auto;
  padding: 0 72px;
}

.promotion__content {
  max-width: 560px;
  padding: 38px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.promotion__title {
  color: #003a67;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.promotion__descr {
  flex-grow: 1;
  color: #003a67;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 24px;
}

.promotion__picture {
  max-width: 540px;
}

.promotion_active {
  min-height: 400px;
}

.promotion_active .promotion__picture {
  position: absolute;
  top: 0;
  left: 0;
  max-width: initial;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.promotion_active .promotion__img {
  object-position: left;
}

.promotion__img {
  object-fit: cover;
}

.promotion_active .promotion__img {
  width: 100%;
  height: 100%;
}

/* steps */
.steps {
  margin-bottom: 24px;
}

.steps__wrapper {
  margin-bottom: 100px;
}

.steps__row {
  padding: 0 48px;
  overflow-y: hidden;
}

.step:first-child:before,
.step::after {
  width: 48px;
}

.step__num {
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #21a1ca;
  font-size: 72px;
  font-weight: 900;
  line-height: 100%;
  margin-bottom: 16px;
  display: block;
}

.step__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}

.step__descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.steps__video-wrapper {
  padding: 0 60px;
}

.step__img {
  margin-bottom: 16px;
}

.video {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}

.video__item {
  width: 98%;
  height: 480px;
}

.video__preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.video.active .video__preview {
  opacity: 0;
  visibility: hidden;
}

.video__preview-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.video-preview__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 105%;
  height: 105%;
}

.video-preview__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-preview__play-img {
  border-radius: 50%;
  box-shadow: 0px 8px 40px 0px rgba(0, 58, 103, 0.3);
}

.video__preview-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
}

.video__preview-title {
  background: linear-gradient(180deg, rgb(59, 221, 243), rgb(0, 78, 150));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 32px;
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 16px;
}

.video__preview-time {
  color: rgb(33, 161, 202);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

/* services */
.services__preview {
  position: relative;
  padding: 56px 48px;
}

.services__preview-wrapper {
  border-radius: 4px;
  background-color: #ebffed;
}

.services__preview-container {
  display: flex;
  justify-content: space-between;
}

.services__preview-content {
  padding: 70px 40px;
}

.services__preview-picture {
  flex: 0 0 420px;
}

.services__preview-title {
  color: #18b528;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.services__preview-descr {
  color: #18b528;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.service {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  min-width: 0;
  padding: 40px 500px 40px 40px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  margin-bottom: 20px;
}

.service_pr-40 {
  padding-right: 40px;
}

.service:last-child {
  margin-bottom: 0;
}

.service__content {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
}

.service__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.service__descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
}

.service__list {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service__list-item {
  display: flex;
  gap: 4px;
}

.service__list-icon {
  flex: 0 0 32px;
  height: 32px;
}

.service__list-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.service__old-price {
  color: rgba(55, 55, 55, 0.3);
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
  text-decoration-line: line-through;
}

.service__info-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service__new-price {
  color: #003a67;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}

.service__guarantee {
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background-color: #e7ffed;
}

.service__guarantee-text {
  background: linear-gradient(180deg, #61ce6c -39.85%, #00b412 131.08%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 12px;
}

.service__deadlines {
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background-color: #e7f5ff;
}

.service__deadlines-text {
  background: linear-gradient(180deg, #3bddf3 -39.85%, #004e96 131.08%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 12px;
}

.service__send {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service__send-text {
  color: #003a67;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  max-width: 240px;
}

.service__send-btn {
  min-width: 320px;
  min-height: 64px;
}

.service__gallery {
  position: absolute;
  top: 40px;
  bottom: 40px;
  right: 40px;
  width: 420px;
  height: initial !important;
}

.service__slider {
  min-width: 0;
  max-width: 100%;
  height: calc(100% - 80px);
  margin-bottom: 16px;
}

.service__slider:last-child {
  margin-bottom: 0;
}

.service__slider.active {
  height: 100%;
}

.service__gallery-slide {
  border-radius: 4px;
  overflow: hidden;
}

.service__thumbs-wrapper {
  padding: 0 72px;
}

.service__thumb-btn-mobile {
  display: none;
}

.service__gallery-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__thumbs-slide {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  height: 64px;
}

.service__thumbs-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* guarantees */
.guarantees {
  overflow: hidden;
}

.guarantees__wrapper {
  padding: 0 32px;
}

.guarant {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guarant__icon {
  display: flex;
  align-items: center;
  flex: 0 0 80px;
  height: 80px;
}

.guarant__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

/* reviews */
.reviews__top {
  margin-bottom: 24px;
}

.reviews__btn {
  padding: 10px 16px;
  background: linear-gradient(180deg, rgb(59, 221, 243), rgb(0, 78, 150));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
}

.reviews__btn_mobile {
  display: none;
}

.reviews__wrapper {
  padding: 16px 80px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 4px;
  overflow: hidden;
}

.review {
  padding: 32px 40px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.review__user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.review__user-picture {
  flex: 0 0 100px;
  height: 100px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 8px;
}

.review__user-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review__user-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 4px;
}

.review__user-city {
  color: rgb(0, 58, 103);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 4px;
}

.review__user-date {
  color: rgb(55, 55, 55, 0.5);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.review__content {
  flex-grow: 1;
  margin-bottom: 16px;
}

.review__gallery {
  margin-bottom: 40px;
}

.review__sub-title {
  color: rgb(55, 55, 55, 0.5);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 4px;
}

.review__gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review__gallery-link {
  flex: 0 0 50px;
  height: 50px;
  border: 1px solid rgb(211, 211, 211);
  border-radius: 8px;
}

.review__answer-text {
  color: rgb(0, 58, 103);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

/* callback */
.callback__wrapper {
  padding: 40px;
  border-radius: 4px;
  background-color: rgb(240, 245, 255);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.callback__content {
  display: flex;
  flex-direction: column;
}

.callback__title {
  color: rgb(0, 58, 103);
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.popup__content .callback__title {
  padding-right: 32px;
}

.callback__descr {
  flex-grow: 1;
  color: rgb(0, 58, 103);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
}

.callback__descr_green {
  font-weight: 700;
  color: rgb(20, 142, 40);
}

.callback__form {
  display: flex;
  flex-direction: column;
}

.callback__checkbox {
  margin-bottom: auto;
}

.callback__form-btn {
  margin-top: 16px;
  min-height: 48px;
}

/* about */
.about__wrapper {
  display: flex;
  gap: 80px;
}

.about__info {
  padding-top: 100px;
}

.about__preview {
  flex: 0 0 420px;
  position: relative;
}

.about__check {
  width: 240px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about__content-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about__content-picture {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  overflow: hidden;
}

.about__content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* documents */
.documents__container {
  overflow-x: hidden;
}

.documents__wrapper {
  padding: 0 32px;
}

.document__picture {
  margin-bottom: 16px;
}

.document__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.document__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 16px;
}

.document__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.document__btn-text {
  color: rgb(55, 55, 55);
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
}

/* check-block */
.check-block {
  position: relative;
  padding: 56px;
}

.check-block__wrapper {
  border-radius: 4px;
  background-color: rgb(255, 247, 240);
}

.preview-check__container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.preview-check__wrapper {
  padding-top: 40px;
  display: flex;
  gap: 40px;
}

.preview-check__title {
  color: rgb(220, 106, 0);
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.preview-check__descr {
  color: rgb(220, 106, 0);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.content-check {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.content-check__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

.content-check__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.content-check__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 16px;
}

.content-check__title_green {
  background: linear-gradient(180deg, rgb(97, 206, 108), rgb(0, 180, 18));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.content-check__title_red {
  color: rgb(229, 0, 0);
}

.content-check__descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
}

.content-check__price-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 8px;
}

.content-check__price {
  margin-bottom: 16px;
}

.content-check__price:last-child {
  margin-bottom: 0;
}

.content-check__price-num {
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}

.content-check__price-num_red {
  color: rgb(229, 0, 0);
}

.content-check__text {
  margin-bottom: 40px;
  background: linear-gradient(180deg, rgb(97, 206, 108), rgb(0, 180, 18));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  position: relative;
  z-index: 10;
}

.content-check__btn {
  position: relative;
  z-index: 10;
}

.content-check__decor-1 {
  position: absolute;
  left: -565px;
  bottom: -443px;
  width: 1562px;
  height: 803px;
  transform: rotate(-11.21deg);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgb(180, 255, 192),
    rgba(240, 245, 255, 0) 100%
  );
  pointer-events: none;
}

.content-check__decor-2 {
  position: absolute;
  width: 715.77px;
  height: 1037.62px;
  bottom: -394.8px;
  right: -51.77px;
  transform: rotate(-11.21deg);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 180, 184, 0.41),
    rgba(240, 245, 255, 0) 100%
  );
}

/* faq */
.question {
  border: 1px solid rgb(224, 224, 224);
  border-radius: 4px;
  margin-bottom: 16px;
}

.question:last-child {
  margin-bottom: 0;
}

.question__title {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  border-radius: 8px;
  box-shadow: 20px 4px 50px -10px rgba(89, 89, 89, 0.1);
  text-align: initial;
}

.question__title-text {
  color: rgb(55, 55, 55);
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.question__info {
  padding: 0 24px;
}

.question__info-wrapper {
  padding: 40px 0 24px;
}

.question__info-content {
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(224, 224, 224);
}

.question__info-content p {
  color: rgb(55, 55, 55);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 16px;
}

.question__info-content p:last-child {
  margin-bottom: 0;
}

.question__info-content ul {
  margin-bottom: 16px;
}

.question__info-content ul:last-child {
  margin-bottom: 0;
}

.question__info-content ul li {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  padding-left: 16px;
  margin-bottom: 8px;
}

.question__info-content ul li:last-child {
  margin-bottom: 0;
}

.question__info-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #003a67;
}

/* contacts */
.contacts__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  border-radius: 4px;
  background-color: rgb(240, 245, 255);
  padding: 40px;
}

.contacts__content {
  max-width: 560px;
}

.contacts__title {
  color: rgb(0, 58, 103);
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.contacts__descr {
  color: rgb(0, 58, 103);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.contacts__phone {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contacts__phone-text {
  color: rgb(0, 58, 103);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  max-width: 332px;
}

.contacts-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.contacts-socials__item {
  flex: 1 0 calc(50% - 4px);
}

.contacts-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #fff;
  transition: border-color 0.2s ease;
}

.contacts-social_tg .contacts-social__link:active {
  border-color: rgb(33, 161, 202) !important;
}

.contacts-social_wa .contacts-social__link:active {
  border-color: rgb(24, 181, 40) !important;
}

.contacts-social__img {
  transition: opacity 0.2s ease;
}

.contacts-social:active .contacts-social__img {
  opacity: 0.5;
}

.contacts-social__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  transition: opacity 0.2s ease;
}

.contacts-social:active .contacts-social__text {
  opacity: 0.5;
}

.contacts-social_tg .contacts-social__text {
  color: rgb(33, 161, 202);
}

.contacts-social_wa .contacts-social__text {
  color: rgb(24, 181, 40);
}

.contacts__info-btn {
  width: 100%;
  min-height: 64px;
}

/* warning */
.warning__wrapper {
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 40px;
  border-radius: 4px;
  background-color: rgb(240, 245, 255);
}

.warning__title {
  color: rgb(0, 58, 103);
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.warning__descr {
  color: rgb(0, 58, 103);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.warning__img {
  flex: 0 0 120px;
}

/* footer */
.footer__top {
  padding: 24px 0;
}

.footer__top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer__bottom {
  padding: 40px 0;
  background-color: rgb(0, 58, 103);
}

.footer__bottom-container {
  display: flex;
  justify-content: space-between;
}

.footer__menu-item {
  margin-bottom: 8px;
}

.footer__menu-item:last-child {
  margin-bottom: 0;
}

.footer__menu-link {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.footer__info {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.requisites__text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 4px;
}

.requisites__text:last-child {
  margin-bottom: 0;
}

.footer__requisites {
  flex-grow: 1;
}

.footer__info-link {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  margin-bottom: 8px;
}

.footer__info-link:last-child {
  margin-bottom: 0;
}

.footer__copyright {
  padding: 12px 0;
}

.footer__copyright-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copyright-text {
  color: rgb(55, 55, 55, 0.5);
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
}

.footer__copyright-link {
  color: rgb(55, 55, 55, 0.5);
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

/* directions */
.directions__wrapper {
  position: relative;
  min-height: 562px;
  background-image: url("../img/sections/directions/map.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
}

.directions__descr-text {
  max-width: 820px;
}

.directions__pin {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 4px 24px 0px #001a5f40;
  border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

.directions__pin-icon {
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.directions__pin-icon::before,
.directions__pin-icon::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
}

.directions__pin-icon::before {
  background: url("../img/sections/directions/pin-icon.svg") center center
    no-repeat;
  background-size: cover;
  transition: opacity 0.2s ease;
}

.directions__pin-icon::after {
  background: url("../img/sections/directions/pin-icon.svg") center center
    no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.directions__pin-wrapper {
  width: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #fff;
  padding: 4px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #21a1ca;
}

.directions__pin.show {
  z-index: 15;
}

.directions__pin[data-place="city1"] {
  top: 202px;
  left: 128px;
}

.directions__pin[data-place="city2"] {
  top: 211px;
  left: 385px;
}

.directions__pin[data-place="city3"] {
  top: 251px;
  left: 361px;
}

.directions__pin[data-place="city4"] {
  top: 259px;
  left: 94px;
}

.directions__pin[data-place="city5"] {
  top: 276px;
  left: 176px;
}

.directions__pin[data-place="city6"] {
  top: 273px;
  left: 293px;
}

.directions__pin[data-place="city7"] {
  top: 301px;
  left: 162px;
}

.directions__pin[data-place="city8"] {
  top: 305px;
  left: 225px;
}

.directions__pin[data-place="city9"] {
  top: 344px;
  left: 186px;
}

.directions__pin[data-place="city10"] {
  top: 342px;
  left: 499px;
}

.directions__pin[data-place="city11"] {
  top: 345px;
  left: 785px;
}

.directions__pin[data-place="city12"] {
  top: 349px;
  left: 462px;
}

.directions__pin[data-place="city13"] {
  top: 377px;
  left: 489px;
}

.directions__pin[data-place="city14"] {
  top: 379px;
  left: 266px;
}

.directions__pin[data-place="city15"] {
  top: 391px;
  left: 142px;
}

.directions__pin[data-place="city16"] {
  top: 450px;
  left: 142px;
}

.directions__pin[data-place="city17"] {
  top: 285px;
  left: 333px;
}

.directions__pin[data-place="city18"] {
  top: 319px;
  left: 410px;
}

.directions__pin[data-place="city19"] {
  top: 435px;
  left: 960px;
}

.directions__pin[data-place="city20"] {
  top: 384px;
  left: 172px;
}

.directions__pin[data-place="city21"] {
  top: 435px;
  left: 102px;
}

.directions__pin[data-place="city22"] {
  top: 298px;
  left: 199px;
}

.directions__pin[data-place="city23"] {
  top: 250px;
  left: 147px;
}

.directions__pin[data-place="city24"] {
  top: 282px;
  left: 141px;
}

.directions__pin-text {
  white-space: nowrap;
}

.directions__pin-text span {
  color: #003a67;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.directions__pin-text p {
  font-size: 14px;
}

.directions__map-btn {
  display: none;
}

.directions__map-mobile {
  display: none;
}

@media (min-width: 1025px) {
  /* glob */
  .btn:hover::after {
    opacity: 1;
  }

  .btn-send:hover::after {
    opacity: 1;
  }

  .slider-btn:hover {
    background-color: #fff;
  }

  .slider-btn:hover svg {
    opacity: 1;
  }

  .data-select__text_decor:hover::after {
    opacity: 0;
  }

  .hover-opacity-05:hover {
    opacity: 0.5;
  }

  .link:hover {
    color: rgba(33, 161, 202, 0.8);
  }

  .connection-phone:hover .connection-phone__icon {
    background-color: #fff;
  }

  .connection-phone:hover .connection-phone__icon svg path {
    fill: rgb(33, 161, 202);
  }

  /* header */
  .menu__link:hover {
    color: rgba(33, 161, 202, 1);
  }

  .connection-phone:hover {
    border-color: rgba(33, 161, 202, 0.3);
  }

  .connection__phone-show:hover {
    border-color: rgba(33, 161, 202, 0.3);
  }

  .social__link:hover::after {
    opacity: 0;
  }

  .social__link:hover {
    border-color: rgba(33, 161, 202, 0.3);
  }

  /* promo */
  .check__btn:hover::after {
    opacity: 1;
  }

  /* contacts */
  .contacts-social_tg .contacts-social__link:hover {
    border-color: rgba(33, 161, 202, 0.3);
  }

  .contacts-social_wa .contacts-social__link:hover {
    border-color: rgba(24, 181, 40, 0.3);
  }
}

@media (max-width: 1200px) {
  /* glob */
  .main-container {
    padding: 60px 8px 0;
  }

  /* header */
  .header__wrapper {
    padding: 8px;
    border-radius: 0;
  }

  .logo {
    width: 105px;
    flex: 0 0 105px;
  }

  /* promo */
  .promo {
    padding: 56px 4px 0;
  }

  .promo .block-decor {
    display: none;
  }

  .promo__preview {
    width: 500px;
  }

  /* advantages */
  .advantages__wrapper {
    margin-top: 0;
  }

  /* steps */
  .steps__video-wrapper {
    padding: 0;
  }

  /* services */
  .service__send {
    flex-direction: column;
    align-items: initial;
  }

  .service__send-text {
    max-width: initial;
  }

  .service__list {
    grid-template-columns: initial;
  }

  .service__info-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  /* contacts */
  .contacts {
    padding: 0;
  }

  .contacts__wrapper {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  /* glob */
  .grid-3-36-48 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4-48-48 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3-16-48 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-offset {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .section-top_mb-40 {
    margin-bottom: 16px;
  }

  .section-descr {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .btn {
    padding: 12px 20px;
  }

  .main-container {
    padding: 60px 0 0;
  }

  .content-body p {
    font-size: 16px;
  }

  .popup__content .callback__wrapper {
    padding: 16px;
    gap: 0;
  }

  .popup__content .block-decor {
    display: none;
  }

  .popup__close {
    top: 13px;
    right: 4px;
  }

  .popup__content .callback__descr {
    display: none;
  }

  .popup__content .callback__picture {
    display: none;
  }

  .response-popup__title {
    font-size: 28px;
  }

  .response-popup__content {
    padding: 32px 0;
  }

  .region-popup__wrapper {
    grid-template-columns: initial;
    gap: 20px;
  }

  .region-popup .popup__content {
    padding: 20px;
  }

  .stickers {
    justify-content: center;
  }

  /* header */
  .header {
    position: sticky;
    background-color: #fff;
  }

  .header.fixed {
    position: sticky;
    box-shadow: initial;
    border-radius: initial;
  }

  .header.fixed .header__wrapper {
    box-shadow: 0px 10px 50px -10px rgba(89, 89, 89, 0.1);
  }

  .header__city {
    display: none;
  }

  .header__dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    z-index: 1000;
    padding: 132px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: initial;
    transform: translate(-110%);
    transition: transform 0.2s ease;
  }

  .header.active .header__dropdown {
    transform: translate(0);
  }

  .header__menu-action {
    flex: 0 0 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1010;
  }

  .open-menu {
    transition: opacity 0.2s ease;
  }

  .header__menu-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
  }

  .header__info {
    flex: initial;
    position: relative;
    z-index: 1010;
  }

  .header__phone-mobile {
    flex: 0 0 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1010;
  }

  .header__text-mobile {
    padding: 8px;
    display: block;
    color: rgb(0, 58, 103);
    font-size: 10px;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
    text-transform: uppercase;
    border-radius: 0 0 4px 4px;
    background-color: rgb(246, 246, 246);
    position: relative;
    z-index: 1010;
  }

  .header__text-mobile-link {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: rgb(0, 58, 103);
  }

  .menu__list {
    flex-wrap: initial;
    flex-direction: column;
    align-items: initial;
    margin-bottom: auto;
  }

  .menu__link {
    display: block;
    padding: 8px 0;
    width: 100%;
  }

  .header__connection {
    margin-top: 24px;
    flex-direction: column;
  }

  .social {
    flex: 1 1 auto;
  }

  .header__dropdown-close-menu {
    display: block;
    padding: 8px 0;
    color: rgb(0, 58, 103, 0.5);
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
    text-decoration-line: underline;
    text-underline-offset: 3px;
  }

  .header__wrapper {
    position: relative;
  }

  .header__wrapper::after {
    content: "";
    position: absolute;
    z-index: 1005;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }

  /* promo */
  .promo {
    padding: 4px 4px 0;
    margin-bottom: 172px;
  }

  .promo__wrapper::before {
    border-radius: 4px;
  }

  .promo__video {
    border-radius: 4px;
  }

  .promo__row {
    display: block;
    padding: 24px 12px 254px;
  }

  .promo__wrapper {
    overflow: initial;
  }

  .promo__preview {
    width: 300px;
    height: 254px;
    right: auto;
    left: 0;
    bottom: 0;
  }

  .promo__title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
  }

  .promo__check {
    z-index: 10;
    height: initial;
    width: 100%;
    flex: initial;
    position: absolute;
    top: 100%;
    left: 0;
    transition-delay: 0s !important;
    transform: translateY(-40px) !important;
  }

  .promo__item-icon {
    flex: 0 0 30px;
    height: 30px;
  }

  .promo__item-text {
    padding-top: 0;
    font-size: 14px;
  }

  .sticker {
    padding: 6px 8px;
  }

  .sticker__text {
    font-size: 14px;
  }

  /* advantages */
  .advantages__row {
    padding: 0 44px;
    margin-bottom: 16px;
  }

  .advantage__title {
    font-size: 18px;
  }

  /* promotions */
  .promotion {
    flex-direction: column-reverse;
  }

  .promotion__content {
    padding: 24px;
    max-width: initial;
  }

  .promotion__title {
    font-size: 28px;
  }

  .promotion_active {
    min-height: 220px;
  }

  /* steps */
  .steps__wrapper {
    margin-bottom: 40px;
  }

  .steps__row {
    padding: 0 16px;
  }

  .steps__row::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .step {
    padding: 0;
    min-width: 220px;
  }

  .step::after,
  .step::before {
    display: none;
  }

  .step__title {
    font-size: 18px;
  }

  .video__preview-title {
    font-size: 24px;
    color: #21a1ca;
    background: initial;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    margin-bottom: 16px;
  }

  .video__preview-time {
    color: #21a1ca;
  }

  /* services */
  .service {
    flex-direction: column;
    padding: 40px 16px;
  }

  .services__preview-content {
    padding: 24px;
  }

  .services__preview-container {
    flex-direction: column;
    padding: 0;
  }

  .services__preview-picture {
    flex: initial;
  }

  .services__preview {
    padding: 0 8px;
    margin-bottom: 40px;
  }

  .services__preview .block-decor {
    display: none;
  }

  .service__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
  }

  .service__descr {
    margin-bottom: 16px;
  }

  .service__send-btn {
    min-width: initial;
  }

  .service__gallery {
    flex: initial;
    position: initial;
    width: initial;
  }

  .service__slider {
    height: initial;
    max-height: 400px;
  }

  .service__content {
    padding-top: 0;
  }

  .service__old-price {
    font-size: 16px;
  }

  .service__new-price {
    font-size: 28px;
  }

  /* reviews */
  .reviews__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews__wrapper {
    padding: 0;
    border: initial;
  }

  .review {
    padding: 32px 20px;
    border-radius: 4px;
    border: 1px solid rgb(224, 224, 224);
  }

  .reviews__slider-btn {
    display: none;
  }

  .review__user-img {
    width: 80px;
    height: 80px;
  }

  .review__user-picture {
    border: initial;
    flex: initial;
    height: 80px;
  }

  .review__user-name {
    font-size: 18px;
  }

  .review__user-city {
    font-size: 16px;
  }

  .reviews__slider {
    margin-bottom: 16px;
  }

  .reviews__btn {
    display: none;
  }

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

  /* callback */
  .callback__title {
    font-size: 28px;
  }

  .callback__wrapper {
    padding: 40px 24px;
    display: block;
  }

  .data-select__item {
    flex-direction: column;
    align-items: initial;
  }

  /* about */
  .about__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__info {
    padding-top: 0;
  }

  /* documents */
  .documents {
    overflow-x: hidden;
  }

  .documents__wrapper {
    display: flex;
    overflow-x: auto;
    margin-bottom: 24px;
  }

  .documents__wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .document {
    flex: 0 0 280px;
  }

  /* check-block */
  .check-block {
    padding: 0 8px;
  }

  .check-block .block-decor {
    display: none;
  }

  .content-check__container {
    padding: 24px;
  }

  .check-block__container {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .preview-check__wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .preview-check__img {
    width: 56px;
    height: 56px;
  }

  .preview-check__title {
    font-size: 28px;
  }

  .content-check__wrapper {
    grid-template-columns: initial;
    gap: 24px;
  }

  .content-check__title {
    font-size: 24px;
  }

  .content-check__descr {
    margin-bottom: 16px;
  }

  .content-check__price-num {
    font-size: 24px;
  }

  .content-check__text {
    font-size: 24px;
  }

  /* contacts */
  .contacts__wrapper {
    padding: 24px;
    gap: 24px;
    grid-template-columns: initial;
  }

  .contacts__title {
    font-size: 24px;
  }

  .contacts__phone {
    display: grid;
    grid-template-columns: initial;
  }

  .contacts__info-socials {
    display: grid;
    grid-template-columns: initial;
  }

  .contacts-socials {
    margin-bottom: 8px;
  }

  .warning__wrapper {
    padding: 24px;
    gap: 24px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .warning__title {
    font-size: 24px;
  }

  .warning__img {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
  }

  /* directions */
  .directions__wrapper {
    min-height: initial;
    background-image: initial;
  }

  .directions__map {
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0px 4px 24px 0px #001a5f40;
    border: 1px solid #f6f6f6;
    background-color: #fff;
  }

  .directions__pin {
    pointer-events: none;
    position: initial;
    box-shadow: initial;
    padding: 0;
    margin-bottom: 12px;
  }

  .directions__pin:last-child {
    margin-bottom: 0;
  }

  .directions__pin-wrapper {
    position: initial;
    transform: initial;
    width: 100%;
    height: initial;
    border: initial;
    padding: 0;
  }

  .directions__pin > .directions__pin-icon {
    display: none;
  }

  .directions__pin-text span {
    font-size: 16px;
    line-height: 140%;
    color: #373737;
  }

  .directions__map-wrapper {
    margin-bottom: 12px;
    max-height: 270px;
    overflow: hidden;
  }

  .directions__map.active .directions__map-wrapper {
    max-height: initial;
  }

  .directions__map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: #003a67;
    text-decoration: underline;
    padding: 0 24px;
    width: 100%;
  }

  .directions__map-mobile {
    display: block;
    text-align: center;
  }

  /* faq */
  .question__title-text {
    font-size: 18px;
  }

  .question__info-content p {
    font-size: 16px;
  }

  .question__info-content ul li {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  /* glob */
  /* .decor-item::before {
        display: none;
    }

    .decor-item::after {
        display: none;
    } */

  /* glob */
  .grid-3-36-48 {
    grid-template-columns: initial;
  }

  .grid-4-48-48 {
    grid-template-columns: initial;
  }

  .grid-3-16-48 {
    grid-template-columns: initial;
  }

  /* promotions */
  .promotions__slider-btn {
    display: none;
  }

  .promotion {
    padding: 0;
  }

  /* guarantees */
  .guarantees__wrapper {
    padding: 0;
  }

  /* documents */
  .document::before,
  .document::after {
    display: block;
  }
}

@media (max-width: 575px) {
  /* glob */
  .data-select__preview-icon {
    display: none;
  }

  /* services */
  .service__slider {
    display: none;
  }

  .service__thumb-btn {
    display: none;
  }

  .service__thumb-btn-mobile {
    display: none;
  }

  .service__thumbs-wrapper {
    padding: 0;
  }

  /* footer */
  .footer__top-container {
    flex-direction: column;
  }

  .footer__bottom-container {
    display: block;
  }

  .footer__menu {
    margin-bottom: 16px;
  }

  .footer__copyright-container {
    flex-direction: column;
    gap: 8px;
  }

  .footer__requisites {
    text-align: initial;
  }

  .footer__info-link {
    text-align: initial;
  }

  .footer__copyright-text {
    text-align: center;
  }
}
