:root {
  --black: #161616;
  --white: #fff;
  --blue: #0f8bff;
  --blue-light: #ebf6ff;
  --gray-dark: #868791;
  --stroke: #ced9e3;
  --font-family: "Inter", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background: var(--white);
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
  color: var(--black);
}

.noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  padding-top: var(--header-h, 0px);
}

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

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

strong {
  font-weight: 700;
}

.sticky-cta {
  display: none;
  padding: 15px 0;
  width: 100%;
}
@media (max-width: 768px) {
  .sticky-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 50;
    bottom: -200px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    opacity: 0;
  }
  .sticky-cta .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  @-webkit-keyframes callPulse {
    0% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      -webkit-box-shadow: 0 10px 26px rgba(14, 139, 255, 0.45), 0 0 0 0 rgba(14, 139, 255, 0.35);
              box-shadow: 0 10px 26px rgba(14, 139, 255, 0.45), 0 0 0 0 rgba(14, 139, 255, 0.35);
    }
    50% {
      -webkit-box-shadow: 0 14px 32px rgba(14, 139, 255, 0.6), 0 0 0 12px rgba(63, 82, 227, 0);
              box-shadow: 0 14px 32px rgba(14, 139, 255, 0.6), 0 0 0 12px rgba(63, 82, 227, 0);
    }
    100% {
      -webkit-box-shadow: 0 10px 26px rgba(14, 139, 255, 0.45), 0 0 0 0 rgba(63, 82, 227, 0);
              box-shadow: 0 10px 26px rgba(14, 139, 255, 0.45), 0 0 0 0 rgba(63, 82, 227, 0);
    }
  }
  @keyframes callPulse {
    0% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      -webkit-box-shadow: 0 10px 26px rgba(14, 139, 255, 0.45), 0 0 0 0 rgba(14, 139, 255, 0.35);
              box-shadow: 0 10px 26px rgba(14, 139, 255, 0.45), 0 0 0 0 rgba(14, 139, 255, 0.35);
    }
    50% {
      -webkit-box-shadow: 0 14px 32px rgba(14, 139, 255, 0.6), 0 0 0 12px rgba(63, 82, 227, 0);
              box-shadow: 0 14px 32px rgba(14, 139, 255, 0.6), 0 0 0 12px rgba(63, 82, 227, 0);
    }
    100% {
      -webkit-box-shadow: 0 10px 26px rgba(14, 139, 255, 0.45), 0 0 0 0 rgba(63, 82, 227, 0);
              box-shadow: 0 10px 26px rgba(14, 139, 255, 0.45), 0 0 0 0 rgba(63, 82, 227, 0);
    }
  }
  .sticky-cta .btn {
    border-radius: 100px;
    padding: 12px 40px;
    font-size: 14px;
    gap: 6px;
  }
  .sticky-cta .btn svg {
    width: 12px;
    height: 12px;
  }
  .sticky-cta .btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 10px 26px rgba(14, 139, 255, 0.688), 0 2px 8px rgba(0, 0, 0, 0.25);
            box-shadow: 0 10px 26px rgba(14, 139, 255, 0.688), 0 2px 8px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-animation: callPulse 2.2s ease-out infinite;
            animation: callPulse 2.2s ease-out infinite;
  }
  .sticky-cta.active {
    bottom: 0;
    opacity: 1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
}
@media (max-width: 576px) {
  .sticky-cta .btn {
    padding: 12px 22px;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
  padding: clamp(15px, 2.267vw, 20px) clamp(20px, 4vw, 40px);
  border: none;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn:hover {
  background-color: #2595ff;
}

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 4.667vw, 40px);
  line-height: 120%;
  color: var(--back);
  margin-bottom: 16px;
}
.title--blue {
  color: var(--blue);
}

.tel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(18px, 2.8vw, 24px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(12px, 1.867vw, 16px);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(18px, 3.2vw, 30px);
  line-height: 120%;
  color: var(--black);
}
.tel-link img {
  width: clamp(18px, 3.467vw, 32px);
}

.sl-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  background-color: var(--white);
  width: clamp(40px, 6.667vw, 60px);
  height: clamp(40px, 6.667vw, 60px);
  border-radius: 100px;
  cursor: pointer;
}
.sl-btn svg {
  width: clamp(9px, 1.4vw, 12px);
}

