@charset "UTF-8";
:root {
  --body-background: #E5E7EB;
  --section-background: #FFF;
  --section-side-padding: calc((100vw - 1180px) / 2);
  --header-side-padding: max(calc((100vw - 1560px) / 2), 20px);
  --section-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
  --black-color: #222;
  --white-color: #fff;
  --gray-color: #828793;
  --light-gray-color: #CED0D5;
  --blue-color: #006DF0;
  --light-blue-color: #9AC2F1;
  --dark-blue-color: #074da2;
  --step-background: #F8FAFC;
}
@media (min-width: 576px) and (max-width: 1159px) {
  :root {
    --section-side-padding: 3.431372549vw;
    --header-side-padding: 3.431372549vw;
    --section-shadow: none;
  }
}
@media (max-width: 575px) {
  :root {
    --section-side-padding: 2.0833333333vw;
    --header-side-padding: 2.0833333333vw;
    --section-shadow: none;
  }
}

/**
 * Анимации и эффекты
 * На основе визуальных эффектов cosmoteam.ru
 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.stagger-animation > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-animation.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger-animation.visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger-animation.visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger-animation.visible > *:nth-child(3) {
  transition-delay: 0.15s;
}
.stagger-animation.visible > *:nth-child(4) {
  transition-delay: 0.2s;
}
.stagger-animation.visible > *:nth-child(5) {
  transition-delay: 0.25s;
}
.stagger-animation.visible > *:nth-child(6) {
  transition-delay: 0.3s;
}
.stagger-animation.visible > *:nth-child(7) {
  transition-delay: 0.35s;
}
.stagger-animation.visible > *:nth-child(8) {
  transition-delay: 0.4s;
}
.stagger-animation.visible > *:nth-child(9) {
  transition-delay: 0.45s;
}
.stagger-animation.visible > *:nth-child(10) {
  transition-delay: 0.5s;
}
.stagger-animation.visible > *:nth-child(n+11) {
  transition-delay: 0.55s;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px var(--header-side-padding) 0;
  z-index: 1000;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .header {
    padding: 1.6666666667vw var(--header-side-padding) 0;
  }
}
@media (max-width: 575px) {
  .header {
    display: none;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.header__logo-link:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.header__logo-img {
  display: block;
  width: 200px;
  height: auto;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .header__logo-img {
    width: 19.6078431373vw;
  }
}
.header__nav {
  display: block;
  position: fixed;
  top: 26px;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, 0);
}
@media (min-width: 576px) and (max-width: 1159px) {
  .header__nav {
    top: 1.6666666667vw;
  }
}
.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--white-color);
  box-shadow: 0 5px 24px -4px rgba(16, 24, 40, 0.1), 0 4px 8px -4px rgba(16, 24, 40, 0.04);
}
@media (min-width: 576px) and (max-width: 1159px) {
  .header__menu {
    padding: 0 1.4705882353vw;
    border-radius: 10px;
  }
}
.header__menu li {
  margin: 0;
}
@media (min-width: 1160px) {
  .header__menu li:nth-child(n+8) {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 1159px) {
  .header__menu li:nth-child(n+5) {
    display: none;
  }
}
.header__menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 40px;
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .header__menu a {
    padding: 1.9607843137vw 1.9607843137vw;
    font-size: 1.568627451vw;
  }
}
.header__menu a:hover {
  color: var(--blue-color);
}
.header__menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  border-radius: 999px 999px 0 0;
  background: var(--blue-color);
  transition: opacity 0.3s ease;
}
.header__menu li.active > a,
.header__menu li.current-menu-item.active > a {
  color: var(--blue-color);
}
.header__menu li.active > a::after,
.header__menu li.current-menu-item.active > a::after {
  opacity: 1;
}
.header__btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 10px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  background: var(--blue-color);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1), 4px 4px 8px 0 rgba(255, 255, 255, 0.1) inset;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .header__btn-call {
    padding: 1.568627451vw 3.137254902vw;
    font-size: 1.7647058824vw;
    border-radius: 0.9803921569vw;
  }
}
.header__btn-call:hover {
  background-color: var(--dark-blue-color);
}
.header__btn-call:active {
  transform: translateY(1px);
}

.mobile-header {
  display: none;
}
@media (max-width: 575px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 3.125vw;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0.4166666667vw 2.5vw 2.5vw;
    border-radius: 2.0833333333vw;
    background: var(--white-color);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    z-index: 100;
  }
  .mobile-header__logo-link {
    display: block;
    text-decoration: none;
  }
  .mobile-header__logo-link svg, .mobile-header__logo-link img {
    display: block;
    width: 10.4166666667vw;
    height: auto;
  }
  .mobile-header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2.5vw;
    width: 10.4166666667vw;
    height: 10.4166666667vw;
    border-radius: 2.0833333333vw;
    background: var(--blue-color);
    color: var(--white-color);
    border: none;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1), 4px 4px 8px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
  }
  .mobile-header__burger:hover {
    background-color: var(--dark-blue-color);
  }
  .mobile-header__burger svg {
    display: block;
    width: 3.3333333333vw;
    height: auto;
  }
  .mobile-header__btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12.5vw;
    padding: 2.5vw 5.4166666667vw;
    color: var(--white-color);
    font-size: 3.75vw;
    font-weight: 500;
    line-height: 150%;
    border-radius: 2.0833333333vw;
    background: var(--blue-color);
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1), 4px 4px 8px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
  }
  .mobile-header__btn-call:hover {
    background-color: var(--dark-blue-color);
  }
}

.mobile-nav {
  display: none;
}
@media (max-width: 575px) {
  .mobile-nav {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    padding-left: 45.8333333333vw;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-nav__close-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }
  .mobile-nav__close {
    display: block;
    position: absolute;
    top: 3.3333333333vw;
    right: 3.75vw;
    border: none;
    background: transparent;
    z-index: 6;
  }
  .mobile-nav__close svg {
    display: block;
    width: 3.3333333333vw;
    height: auto;
  }
  .mobile-nav__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding: 12.5vw 4.1666666667vw;
    margin: 0;
    gap: 4.1666666667vw;
    width: 54.1666666667vw;
    background: var(--blue-color);
    overflow: auto;
    list-style: none;
    z-index: 3;
    transform: translate(20.8333333333vw, 0);
    transition: all 0.3s ease;
  }
  .mobile-nav__menu li {
    display: block;
  }
  .mobile-nav__menu li a {
    color: var(--white-color);
    font-size: 3.75vw;
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
  }
  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
  }
  .mobile-nav.open .mobile-nav__menu {
    transform: translate(0, 0);
  }
}

/**
 * Стили попапа
 */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity visibility ease;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 99998;
}
.popup__content {
  position: relative;
  background: var(--white-color);
  border-radius: 15px;
  width: 560px;
  max-width: 80%;
  max-height: 90vh;
  transform: scale(0.9);
  z-index: 100000;
  transition: transform 0.3s ease;
  animation: fadeInScale 0.3s ease;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__content {
    width: 54.9019607843vw;
  }
}
@media (max-width: 575px) {
  .popup__content {
    width: 90%;
    max-width: 90%;
  }
}
.popup__content.for-text {
  width: 800px;
  overflow-y: auto;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__content.for-text {
    width: 78.431372549vw;
  }
}
@media (max-width: 575px) {
  .popup__content.for-text {
    width: 90%;
  }
}
.popup.active .popup__content {
  transform: scale(1);
}
.popup__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 17px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: #D9D9D9;
  cursor: pointer;
  z-index: 100001;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__close {
    top: 1.6666666667vw;
    right: 1.9607843137vw;
    width: 3.9215686275vw;
    height: 3.9215686275vw;
  }
}
@media (max-width: 575px) {
  .popup__close {
    top: 3.5416666667vw;
    right: 4.1666666667vw;
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
}
.popup__close svg {
  display: block;
  width: 16px;
  height: auto;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__close svg {
    width: 1.568627451vw;
  }
}
@media (max-width: 575px) {
  .popup__close svg {
    width: 3.3333333333vw;
  }
}
.popup__close:hover {
  opacity: 0.7;
}
.popup__body {
  padding: 32px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__body {
    padding: 3.137254902vw;
  }
}
@media (max-width: 575px) {
  .popup__body {
    padding: 5vw;
  }
}
.popup__title {
  color: var(--black-color);
  font-size: 26px;
  font-weight: 600;
  line-height: 130%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__title {
    font-size: 2.4509803922vw;
  }
}
@media (max-width: 575px) {
  .popup__title {
    font-size: 5.2083333333vw;
  }
}
.popup .request-form {
  margin-top: 32px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup .request-form {
    margin-top: 3.137254902vw;
  }
}
@media (max-width: 575px) {
  .popup .request-form {
    margin-top: 6.6666666667vw;
  }
  .popup .request-form__col:nth-child(1) {
    order: 1;
    width: 100% !important;
  }
  .popup .request-form__col:nth-child(2) {
    order: 3;
    width: 100% !important;
  }
  .popup .request-form__col:nth-child(3) {
    order: 2;
    width: 100% !important;
  }
  .popup .request-form__col:nth-child(4) {
    order: 4;
    width: 100% !important;
  }
}
.popup__content-text {
  color: var(--gray-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__content-text {
    font-size: 1.7647058824vw;
  }
}
@media (max-width: 575px) {
  .popup__content-text {
    font-size: 3.75vw;
  }
}
.popup__content-text p {
  margin: 0 0 18px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__content-text p {
    margin: 0 0 1.7647058824vw;
  }
}
@media (max-width: 575px) {
  .popup__content-text p {
    margin: 0 0 3.75vw;
  }
}
.popup__content-text p:last-child {
  margin-bottom: 0;
}
.popup__content-text h1, .popup__content-text h2, .popup__content-text h3, .popup__content-text h4, .popup__content-text h5, .popup__content-text h6 {
  margin: 26px 0 16px;
  color: var(--blue-color);
  font-size: 26px;
  font-weight: 600;
  line-height: 130%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__content-text h1, .popup__content-text h2, .popup__content-text h3, .popup__content-text h4, .popup__content-text h5, .popup__content-text h6 {
    margin: 2.5490196078vw 0 1.568627451vw;
    font-size: 2.4509803922vw;
  }
}
@media (max-width: 575px) {
  .popup__content-text h1, .popup__content-text h2, .popup__content-text h3, .popup__content-text h4, .popup__content-text h5, .popup__content-text h6 {
    margin: 5.4166666667vw 0 3.3333333333vw;
    font-size: 5.2083333333vw;
  }
}
.popup__content-text h1:first-child, .popup__content-text h2:first-child, .popup__content-text h3:first-child, .popup__content-text h4:first-child, .popup__content-text h5:first-child, .popup__content-text h6:first-child {
  margin-top: 0;
}
.popup__content-text strong {
  color: var(--blue-color);
  font-weight: 600;
}
.popup__content-text ul, .popup__content-text ol {
  margin: 0 0 18px;
  padding-left: 20px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__content-text ul, .popup__content-text ol {
    margin: 0 0 1.7647058824vw;
    padding-left: 1.9607843137vw;
  }
}
@media (max-width: 575px) {
  .popup__content-text ul, .popup__content-text ol {
    margin: 0 0 3.75vw;
    padding-left: 4.1666666667vw;
  }
}
.popup__content-text li {
  margin-bottom: 8px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__content-text li {
    margin-bottom: 0.7843137255vw;
  }
}
@media (max-width: 575px) {
  .popup__content-text li {
    margin-bottom: 1.6666666667vw;
  }
}
.popup__content-text a {
  color: var(--blue-color);
  text-decoration: none;
}
.popup__content-text a:hover {
  text-decoration: underline;
}
.popup__close_btn {
  display: inline-flex;
  margin-top: 24px;
  padding: 16px 32px;
  background: var(--blue-color);
  color: var(--white-color);
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .popup__close_btn {
    margin-top: 2.3529411765vw;
    padding: 1.568627451vw 3.137254902vw;
    border-radius: 0.9803921569vw;
    font-size: 1.7647058824vw;
  }
}
@media (max-width: 575px) {
  .popup__close_btn {
    margin-top: 5vw;
    padding: 3.3333333333vw 6.6666666667vw;
    border-radius: 2.0833333333vw;
    font-size: 3.75vw;
  }
}
.popup__close_btn.small {
  background: var(--blue-color);
  text-align: center;
}
.popup__close_btn:hover {
  background-color: var(--dark-blue-color);
}
.popup__close_btn:active {
  transform: translateY(1px);
}

.request-form {
  text-align: left;
}
.request-form__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__row {
    gap: 1.568627451vw;
  }
}
@media (max-width: 575px) {
  .request-form__row {
    gap: 3.3333333333vw;
  }
}
.request-form__row.small {
  gap: 12px;
}
@media (max-width: 575px) {
  .request-form__row.small {
    gap: 3.3333333333vw;
  }
}
.request-form__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(50% - 8px);
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__col {
    gap: 1.1764705882vw;
    width: calc(50% - 0.7843137255vw);
  }
}
@media (max-width: 575px) {
  .request-form__col {
    gap: 3.3333333333vw;
    width: 100%;
  }
}
.request-form__col.full {
  width: 100%;
}
.request-form__col.w200 {
  width: 200px !important;
}
@media (max-width: 575px) {
  .request-form__col.w200 {
    width: 100% !important;
  }
}
.request-form__col.wa200 {
  width: calc(100% - 212px) !important;
}
@media (max-width: 575px) {
  .request-form__col.wa200 {
    width: 100% !important;
  }
}
.request-form__col.w240 {
  width: 240px !important;
}
@media (max-width: 575px) {
  .request-form__col.w240 {
    width: 100% !important;
  }
}
.request-form__col.wa240 {
  width: calc(100% - 252px) !important;
}
@media (max-width: 575px) {
  .request-form__col.wa240 {
    width: 100% !important;
  }
}
.request-form__row.small .request-form__col {
  width: calc(50% - 6px);
}
@media (max-width: 575px) {
  .request-form__row.small .request-form__col {
    width: 100% !important;
  }
}
.request-form__row.small .request-form__col.full {
  width: 100%;
}
.request-form__field {
  display: block;
}
.request-form__phone-wrapper {
  position: relative;
}
.request-form__phone-wrapper .iti {
  --iti-spacer-horizontal: 18px;
  --iti-arrow-padding: 8px;
  --iti-selected-country-arrow-padding: calc(var(--iti-arrow-padding) + var(--iti-arrow-padding) + var(--iti-flag-width) + var(--iti-spacer-horizontal) + var(--iti-arrow-width) + var(--iti-input-padding));
  width: 100%;
  height: 60px;
  z-index: 100;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__phone-wrapper .iti {
    height: 5.8823529412vw;
  }
}
@media (max-width: 575px) {
  .request-form__phone-wrapper .iti {
    height: 14.5833333333vw;
  }
}
.request-form__phone-wrapper .iti .request-form__phone {
  height: 60px;
  max-width: 100%;
  padding-left: 10px;
  border-radius: 10px;
  color: var(--black-color);
  font-size: 18px;
  font-weight: 500;
  border: 1px solid var(--gray-color);
  outline: none;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__phone-wrapper .iti .request-form__phone {
    height: 5.8823529412vw;
    padding-left: 0.9803921569vw;
    border-radius: 0.9803921569vw;
    font-size: 1.7647058824vw;
  }
}
@media (max-width: 575px) {
  .request-form__phone-wrapper .iti .request-form__phone {
    width: 100%;
    height: 14.5833333333vw;
    padding-left: 2.0833333333vw;
    border-radius: 1.25vw;
    font-size: 3.9583333333vw;
  }
}
.request-form__phone-wrapper .iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.request-form__phone-wrapper .iti__selected-flag {
  padding: 0 10px;
  border-radius: 5px 0 0 5px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__phone-wrapper .iti__selected-flag {
    padding: 0 0.9803921569vw;
  }
}
.request-form__phone-wrapper .iti__country-list {
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__phone-wrapper .iti__country-list {
    max-height: 19.6078431373vw;
    border-radius: 0.4901960784vw;
  }
}
.request-form__radios {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__radios {
    gap: 1.1764705882vw;
  }
}
@media (max-width: 575px) {
  .request-form__radios {
    gap: 3.3333333333vw;
  }
}
.request-form__radios.small {
  gap: 12px;
}
@media (max-width: 575px) {
  .request-form__radios.small {
    gap: 3.3333333333vw;
  }
}
.request-form__radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.request-form__radio {
  display: block;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 16px;
  height: 16px;
  margin: 0 6px 0 0;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__radio {
    width: 1.568627451vw;
    height: 1.568627451vw;
    margin: 0 0.5882352941vw 0 0;
  }
}
@media (max-width: 575px) {
  .request-form__radio {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
    margin: 0 1.25vw 0 0;
  }
}
.request-form__radio::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--gray-color);
  z-index: 4;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__radio::before {
    width: 1.568627451vw;
    height: 1.568627451vw;
  }
}
@media (max-width: 575px) {
  .request-form__radio::before {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
}
.request-form__radio:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--blue-color);
  border: 5px solid var(--white-color);
  opacity: 0;
  z-index: 2;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__radio:after {
    width: 1.568627451vw;
    height: 1.568627451vw;
    border: 0.4901960784vw solid var(--white-color);
  }
}
@media (max-width: 575px) {
  .request-form__radio:after {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
    border: 1.0416666667vw solid var(--white-color);
  }
}
.request-form__radio:checked:after {
  opacity: 1;
}
.request-form__radio:checked::before {
  border-color: var(--blue-color);
}
.request-form__radio.blue-theme::before {
  border: 2px solid var(--light-blue-color);
}
.request-form__radio.blue-theme:after {
  background-color: var(--light-blue-color);
  border: 5px solid #2F4969;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__radio.blue-theme:after {
    border: 0.4901960784vw solid #2F4969;
  }
}
@media (max-width: 575px) {
  .request-form__radio.blue-theme:after {
    border: 1.0416666667vw solid #2F4969;
  }
}
.request-form__radio.blue-theme:checked::before {
  border-color: var(--light-blue-color);
}
.request-form__radio:checked + .request-form__radio-text {
  color: var(--blue-color);
  font-weight: 500;
}
.request-form__radio:checked + .request-form__radio-text.blue-theme {
  color: var(--light-blue-color);
}
.request-form__radio-text {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__radio-text {
    padding-top: 0.1960784314vw;
    font-size: 1.3725490196vw;
  }
}
@media (max-width: 575px) {
  .request-form__radio-text {
    padding-top: 0.4166666667vw;
    font-size: 3.75vw;
  }
}
.request-form__radio-text.blue-theme {
  color: var(--body-background);
}
.request-form__submit {
  display: block;
  width: 100%;
  height: 60px;
  background: var(--blue-color) url("../../assets/images/submit-icon.svg") no-repeat right 32px center/20px auto;
  color: var(--white-color);
  border: none;
  padding: 0 32px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__submit {
    height: 5.8823529412vw;
    background-position: right 3.137254902vw center;
    background-size: 1.9607843137vw auto;
    padding: 0 3.137254902vw;
    border-radius: 0.9803921569vw;
    font-size: 1.568627451vw;
  }
}
@media (max-width: 575px) {
  .request-form__submit {
    height: 14.5833333333vw;
    background-position: right 6.6666666667vw center;
    background-size: 4.1666666667vw auto;
    padding: 0 6.6666666667vw;
    border-radius: 1.25vw;
    font-size: 3.9583333333vw;
  }
}
.request-form__submit.small {
  background: var(--blue-color);
  text-align: center;
}
.request-form__submit:hover {
  background-color: var(--dark-blue-color);
}
.request-form__submit:active {
  transform: translateY(1px);
}
.request-form__agreement {
  color: var(--gray-color);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .request-form__agreement {
    font-size: 1.2745098039vw;
  }
}
@media (max-width: 575px) {
  .request-form__agreement {
    font-size: 2.7083333333vw;
  }
}
.request-form__agreement a {
  color: var(--blue-color);
  text-decoration: underline;
}
.request-form__agreement.text-align-left {
  text-align: left;
}
.request-form__agreement.blue-theme {
  color: var(--body-background);
}
.request-form__agreement.blue-theme a {
  color: var(--body-background);
}
.request-form__message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 400px;
  padding: 15px 40px 15px 15px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 990000;
  display: flex;
  align-items: center;
  animation: slideInUp 0.3s ease-out;
}
@media (max-width: 575px) {
  .request-form__message {
    min-width: 280px;
    max-width: calc(100% - 40px);
    bottom: 15px;
    right: 15px;
    left: 15px;
    max-width: none;
  }
}
.request-form__message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.request-form__message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.request-form__message-text {
  flex: 1;
  line-height: 1.5;
}
.request-form__message-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.request-form__message-close:hover {
  opacity: 1;
}
.request-form__message-close:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 3px;
}
@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.page__content {
  padding-top: 120px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .page__content {
    padding-top: 11.7647058824vw;
  }
}
@media (max-width: 575px) {
  .page__content {
    padding-top: 37.5vw;
  }
}
.page__header {
  margin-bottom: 48px;
  text-align: center;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .page__header {
    margin-bottom: 4.7058823529vw;
  }
}
@media (min-width: 576px) and (max-width: 1159px) {
  .page__header {
    margin-bottom: 6.6666666667vw;
  }
}
.page__title {
  color: var(--black-color);
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  line-height: 120%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .page__title {
    font-size: 3.5294117647vw;
    line-height: 130%;
  }
}
@media (max-width: 575px) {
  .page__title {
    font-size: 5.8333333333vw;
    line-height: 130%;
  }
}