.cmpl-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header {
  position: fixed;
  z-index: 50;
  width: 100%;
  top: 0;
  padding: clamp(12px, 1.867vw, 16px) 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 77px;
}
@media (max-width: 1200px) {
  .header__main {
    gap: 20px;
  }
}
.header .header-logo img {
  width: 100%;
  max-width: 130px;
}
.header .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.header .header-nav ul li a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
}
@media (max-width: 1200px) {
  .header .header-nav ul {
    gap: 20px;
  }
  .header .header-nav ul li a {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .header .header-nav ul li a {
    font-size: 16px;
  }
}
.header .header-tel .tel-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}
.header .header-tel .tel-box a {
  gap: 8px;
}
.header .header-tel .tel-box a img {
  width: 20px;
}
.header .header-tel .tel-box a {
  font-size: 15px;
}
@media (max-width: 992px) {
  .header .header-tel .tel-box a {
    font-size: 18px;
  }
}
.header .header-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 110;
}
.header .header-burger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--blue);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 992px) {
  .header__main {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    padding: 80px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-8%);
            transform: translateY(-8%);
    -webkit-transition: 0.25s;
    transition: 0.25s;
    z-index: 100;
  }
  .header.is-open .header__main {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header .header-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
  }
  .header .header-tel .tel-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
  .header .header-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header.is-open .header-burger span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .header.is-open .header-burger span:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .header-burger span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.hero {
  position: relative;
  background-image: url(../img/hero.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 670px;
  padding: clamp(80px, 13.333vw, 120px) 0;
}
@media (max-width: 768px) {
  .hero {
    min-height: 400px;
  }
}
.hero:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .hero:after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.43)), to(rgba(0, 0, 0, 0.43))), -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.43)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), linear-gradient(90deg, rgba(0, 0, 0, 0.43) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hero__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 55px);
  line-height: 120%;
  color: var(--white);
  margin-bottom: 8px;
}
.hero__pretitle {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 140%;
  color: var(--white);
  margin-bottom: 24px;
}
.hero .hero-list {
  margin-bottom: 40px;
  display: -ms-grid;
  display: grid;
  gap: 4px;
}
.hero .hero-list li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--white);
  position: relative;
  padding-left: 27px;
}
.hero .hero-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 15px;
  background-color: #fff;
}
.hero__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.hero__tels p, .hero__tels a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}
.hero__tels a {
  gap: 8px;
}
.hero__tels a img {
  width: 20px;
}
.hero__tels .tel-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.numbers {
  padding-top: 30px;
}
.numbers__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
.numbers .numbers-item span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  color: var(--blue);
}
.numbers .numbers-item p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
@media (max-width: 992px) {
  .numbers__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .numbers .numbers-item {
    width: calc(50% - 32px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .numbers .numbers-item p {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .numbers .numbers-item {
    width: 100%;
  }
  .numbers .numbers-item span {
    font-size: 46px;
  }
}

.proces {
  padding-top: clamp(50px, 10vw, 100px);
  padding-bottom: clamp(40px, 6.667vw, 60px);
}
.proces .title {
  margin-bottom: clamp(30px, 4.133vw, 32px);
}
.proces__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .proces__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.proces__image {
  width: 50%;
  max-width: 485px;
}
.proces__image img {
  width: 100%;
}
@media (max-width: 768px) {
  .proces__image {
    width: 100%;
    max-width: 100%;
  }
}
.proces__main {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .proces__main {
    width: 100%;
  }
}
.proces__list {
  counter-reset: proces-step;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.proces .proces-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  counter-increment: proces-step;
}
.proces .proces-item::before {
  content: counter(proces-step, decimal-leading-zero);
  background: var(--blue);
  border-radius: 8px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--white);
}
.proces .proces-item p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}

.adv {
  background: var(--blue);
  padding: 24px 0px;
}
.adv__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 45px;
}
.adv .adv-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 992px) {
  .adv__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .adv .adv-item {
    width: calc(50% - 22.5px);
  }
}
@media (max-width: 576px) {
  .adv__box {
    gap: 24px;
  }
  .adv .adv-item {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
  .adv .adv-item img {
    width: 24px;
  }
  .adv .adv-item {
    font-size: 14px;
  }
}

.geo {
  padding: clamp(50px, 10vw, 100px) 0;
}
.geo .title {
  text-align: center;
}
.geo__pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  text-align: center;
}
.geo__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(40px, 6.667vw, 60px);
}
.geo__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.geo__image img {
  width: 100%;
}
@media (max-width: 768px) {
  .geo__image img {
    width: 190%;
    position: relative;
    left: -10%;
  }
}