.text-block {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-color);
}
.text-block h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 30px 0 20px;
  color: var(--black-color);
  line-height: 1.3;
}
@media (max-width: 575px) {
  .text-block h1 {
    font-size: 28px;
    margin: 25px 0 15px;
  }
}
.text-block h1:first-child {
  margin-top: 0;
}
.text-block h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 25px 0 18px;
  color: var(--black-color);
  line-height: 1.3;
}
@media (max-width: 575px) {
  .text-block h2 {
    font-size: 24px;
    margin: 20px 0 15px;
  }
}
.text-block h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0 15px;
  color: var(--black-color);
  line-height: 1.4;
}
@media (max-width: 575px) {
  .text-block h3 {
    font-size: 20px;
    margin: 18px 0 12px;
  }
}
.text-block h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 18px 0 12px;
  color: var(--black-color);
  line-height: 1.4;
}
@media (max-width: 575px) {
  .text-block h4 {
    font-size: 18px;
    margin: 15px 0 10px;
  }
}
.text-block h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 10px;
  color: var(--black-color);
  line-height: 1.4;
}
.text-block h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 8px;
  color: var(--black-color);
  line-height: 1.4;
}
.text-block p {
  margin: 0 0 20px;
}
@media (max-width: 575px) {
  .text-block p {
    margin-bottom: 18px;
  }
}
.text-block p:last-child {
  margin-bottom: 0;
}
.text-block ul, .text-block ol {
  margin: 0 0 20px;
  padding-left: 30px;
}
@media (max-width: 575px) {
  .text-block ul, .text-block ol {
    padding-left: 25px;
    margin-bottom: 18px;
  }
}
.text-block ul li, .text-block ol li {
  margin-bottom: 10px;
  line-height: 1.8;
}
@media (max-width: 575px) {
  .text-block ul li, .text-block ol li {
    margin-bottom: 8px;
  }
}
.text-block ul li:last-child, .text-block ol li:last-child {
  margin-bottom: 0;
}
.text-block ul ul, .text-block ol ol, .text-block ul ol, .text-block ol ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.text-block blockquote {
  margin: 25px 0;
  padding: 20px 30px;
  border-left: 4px solid var(--blue-color);
  background: var(--light-gray-color);
  font-style: italic;
  color: var(--black-color);
}
@media (max-width: 575px) {
  .text-block blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left-width: 3px;
  }
}
.text-block blockquote p {
  margin: 0 0 10px;
}
.text-block blockquote p:last-child {
  margin-bottom: 0;
}
.text-block blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-style: normal;
  color: var(--gray-color);
}
.text-block blockquote cite::before {
  content: "— ";
}
.text-block img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px 0;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .text-block img {
    margin: 20px 0;
  }
}
.text-block img.alignleft {
  float: left;
  margin: 0 25px 20px 0;
}
@media (max-width: 575px) {
  .text-block img.alignleft {
    float: none;
    margin: 20px 0;
  }
}
.text-block img.alignright {
  float: right;
  margin: 0 0 20px 25px;
}
@media (max-width: 575px) {
  .text-block img.alignright {
    float: none;
    margin: 20px 0;
  }
}
.text-block img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.text-block a {
  color: var(--blue-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.text-block a:hover {
  color: var(--dark-blue-color);
  text-decoration: underline;
}
.text-block a:visited {
  color: var(--light-blue-color);
}
.text-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 15px;
}
@media (max-width: 575px) {
  .text-block table {
    font-size: 14px;
    margin: 20px 0;
    display: block;
    overflow-x: auto;
  }
}
.text-block table th, .text-block table td {
  padding: 12px 15px;
  border: 1px solid var(--body-background);
  text-align: left;
}
@media (max-width: 575px) {
  .text-block table th, .text-block table td {
    padding: 8px 10px;
  }
}
.text-block table th {
  background: var(--body-background);
  font-weight: 600;
  color: var(--black-color);
}
.text-block table tr:nth-child(even) {
  background: var(--light-gray-color);
}
.text-block code {
  background: var(--light-gray-color);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: var(--blue-color);
}
.text-block pre {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  overflow-x: auto;
  margin: 25px 0;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .text-block pre {
    padding: 15px;
    margin: 20px 0;
  }
}
.text-block pre code {
  background: transparent;
  padding: 0;
  color: #333;
}
.text-block hr {
  border: none;
  border-top: 2px solid #dee2e6;
  margin: 30px 0;
}
@media (max-width: 575px) {
  .text-block hr {
    margin: 25px 0;
  }
}
.text-block strong, .text-block b {
  font-weight: 600;
  color: var(--black-color);
}
.text-block em, .text-block i {
  font-style: italic;
}
.text-block del, .text-block s {
  text-decoration: line-through;
  opacity: 0.7;
}
.text-block u {
  text-decoration: underline;
}
.text-block .wp-block-separator {
  margin: 30px 0;
  border: none;
  border-top: 2px solid #dee2e6;
}
@media (max-width: 575px) {
  .text-block .wp-block-separator {
    margin: 25px 0;
  }
}

.error-404 {
  padding: 100px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .error-404 {
    padding: 80px 0 60px;
    min-height: 50vh;
  }
}
.error-404__content {
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .error-404__content {
    max-width: 100%;
    width: 100%;
    padding: 37.5vw 0;
  }
}
.error-404__number {
  font-size: 120px;
  font-weight: 700;
  color: var(--blue-color);
  line-height: 1;
  margin: 0 0 20px;
}
@media (max-width: 575px) {
  .error-404__number {
    font-size: 80px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .error-404__number {
    font-size: 60px;
  }
}
.error-404__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--black-color);
}
@media (max-width: 575px) {
  .error-404__title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .error-404__title {
    font-size: 24px;
  }
}
.error-404__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-color);
  margin: 0 0 40px;
}
@media (max-width: 575px) {
  .error-404__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.error-404__actions {
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .error-404__actions {
    margin-bottom: 40px;
  }
}
.error-404__button {
  display: inline-block;
  background: var(--blue-color);
  color: var(--white-color);
  padding: 14px 32px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.error-404__button:hover {
  background: var(--dark-blue-color);
  text-decoration: none;
}
@media (max-width: 575px) {
  .error-404__button {
    padding: 12px 28px;
    font-size: 14px;
  }
}

.footer {
  margin-top: 10px;
  max-width: 100%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer {
    margin-top: 0.4901960784vw;
  }
}
@media (max-width: 575px) {
  .footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 1.0416666667vw;
    gap: 6.6666666667vw;
  }
}
.footer__columns {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__columns {
    gap: 3.137254902vw;
  }
}
@media (max-width: 575px) {
  .footer__columns {
    display: contents;
  }
}
.footer__column--left {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .footer__column--left {
    display: contents;
    width: 100%;
    flex-shrink: 0;
  }
}
.footer__column--right {
  width: 350px;
  flex-shrink: 0;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__column--right {
    width: 37.2549019608vw;
  }
}
@media (max-width: 575px) {
  .footer__column--right {
    order: 5;
    width: 100%;
  }
}
.footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__row {
    flex-wrap: wrap;
    row-gap: 3.137254902vw;
  }
}
@media (max-width: 575px) {
  .footer__row {
    display: contents;
  }
}
.footer__row + .footer__row {
  margin-top: 80px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__row + .footer__row {
    margin-top: 32px;
  }
}
@media (max-width: 575px) {
  .footer__row + .footer__row {
    margin-top: 0;
  }
}
.footer__logo-block {
  width: 270px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__logo-block {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .footer__logo-block {
    order: 1;
    width: calc(50% - 3.3333333333vw);
  }
}
.footer__logo {
  width: 200px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__logo {
    width: 19.6078431373vw;
  }
}
@media (max-width: 575px) {
  .footer__logo {
    width: 41.6666666667vw;
    max-width: 100%;
  }
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__social {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 16px;
  padding: 0 12px;
  max-width: 180px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__social {
    margin-top: 3.137254902vw;
    gap: 1.1764705882vw;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .footer__social {
    margin-top: 5vw;
    gap: 3.3333333333vw;
    padding: 0;
    max-width: 37.5vw;
  }
}
.footer__social-link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  opacity: 0.85;
}
.footer__social-link img {
  display: block;
  width: 32px;
  height: auto;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__social-link img {
    width: 3.137254902vw;
  }
}
@media (max-width: 575px) {
  .footer__social-link img {
    width: 10vw;
  }
}
.footer__menu-block {
  width: 200px;
  padding-top: 34px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__menu-block {
    width: 50%;
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .footer__menu-block {
    width: calc(50% - 3.3333333333vw);
    order: 2;
    padding-top: 0;
  }
}
.footer__menu-heading {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__menu-heading {
    font-size: 1.568627451vw;
  }
}
@media (max-width: 575px) {
  .footer__menu-heading {
    font-size: 4.1666666667vw;
  }
}
.footer__menu {
  display: block;
  margin-top: 24px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__menu {
    margin-top: 1.9607843137vw;
  }
}
@media (max-width: 575px) {
  .footer__menu {
    margin-top: 4.1666666667vw;
  }
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__menu ul {
    gap: 1.1764705882vw;
  }
}
@media (max-width: 575px) {
  .footer__menu ul {
    gap: 2.5vw;
  }
}
.footer__menu ul li {
  display: block;
}
.footer__menu ul li a {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__menu ul li a {
    font-size: 1.4705882353vw;
  }
}
@media (max-width: 575px) {
  .footer__menu ul li a {
    font-size: 3.5416666667vw;
    line-height: 140%;
  }
}
.footer__menu ul li a:hover {
  color: var(--blue-color);
}
.footer__contacts-block {
  width: 200px;
  padding-top: 34px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__contacts-block {
    width: 50%;
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .footer__contacts-block {
    padding-top: 0;
    width: calc(50% - 3.3333333333vw);
    order: 4;
  }
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__contacts {
    margin-top: 1.9607843137vw;
    gap: 1.1764705882vw;
    font-size: 1.4705882353vw;
  }
}
@media (max-width: 575px) {
  .footer__contacts {
    margin-top: 4.1666666667vw;
    gap: 2.5vw;
    font-size: 3.5416666667vw;
  }
}
.footer__contacts br {
  display: none;
}
.footer__contacts a {
  color: var(--gray-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__contacts a:hover {
  color: var(--blue-color);
}
.footer__copyright-block {
  width: 270px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__copyright-block {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .footer__copyright-block {
    width: 100%;
    order: 10;
  }
}
.footer__copyright {
  color: var(--light-gray-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__copyright {
    font-size: 1.568627451vw;
  }
}
@media (max-width: 575px) {
  .footer__copyright {
    font-size: 4.1666666667vw;
    text-align: center;
  }
}
.footer__copyright2 {
  margin-top: 4px;
  color: var(--light-gray-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__copyright2 {
    margin-top: 0.3921568627vw;
    font-size: 1.1764705882vw;
  }
}
@media (max-width: 575px) {
  .footer__copyright2 {
    margin-top: 0.8333333333vw;
    font-size: 2.7083333333vw;
    line-height: 150%;
    text-align: center;
  }
}
.footer__link-block {
  width: 200px;
  color: var(--light-gray-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__link-block {
    width: 50%;
    font-size: 1.1764705882vw;
  }
}
@media (max-width: 575px) {
  .footer__link-block {
    order: 6;
    width: 100%;
    text-align: center;
    font-size: 2.7083333333vw;
    line-height: 150%;
  }
}
.footer__link-block a {
  color: var(--light-gray-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__link-block a:hover {
  color: var(--blue-color);
}
.footer__form-title {
  padding-top: 22px;
  color: var(--black-color);
  font-size: 26px;
  font-weight: 600;
  line-height: 130%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__form-title {
    padding-top: 0;
    font-size: 2.4509803922vw;
  }
}
@media (max-width: 575px) {
  .footer__form-title {
    padding-top: 0;
    font-size: 5.2083333333vw;
    text-align: center;
  }
}
.footer__form-description {
  margin-top: 16px;
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer__form-description {
    margin-top: 1.1764705882vw;
    font-size: 1.4705882353vw;
  }
}
@media (max-width: 575px) {
  .footer__form-description {
    margin-top: 2.5vw;
    text-align: center;
    font-size: 3.5416666667vw;
    line-height: 140%;
  }
}
.footer .request-form {
  margin-top: 24px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .footer .request-form {
    margin-top: 3.137254902vw;
  }
}
@media (max-width: 575px) {
  .footer .request-form {
    margin-top: 6.6666666667vw;
  }
  .footer .request-form__agreement {
    text-align: center !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
  padding: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black-color);
  background: var(--body-background);
}
@media (min-width: 576px) and (max-width: 1159px) {
  body {
    padding: 0.4901960784vw;
    font-size: 1.7647058824vw;
    line-height: 1.4;
  }
}
@media (max-width: 575px) {
  body {
    padding: 1.0416666667vw 0vw;
    font-size: 3.9583333333vw;
    line-height: 1.4;
  }
}

.section {
  border-radius: 16px;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: var(--section-side-padding);
  padding-right: var(--section-side-padding);
  background: var(--section-background);
  box-shadow: var(--section-shadow);
}
@media (min-width: 576px) and (max-width: 1159px) {
  .section {
    border-radius: 1.568627451vw;
    padding-top: 6.2745098039vw;
    padding-bottom: 6.2745098039vw;
  }
}
@media (max-width: 575px) {
  .section {
    max-width: 100%;
    overflow: hidden;
    border-radius: 1.6666666667vw;
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}

.section-blue-theme {
  background: linear-gradient(90deg, #283F5A 0%, #426590 100%), #FFF;
}

.section + .section, .popup + .section {
  margin-top: 10px;
}
@media (min-width: 576px) and (max-width: 1159px) {
  .section + .section, .popup + .section {
    margin-top: 0.4901960784vw;
  }
}
@media (max-width: 575px) {
  .section + .section, .popup + .section {
    margin-top: 1.0416666667vw;
  }
}

.section-enable-full-width {
  margin-left: calc(var(--section-side-padding) * -1);
  margin-right: calc(var(--section-side-padding) * -1);
}

/*# sourceMappingURL=style.css.map */