.prices {
  padding: clamp(50px, 10vw, 100px) 0;
  background: var(--blue-light);
}
.prices .title {
  text-align: center;
}
.prices__pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  text-align: center;
  color: var(--black);
}
.prices__list {
  margin-top: clamp(30px, 4.667vw, 40px);
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .prices__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .prices__list {
    gap: 18px;
  }
}
.prices .price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 33.33%;
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: clamp(30px, 4.667vw, 40px) clamp(20px, 4vw, 40px);
  min-height: 280px;
  gap: 24px;
}
@media (max-width: 992px) {
  .prices .price-item {
    width: calc(50% - 12px);
    min-height: 240px;
  }
}
@media (max-width: 576px) {
  .prices .price-item {
    width: 100%;
    min-height: 200px;
  }
}
.prices .price-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 140%;
  color: var(--black);
  margin-bottom: 8px;
}
.prices .price-item p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--gray-dark);
}
.prices .price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: var(--blue);
}
@media (max-width: 1200px) {
  .prices .price {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .prices .price {
    font-size: 26px;
  }
}
.prices .p-note {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  text-align: center;
  color: var(--black);
}
.prices__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.prices__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prices__tels p, .prices__tels a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
.prices__tels a {
  gap: 8px;
}
.prices__tels a img {
  width: 20px;
}
.prices__tels .tel-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about {
  padding-top: clamp(50px, 10vw, 100px);
}
.about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 106px;
}
@media (max-width: 1200px) {
  .about__box {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .about__box {
    gap: 30px;
  }
}
.about .title {
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.about__main .about-ppp {
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.about__main .about-ppp p {
  margin-bottom: 16px;
}
.about__main .about-ppp p:last-child {
  margin-bottom: 0;
}
.about__main .about-ppp p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
.about__main .about-list {
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.about__main .about-list__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  margin-bottom: 12px;
}
.about__main .about-list ul {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.about__main .about-list ul li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.about__main .about-list ul li::before {
  content: "";
  display: block;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  background-image: url(../img/icons/chk.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.about__main .about-accent {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 140%;
  color: var(--blue);
}
.about__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-width: 486px;
  max-width: 486px;
}
@media (max-width: 992px) {
  .about__image {
    height: 480px;
    min-width: 100%;
    max-width: 100%;
  }
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}

.bur {
  padding-top: clamp(50px, 10vw, 100px);
}
.bur__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media (max-width: 1200px) {
  .bur__box {
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .bur__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bur__gal {
  position: relative;
  width: 100%;
  max-width: 486px;
}
@media (max-width: 992px) {
  .bur__gal {
    max-width: 430px;
  }
}
.bur .bur_slider {
  height: 100%;
  border-radius: 16px;
}
@media (max-width: 1200px) {
  .bur .bur_slider {
    height: 600px;
  }
}
@media (max-width: 768px) {
  .bur .bur_slider {
    height: 480px;
  }
}
.bur .bur_slider-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.bur .bur_slider-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.bur .sl-btn {
  position: absolute;
  top: calc(50% - 30px);
  z-index: 3;
}
.bur .bur-prev {
  left: 24px;
}
.bur .bur-next {
  right: 24px;
}
.bur .bur-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.bur__pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
.bur__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.bur .bur-list {
  margin-top: clamp(30px, 4.667vw, 40px);
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.bur .bur-list__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  margin-bottom: 12px;
}
.bur .bur-list ul {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.bur .bur-list ul li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.bur .bur-list ul li::before {
  content: "";
  display: block;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  background-image: url(../img/icons/chk.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.bur .nas__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  margin-bottom: 8px;
}
.bur .nas p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
.bur .spec-conditions {
  margin-top: clamp(30px, 4.667vw, 40px);
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.bur .spec-conditions__percent {
  position: absolute;
  right: clamp(20px, 2.933vw, 24px);
  top: clamp(-27px, -4.267vw, -37px);
}
.bur .spec-conditions__percent img {
  width: clamp(50px, 8.667vw, 80px);
}
.bur .spec-conditions__title {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 140%;
  color: var(--blue);
  margin-bottom: 8px;
}
.bur .spec-conditions p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  width: 100%;
  max-width: 524px;
}
.bur__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: clamp(30px, 6vw, 60px);
}
.bur__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.bur__tels p, .bur__tels a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
.bur__tels a {
  gap: 8px;
}
.bur__tels a img {
  width: 20px;
}
.bur__tels .tel-box {
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.completed {
  padding: clamp(50px, 10vw, 100px) 0px;
}
.completed .title {
  text-align: center;
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.completed__box {
  position: relative;
}
.completed__box .sl-btn {
  position: absolute;
  top: 260px;
  z-index: 3;
}
.completed__box .cmpl-prev {
  left: clamp(16px, 2.533vw, 24px);
}
.completed__box .cmpl-next {
  right: clamp(16px, 2.533vw, 24px);
}
.completed .completed-slide__image {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  height: clamp(480px, 70.667vw, 580px);
  width: 100%;
}
.completed .completed-slide__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.completed .completed-slide__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  margin-bottom: 8px;
}
.completed .completed-slide ul {
  display: -ms-grid;
  display: grid;
  gap: 2px;
}
.completed .completed-slide ul li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 2.133vw, 18px);
  line-height: 140%;
  color: var(--gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.completed .completed-slide ul li span {
  font-weight: 700;
}
.social {
  background: var(--blue-light);
  padding: clamp(40px, 6.667vw, 60px) 0;
}
.social__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(40px, 6.667vw, 60px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .social__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.social__image {
  width: 100%;
  max-width: 300px;
}
.social__image img {
  width: 100%;
}
.social .title {
  margin-bottom: 16px;
}
.social p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
}
.social__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: clamp(30px, 4.667vw, 40px);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.social .social-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 140%;
  text-transform: uppercase;
  color: var(--blue);
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  background: var(--blue-light);
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 16px 24px 16px 16px;
}
@media (max-width: 768px) {
  .social .social-item {
    width: 100%;
  }
}
.social .social-item img {
  width: clamp(30px, 4.667vw, 40px);
}
.social .social-item {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.social .social-item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.faq {
  padding: clamp(50px, 10vw, 100px) 0px;
}
.faq .title {
  text-align: center;
  margin-bottom: clamp(30px, 4.667vw, 40px);
}
.faq__list {
  width: 100%;
  max-width: 996px;
  margin: 0 auto;
  margin-bottom: clamp(30px, 4.667vw, 40px);
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
.faq .faq-item {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  background: var(--white);
  padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  cursor: pointer;
}
.faq .faq-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 2.8vw, 24px);
  line-height: 140%;
  color: var(--black);
}
.faq .faq-item__top::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  background-color: var(--blue);
  border-radius: 100px;
  min-width: clamp(30px, 4.267vw, 40px);
  max-width: clamp(30px, 4.267vw, 40px);
  height: clamp(30px, 4.267vw, 40px);
  background-image: url(../img/icons/arr.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: clamp(13px, 2.133vw, 20px);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.faq .faq-item__content {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  display: none;
  padding-top: 16px;
}
.faq .faq-item.active {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  background: var(--blue-light);
}
.faq .faq-item.active .faq-item__top::after {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.faq__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer {
  background: var(--blue-light);
  padding: clamp(50px, 10vw, 100px) 0px;
}
.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .footer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__main {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__main p {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(16px, 2.667vw, 24px);
  line-height: 140%;
  color: var(--black);
}
.footer__main .tel-box {
  margin-top: clamp(30px, 4.667vw, 40px);
}
.footer__main .btn {
  margin-top: clamp(30px, 4.667vw, 40px);
}
@media (max-width: 992px) {
  .footer__main {
    width: 100%;
  }
}
.footer__form {
  width: 50%;
}
.footer__form form {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 40px);
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.footer__form .form-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  margin-bottom: 8px;
}
.footer__form .form-group input {
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 16px clamp(18px, 2.8vw, 24px);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 140%;
  color: var(--black);
  width: 100%;
}
.footer__form .form-group input::-webkit-input-placeholder {
  color: var(--stroke);
}
.footer__form .form-group input::-moz-placeholder {
  color: var(--stroke);
}
.footer__form .form-group input:-ms-input-placeholder {
  color: var(--stroke);
}
.footer__form .form-group input::-ms-input-placeholder {
  color: var(--stroke);
}
.footer__form .form-group input::placeholder {
  color: var(--stroke);
}
@media (max-width: 992px) {
  .footer__form {
    width: 100%;
  }
}

.not-found {
  padding: clamp(60px, 12vw, 140px) 0;
}
.not-found__box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.not-found__code {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 1;
  color: var(--blue);
}
.not-found p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 140%;
  color: var(--black);
}
.not-found__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
}

.thankyou {
  padding: clamp(60px, 12vw, 140px) 0;
}
.thankyou__box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.thankyou__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4px;
}
.thankyou p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 140%;
  color: var(--black);
}
.thankyou__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
}