@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat-Bold"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: local("Montserrat-Black"), url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: local("Montserrat-ExtraBold"), url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat-SemiBold"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat-Regular"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat-Medium"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MontserratAlternates";
  font-style: normal;
  font-weight: 700;
  src: local("MontserratAlternates-Bold"), url("../fonts/MontserratAlternates-Bold.woff2") format("woff2"), url("../fonts/MontserratAlternates-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MontserratAlternates";
  font-style: normal;
  font-weight: 600;
  src: local("MontserratAlternates-SemiBold"), url("../fonts/MontserratAlternates-SemiBold.woff2") format("woff2"), url("../fonts/MontserratAlternates-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MontserratAlternates";
  font-style: normal;
  font-weight: 400;
  src: local("MontserratAlternates-Regular"), url("../fonts/MontserratAlternates-Regular.woff2") format("woff2"), url("../fonts/MontserratAlternates-Regular.woff") format("woff");
  font-display: swap;
}
html {
  box-sizing: border-box;
  /* font-size: 10px; */
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

*:first-child {
  margin-top: 0;
}

*:last-child {
  margin-bottom: 0;
}

*::-moz-selection {
  color: #ffffff;
  background-color: #e92b37;
  /* Safari, Chrome, Opera */
}

*::selection {
  color: #ffffff;
  background-color: #e92b37;
  /* Safari, Chrome, Opera */
}

*::-moz-selection {
  color: #ffffff;
  background-color: #e92b37;
  /* FireFox */
}

a::-moz-selection, a *::-moz-selection, button::-moz-selection, button *::-moz-selection {
  background-color: #6E6E8A;
  /* Safari, Chrome, Opera */
}



body header, body footer {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #242429;
  background-color: #ffffff;
  min-width: 320px;
}
@media (min-width: 720px) {
  body header, body footer {
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  body header, body footer {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (min-width: 1600px) {
  body header, body footer {
    font-size: 17px;
    line-height: 32px;
  }
}



b {
  font-weight: 600;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

dl {
  margin-top: 0;
  margin-bottom: 0;
}

header img, footer img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

button {
  color: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

input,
button,
textarea,
select {
  font: inherit;
  letter-spacing: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  margin-bottom: 0;
}


:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}


.container {
  display: block;
  width: 100%;
  max-width: 1608px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
}
@media (min-width: 720px) {
  .container {
    padding-right: 22px;
    padding-left: 22px;
  }
}
@media (min-width: 980px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-left: 62px;
    padding-right: 62px;
  }
}
@media (min-width: 1400px) {
  .container {
    padding-left: 94px;
    padding-right: 94px;
  }
}

.container .container {
  padding-right: 0;
  padding-left: 0;
}

.container-paddings {
  padding-right: 18px;
  padding-left: 18px;
}
@media (min-width: 720px) {
  .container-paddings {
    padding-right: 22px;
    padding-left: 22px;
  }
}
@media (min-width: 980px) {
  .container-paddings {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .container-paddings {
    padding-left: 62px;
    padding-right: 62px;
  }
}
@media (min-width: 1400px) {
  .container-paddings {
    padding-left: 94px;
    padding-right: 94px;
  }
}

.container-escape {
  width: calc(100% + 36px);
  margin-right: -18px;
  margin-left: -18px;
}
@media (min-width: 720px) {
  .container-escape {
    width: calc(100% + 44px);
    margin-right: -22px;
    margin-left: -22px;
  }
}
@media (min-width: 1200px) {
  .container-escape {
    width: calc(100% + 68px);
    margin-right: -34px;
    margin-left: -34px;
  }
}
@media (min-width: 1400px) {
  .container-escape {
    width: calc(100% + 80px);
    margin-right: -40px;
    margin-left: -40px;
  }
}

h1,
.h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 720px) {
  h1,
  .h1 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

h2,
.h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 720px) {
  h2,
  .h2 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

h3,
.h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 720px) {
  h3,
  .h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

h4,
.h4 {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
}
@media (min-width: 720px) {
  h4,
  .h4 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 17px;
    line-height: 24px;
  }
}

.bg-light {
  background-color: #f3f5fd;
}

.bg-white {
  background-color: #ffffff;
}


.underline {
  position: relative;
  display: inline-block;
}
@media (min-width: 980px) {
  .underline:hover {
    color: #e92b37;
  }
}
.underline::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #e92b37;
  transition: width 0.5s;
}
@media (min-width: 980px) {
  .underline:hover::after {
    width: 100%;
    left: 0;
    transition: width 0.5s;
  }
}

.menu-link {
  transition: color 0.3s, background-color 0.3s;
}
@media (min-width: 980px) {
  .menu-link:focus-visible, .menu-link:hover {
    color: #e92b37;
    background-color: #f3f5fd;
  }
}

.nav a {
  text-decoration: none;
}
.nav__inner {
  width: 100%;
}
.nav__list {
  display: flex;
  width: 100%;
  padding-left: 0;
  list-style-type: none;
}
@media (max-width: 979px) {
  .nav__list {
    flex-direction: column;
  }
}
@media (min-width: 980px) {
  .nav__list {
    justify-content: space-between;
  }
}
@media (min-width: 980px) {
  .nav__item:not(:last-child) {
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .nav__item:not(:last-child) {
    padding-right: 30px;
  }
}
@media (min-width: 1400px) {
  .nav__item:not(:last-child) {
    padding-right: 48px;
  }
}

.nav-item__head {
  display: flex;
  -moz-column-gap: 10px;
  column-gap: 10px;
  width: 100%;
  position: relative;
}
@media (min-width: 980px) {
  .nav-item__head {
    position: static;
  }
}
.nav-item__title {
  flex-grow: 1;
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  color: inherit;
  white-space: nowrap;
}
@media (min-width: 980px) {
  .nav-item__title {
    transition-property: color;
    transition-duration: 0.3s;
  }
}
@media (min-width: 980px) and (max-width: 1199px) {
  .nav-item__title {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    line-height: 18px;
  }
}
@media (min-width: 1200px) {
  .nav-item__title {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .nav-item__title {
    font-size: 16px;
  }
}
@media (min-width: 980px) {
  .nav-item.active .nav-item__title, .nav-item__inner:focus-visible .nav-item__title, .nav-item__inner:hover .nav-item__title {
    color: #e92b37;
  }
}
.nav-item__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 4px;
  background-color: transparent;
  border: none;
}
@media (min-width: 980px) {
  .nav-item__btn {
    display: none;
  }
}
@media (max-width: 979px) {
  .nav-item__icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    color: #8d8d9f;
    fill: currentColor;
    opacity: 0.5;
    transform: scale(1, 1);
    transition: color 0.3s, transform 0.3s;
  }
}
@media (min-width: 980px) {
  .nav-item__icon {
    display: none;
  }
}
.nav-item__body {
  font-weight: 500;
  font-size: 17px;
  height: 0;
  line-height: 24px;
  color: #4b4b61;
  background-color: #ffffff;
  overflow: hidden;
  visibility: hidden;
  transition-property: height, opacity, transform, box-shadow, z-index;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.3s, 0s;
  transition-delay: 0s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 980px) {
  .nav-item__body {
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 8px;
    font-size: 16px;
    opacity: 0;
    height: auto;
  }
}
@media (min-width: 980px) {
  .nav-item:not(.nav-item--relative) .nav-item__body {
    top: calc(100% - 10px);
  }
}
@media (min-width: 1600px) {
  .nav-item:not(.nav-item--relative) .nav-item__body {
    top: calc(100% - 14px);
  }
}
.nav-item__list {
  list-style-type: none;
  padding-top: 4px;
  padding-left: 0;
}
@media (min-width: 980px) {
  .nav-item__list {
    padding: 24px 40px;
  }
}
.nav-item__link-wrap {
  display: block;
}
@media (min-width: 980px) {
  .nav-item__link-wrap {
    display: inline-block;
  }
}
.nav-item__link {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  color: inherit;
}
@media (min-width: 1400px) {
  .nav-item__link {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.nav-item__btn-more {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  border-radius: 0;
}
@media (min-width: 1600px) {
  .nav-item__btn-more {
    font-size: 16px;
  }
}
@media (max-width: 979px) {
  .nav-item__btn-more {
    text-align: start;
  }
}
@media (max-width: 719px) {
  .nav-item__btn-more {
    padding: 12px 0;
    background-color: transparent;
  }
}
@media (max-width: 719px) {
  .nav-item__btn-more:hover {
    background-color: transparent;
  }
}
@media (max-width: 979px) {
  .nav-item.active .nav-item__icon {
    color: #242429;
    transform: scale(1, -1);
  }
}
.nav-item.active .nav-item__body {
  visibility: visible;
  margin-bottom: 24px;
}
@media (min-width: 980px) {
  .nav-item.active .nav-item__body, .nav-item__inner:hover .nav-item__body {
    visibility: visible;
    z-index: 1;
    background-color: #ffffff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 14px 40px rgba(165, 165, 197, 0.4), 0 -1px 0 #e4e4ee;
    opacity: 1;
    margin-bottom: 0;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 980px) {
  .nav-item--relative .nav-item__inner, .nav-item--relative .nav-item__inner:hover .nav-item__inner {
    position: relative;
  }
}
@media (min-width: 980px) {
  .nav-item--relative .nav-item__body, .nav-item--relative .nav-item__inner:hover .nav-item__body {
    top: 100%;
    left: -30px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(165, 165, 197, 0.4);
    transform: translateX(0);
    width: unset;
  }
}
@media (min-width: 980px) and (max-width: 1399px) {
  .nav-item--relative-last .nav-item__body, .nav-item--relative-last .nav-item__inner:hover .nav-item__body {
    left: auto;
    right: -30px;
  }
}
.nav-item--relative .nav-item__head {
  position: relative;
}
@media (min-width: 980px) {
  .nav-item--relative.active .nav-item__body, .nav-item--relative:hover .nav-item__body {
    transform: translate(0, 0);
  }
}

.tel-block {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
}
.tel-block a {
  text-decoration: none;
}
.tel-block__caption {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #8d8d9f;
  white-space: nowrap;
  font-weight: 500;
}
@media (min-width: 980px) {
  .tel-block__caption {
    text-align: right;
  }
}
.tel-block__tels {
  display: flex;
  gap: 4px 8px;
}
.tel-block__tel {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #e92b37;
}
.tel-block__tel-sec {
  display: block;
  padding-top: 4px;
  white-space: nowrap;
  color: #4b4b61;
}
.tel-block--black {
  text-align: right;
}
.tel-block--black .tel-block__tel {
  color: inherit;
  font-size: 15px;
}
.tel-block--footer {
  font-size: 13px;
}
.tel-block--footer .tel-block__tel {
  font-size: 16px;
}
@media (max-width: 979px) {
  .tel-block--mobile-sm .tel-block__tel {
    color: inherit;
  }
}
@media (max-width: 719px) {
  .tel-block--mobile-sm .tel-block__tel {
    font-size: 16px;
  }
}

.header-form {
  position: relative;
  top: unset;
  z-index: 49;
}
.header-form.active {
  z-index: 100;
}
.header-form__wrapper {
  position: relative;
}
.header-form__container {
  position: relative;
  transition: opacity 0.3s;
}
@media (max-width: 719px) {
  .header-form__container {
    transition: height 0.3s ease-in-out, opacity 0.3s;
    overflow: hidden;
  }
}
@media (min-width: 720px) {
  .header-form__container {
    height: unset !important;
  }
}
@media (max-width: 719px) {
  .header-form--closed:not(.header-form--index) .header-form__container {
    height: 0;
  }
}
@media (max-width: 719px) {
  .header-form--closed:not(.header-form--index) .header-form__container {
    height: auto;
  }
}
.header-form__container.loading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s;
}
@media (max-width: 719px) {
  .header-form__container.loading {
    transition: height 0.3s ease-in-out, opacity 0s;
  }
}
.header-form__container.loaded {
  opacity: 1;
  transition: opacity 0.3s;
}
@media (max-width: 719px) {
  .header-form__container.loaded {
    transition: height 0.3s ease-in-out, opacity 0.3s;
  }
}
.header-form__inner {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 24px;
  padding-left: 24px;
  position: relative;
  background-color: #6E6E8A;
  background-color: rgba(110, 110, 138, 0.9);
  border-radius: 32px;
  transition: padding 0.3s;
}
@media (max-width: 979px) {
  .header-form__inner {
    flex-direction: column;
    row-gap: 12px;
    padding-right: 18px;
    padding-left: 18px;
  }
}
@media (max-width: 719px) {
  .header-form__inner {
    padding: 0;
    background-color: transparent;
  }
}
.header-form__inner:not(:only-child):not(.active) {
  display: none;
}
.header-form__list-wrap {
  flex-grow: 1;
}
.header-form__list {
  display: flex;
  width: 100%;
  padding-left: 0;
  list-style-type: none;
}
@media (max-width: 979px) {
  .header-form__list {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.header-form__submit-wrap {
  flex-shrink: 0;
}
@media (min-width: 720px) and (max-width: 979px) {
  .header-form__submit-wrap {
    position: absolute;
    bottom: 20px;
    right: 18px;
    width: calc(25% - 20px);
  }
}
.header-form__submit {
  width: 100%;
  height: 56px;
  font-size: 12px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 16px;
  box-shadow: none;
}
@media (min-width: 720px) {
  .header-form__submit {
    height: 56px;
  }
}
@media (min-width: 1200px) {
  .header-form__submit {
    width: 188px;
  }
}
@media (min-width: 1400px) {
  .header-form__submit {
    height: 72px;
    font-size: 13px;
  }
}
.header-form__formclose-wrap {
  position: relative;
  margin-top: 6px;
}
@media (min-width: 720px) {
  .header-form__formclose-wrap {
    display: none;
  }
}
.header-form__formclose-btn {
  width: 100%;
  height: 52px;
  padding-right: 20px;
  padding-left: 20px;
  font-weight: 600;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #6E6E8A;
  border-width: 0;
  position: relative;
  overflow: hidden;
  transition: height 0.3s;
}
.header-form__formclose-btn.active {
  height: 44px;
}
.header-form__formclose-btn svg {
  transition: opacity 0.9s;
}
.header-form__formclose-btn.active svg {
  opacity: 0;
  transition: opacity 0.3s;
}
.header-form__formclose-text:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.7s;
}
.header-form__formclose-text:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translate(-50%, 60px);
  transition: transform 0.3s;
}
.header-form__formclose-btn.active .header-form__formclose-text:first-child {
  transform: translate(-50%, -60px);
  transition: transform 0.3s;
}
.header-form__formclose-btn.active .header-form__formclose-text:nth-child(2) {
  transform: translate(-50%, 40%);
  transition: transform 0.7s;
}
@media (max-width: 719px) {
  .header-form__item {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .header-form__item:first-child {
    border-right: 1px solid #e4e4ee;
    border-radius: 16px 0 0 16px;
  }
}
@media (min-width: 720px) {
  .header-form__item:nth-child(2) {
    border-radius: 0 16px 16px 0;
  }
}
@media (min-width: 980px) {
  .header-form__item:nth-child(2) {
    margin-right: 8px;
  }
}
@media (max-width: 719px) {
  .header-form__item:nth-child(2) {
    border-right: 1px solid #e4e4ee;
  }
}
.header-form__item:nth-child(3) {
  border-radius: 16px 0 0 16px;
  border-right: 1px solid #e4e4ee;
}
@media (max-width: 719px) {
  .header-form__item:nth-child(3) {
    width: 50%;
  }
}
@media (min-width: 720px) and (max-width: 979px) {
  .header-form__item:nth-child(-n+2) {
    width: 50%;
  }
}
@media (min-width: 720px) and (max-width: 979px) {
  .header-form__item:nth-child(n+3) {
    width: calc(25% - 2px);
  }
}
.header-form__item:nth-child(3) {
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 980px) {
  .header-form__item:nth-child(3) {
    width: 140px;
  }
}
@media (min-width: 1200px) {
  .header-form__item:nth-child(3) {
    width: 170px;
  }
}
@media (min-width: 1400px) {
  .header-form__item:nth-child(3) {
    width: 180px;
  }
}
@media (min-width: 1600px) {
  .header-form__item:nth-child(3) {
    width: 200px;
  }
}
.header-form__item:nth-child(4) {
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 0 16px 16px 0;
}
@media (min-width: 720px) {
  .header-form__item:nth-child(4) {
    margin-right: 8px;
  }
}
@media (min-width: 980px) {
  .header-form__item:nth-child(4) {
    width: 139px;
  }
}
@media (min-width: 1200px) {
  .header-form__item:nth-child(4) {
    width: 170px;
  }
}
@media (min-width: 1400px) {
  .header-form__item:nth-child(4) {
    width: 180px;
  }
}
@media (min-width: 1600px) {
  .header-form__item:nth-child(4) {
    width: 200px;
  }
}
@media (max-width: 719px) {
  .header-form__item:nth-child(4) {
    width: 50%;
  }
}
.header-form__item:nth-child(5) {
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 980px) {
  .header-form__item:nth-child(5) {
    width: 150px;
  }
}
@media (min-width: 1200px) {
  .header-form__item:nth-child(5) {
    width: 180px;
  }
}
@media (min-width: 1400px) {
  .header-form__item:nth-child(5) {
    width: 188px;
  }
}
@media (min-width: 1600px) {
  .header-form__item:nth-child(5) {
    width: 220px;
  }
}
.header-form--index .header-form__container {
  height: auto;
}
.header-form--index .header-form__formclose-btn {
  display: none;
}
.header-form--light {
  z-index: 20;
  position: relative;
}
.header-form--light.active {
  z-index: 100;
}
.header-form--light .header-form__wrapper {
  padding: 7px;
  background-color: #f3f5fd;
  border-radius: 16px;
}
.header-form--light .header-form__inner {
  padding: 0;
}
.header-form--light .header-form__formclose-wrap {
  display: none;
}
@media (max-width: 719px) {
  .header-form--light .header-form__container {
    height: unset !important;
  }
}
.header-form--light .form-item:nth-child(2):not(.form-item--active) {
  position: relative;
}
@media (min-width: 980px) {
  .header-form--light .header-form__inner {
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
@media (max-width: 1399px) {
  .header-form--light .header-form__list {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
.header-form--light .header-form__item {
  margin: 0;
  width: 21%;
  border: 1px solid #e4e4ee;
}
@media (max-width: 719px) {
  .header-form--light .header-form__item {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .header-form--light .header-form__item:nth-child(2) {
    border-left: none;
  }
}
@media (min-width: 1400px) {
  .header-form--light .header-form__item:nth-child(2) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 719px) {
  .header-form--light .header-form__item:nth-child(2) {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1400px) {
  .header-form--light .header-form__item:nth-child(3) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
  }
}
@media (max-width: 719px) {
  .header-form--light .header-form__item:nth-child(3) {
    border-radius: 0 16px 16px 0;
  }
}
@media (min-width: 720px) {
  .header-form--light .header-form__item:nth-child(4) {
    border-left: none;
  }
}
@media (max-width: 719px) {
  .header-form--light .header-form__item:nth-child(4) {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
}
@media (min-width: 720px) {
  .header-form--light .header-form__item:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 719px) {
  .header-form--light .form-item:nth-child(2):not(.form-item--active), .header-form--light .form-item:nth-child(3):not(.form-item--active) {
    width: 50%;
  }
}
@media (min-width: 720px) and (max-width: 1399px) {
  .header-form--light .form-item:nth-child(3):not(.form-item--active), .header-form--light .form-item:nth-child(4):not(.form-item--active), .header-form--light .header-form__submit-wrap {
    width: 33.3%;
  }
}
@media (min-width: 980px) and (max-width: 1399px) {
  .header-form--light .form-item:nth-child(3), .header-form--light .form-item:nth-child(4) {
    width: 33.3%;
  }
}
@media (min-width: 720px) and (max-width: 1199px) {
  .header-form--light .form-item:nth-child(-n+2):not(.form-item--active) {
    width: 50%;
  }
}
@media (min-width: 980px) and (max-width: 1399px) {
  .header-form--light .form-item:nth-child(-n+2) {
    width: 50%;
  }
}
@media (min-width: 980px) {
  .header-form--light .form-item:nth-child(-n+2) .form-item__body {
    top: 61px;
  }
}
@media (min-width: 720px) and (max-width: 1399px) {
  .header-form--light .form-item:nth-child(2):not(.form-item--active) input {
    border-radius: 0 16px 16px 0;
  }
}
@media (min-width: 720px) {
  .header-form--light .form-item:nth-child(1):not(.form-item--active) input {
    border-radius: 16px 0 0 16px;
  }
}
@media (min-width: 1400px) {
  .header-form--light .form-item:nth-child(3) {
    width: 16%;
  }
}
@media (min-width: 980px) {
  .header-form--light .form-item:nth-child(3) .form-item__body {
    right: unset;
    left: 0;
  }
}
@media (min-width: 1400px) {
  .header-form--light .form-item:nth-child(4) {
    width: 22%;
  }
}
@media (min-width: 720px) and (max-width: 1399px) {
  .header-form--light .form-item:nth-child(3):not(.form-item--active) input {
    border-radius: 16px 0 0 16px;
  }
}
@media (min-width: 980px) {
  .header-form--light .form-item:nth-child(2) .form-item__body {
    width: 700px;
    min-width: unset;
  }
}
@media (min-width: 720px) and (max-width: 1399px) {
  .header-form--light .header-form__submit-wrap {
    bottom: 0;
    position: absolute;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .header-form--light .header-form__submit-wrap {
    width: 20%;
  }
}
@media (min-width: 720px) {
  .header-form--light .header-form__submit {
    border-radius: 0 16px 16px 0;
    height: 58px;
    width: 100%;
  }
}
@media (max-width: 719px) {
  .header-form--light .form-item__input {
    padding-top: 18px;
    padding-bottom: 7px;
  }
}
@media (max-width: 719px) {
  .header-form--light .form-item__label {
    top: 2px;
  }
}
.header-form__inner--hotels .header-form__item:first-child {
  border-right: 0;
  border-radius: 16px;
}
@media (max-width: 979px) {
  .header-form__inner--hotels .header-form__item:first-child {
    width: 100%;
  }
}
@media (min-width: 980px) {
  .header-form__inner--hotels .header-form__item:first-child {
    margin-right: 8px;
  }
}
@media (min-width: 720px) {
  .header-form__inner--hotels .header-form__item:nth-child(2) {
    border-radius: 16px 0 0 16px;
    border-right: 1px solid #e4e4ee;
  }
}
@media (min-width: 980px) {
  .header-form__inner--hotels .header-form__item:nth-child(2) {
    width: 155px;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .header-form__inner--hotels .header-form__item:nth-child(2) {
    width: 170px;
  }
}
@media (min-width: 1400px) {
  .header-form__inner--hotels .header-form__item:nth-child(2) {
    width: 180px;
  }
}
@media (min-width: 1600px) {
  .header-form__inner--hotels .header-form__item:nth-child(2) {
    width: 200px;
  }
}
@media (min-width: 720px) {
  .header-form__inner--hotels .header-form__item:nth-child(3) {
    margin-right: 8px;
    border-radius: 0 16px 16px 0;
  }
}
@media (min-width: 980px) {
  .header-form__inner--hotels .header-form__item:nth-child(3) {
    width: 154px;
    border-right: 0;
  }
}
@media (min-width: 1200px) {
  .header-form__inner--hotels .header-form__item:nth-child(3) {
    width: 170px;
  }
}
@media (min-width: 1400px) {
  .header-form__inner--hotels .header-form__item:nth-child(3) {
    width: 180px;
  }
}
@media (min-width: 1600px) {
  .header-form__inner--hotels .header-form__item:nth-child(3) {
    width: 200px;
  }
}
@media (min-width: 720px) {
  .header-form__inner--hotels .header-form__item:nth-child(4) {
    margin-right: 0;
    border-radius: 16px 16px;
  }
}
@media (min-width: 980px) {
  .header-form__inner--hotels .header-form__item:nth-child(4) {
    width: 150px;
  }
}
@media (min-width: 1200px) {
  .header-form__inner--hotels .header-form__item:nth-child(4) {
    width: 180px;
  }
}
@media (min-width: 1400px) {
  .header-form__inner--hotels .header-form__item:nth-child(4) {
    width: 188px;
  }
}
@media (min-width: 1600px) {
  .header-form__inner--hotels .header-form__item:nth-child(4) {
    width: 220px;
  }
}
@media (min-width: 720px) and (max-width: 979px) {
  .header-form__inner--hotels .header-form__item:nth-child(n+2) {
    width: calc(25% - 2px);
  }
}
@media (min-width: 720px) {
  .header-form__inner--hotels .header-form__item:nth-child(n+2) {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
.footer {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #4b4b61;
  padding: 24px 0 48px;
  background-color: #ffffff;
}
.footer svg {
  left: 0;
  fill: #a5a5c5;
  transition: fill 0.3s;
}
@media (min-width: 980px) {
  .footer__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.footer__row:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 980px) {
  .footer__row--bottom {
    align-items: flex-end;
  }
}
.footer__box {
  display: flex;
  flex-direction: column;
}
@media (min-width: 980px) {
  .footer__box {
    width: calc(50% - 10px);
  }
}
@media (min-width: 980px) {
  .footer__box--right {
    width: auto;
  }
}
@media (min-width: 720px) {
  .footer__box--address {
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 979px) {
  .footer__box:not(:last-child) {
    margin-bottom: 20px;
  }
}
.footer__link {
  padding: 6px 0;
  display: inline-block;
  color: inherit;
}
.footer__link--mail {
  padding-left: 34px;
}
.footer__link--mail svg {
  stroke: unset;
  fill: #a5a5c5;
}
@media (min-width: 980px) {
  .footer__link--mail:hover svg {
    fill: #e92b37;
  }
}
.footer__address-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .footer__address-col {
    width: 50%;
  }
}
@media (max-width: 719px) {
  .footer__address-col:not(:last-child) {
    margin-bottom: 20px;
  }
}
.footer__address-col--work {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (min-width: 980px) {
  .footer__address-col--work {
    row-gap: 14px;
  }
}
.footer__tel-link {
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
  color: #e92b37;
}
@media (min-width: 575px) {
  .footer__tel-link {
    font-size: 21px;
  }
}
@media (min-width: 980px) {
  .footer__tel-link {
    padding-top: 0;
    padding-bottom: 7px;
  }
}
.footer__tel-text {
  color: #8d8d9f;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  display: block;
}
.footer__days {
  display: inline-block;
  margin-right: 0.25em;
  font-weight: 700;
  color: #8d8d9f;
}
.footer__bottom-link {
  display: block;
  margin-bottom: 10px;
  color: inherit;
}
.footer__bottom-link:last-child {
  margin-bottom: 0;
}
@media (min-width: 575px) {
  .footer__bottom-link {
    margin-bottom: 0;
  }
}

.header {
  background-color: #ffffff;
  position: relative;
}
.header.active {
  z-index: 0;
}
.header:hover {
  z-index: 99;
}
.header__container {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 720px) and (max-width: 979px) {
  .header__container {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
@media (min-width: 1600px) {
  .header__container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 979px) {
  .header__container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.header__middle {
  border-radius: 16px 16px 0 0;
  background-color: #ffffff;
}
@media (max-width: 979px) {
  .header__middle {
    border-bottom: 1px solid transparent;
  }
}
@media (max-width: 979px) {
  .header__middle--scroll {
    border-bottom-color: rgba(165, 165, 197, 0.5);
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
@media (min-width: 720px) {
  .header__inner {
    -moz-column-gap: 54px;
    column-gap: 54px;
  }
}
@media (min-width: 980px) {
  .header__inner {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (min-width: 1400px) {
  .header__inner {
    -moz-column-gap: 36px;
    column-gap: 36px;
  }
}
@media (min-width: 1600px) {
  .header__inner {
    -moz-column-gap: 90px;
    column-gap: 90px;
  }
}
@media (max-width: 979px) {
  .header__inner {
    position: relative;
    z-index: 5;
  }
}
@media (max-width: 979px) {
  .header__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    border-radius: 16px 16px 0 0;
    height: 100%;
    background-color: #ffffff;
  }
}
.header__logo-wrap {
  display: flex;
  position: relative;
}
@media (min-width: 980px) {
  .header__logo-wrap {
    left: -6px;
  }
}
@media (min-width: 1200px) {
  .header__logo-wrap {
    left: -38px;
  }
}
@media (min-width: 1400px) {
  .header__logo-wrap {
    left: -76px;
  }
}
@media (max-width: 979px) {
  .header__logo-wrap {
    top: 6px;
  }
}
.header__logo-box {
  display: block;
}
.header__logo {
  width: 144px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}
@media (min-width: 720px) {
  .header__logo {
    width: 178px;
    height: 62px;
  }
}
@media (min-width: 980px) {
  .header__logo {
    width: 231px;
    height: 76px;
  }
}
@media (min-width: 980px) {
  .header__main {
    flex-grow: 1;
    flex-shrink: 0;
    min-width: 650px;
  }
}
@media (max-width: 979px) {
  .header__main.active {
    transform: translate(0, 0) scale(1);
  }
}
@media (max-width: 979px) {
  .header__main-inner {
    width: 100%;
  }
}
@media (min-width: 980px) {
  .header__main-inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 979px) {
  .header__main-part {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 980px) {
  .header__main-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 14px;
    column-gap: 14px;
  }
}
@media (min-width: 1600px) {
  .header__main-part {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}
@media (max-width: 979px) {
  .header__main-part:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (max-width: 979px) {
  .header__info {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
}
@media (min-width: 980px) {
  .header__info {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 14px;
    column-gap: 14px;
  }
}
@media (min-width: 1600px) {
  .header__info {
    max-width: 860px;
  }
}
@media (max-width: 979px) {
  .header__defs {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
  }
}
@media (max-width: 719px) {
  .header__defs {
    row-gap: 14px;
  }
}
@media (min-width: 980px) {
  .header__defs {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .header__def .tel-block__tel {
    font-size: 16px;
  }
}

.header__nav-wrap {
  display: none;
}
@media (min-width: 980px) {
  .header__nav-wrap {
    max-width: 546px;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .header__nav-wrap {
    max-width: 677px;
  }
}
@media (min-width: 1400px) {
  .header__nav-wrap {
    max-width: 770px;
  }
}
@media (min-width: 1600px) {
  .header__nav-wrap {
    max-width: 803px;
  }
}

.main-content__form-btns {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
@media (max-width: 979px) {
  .main-content__form-btns::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #6E6E8A;
  }
  .main-content__form-btns::-webkit-scrollbar-thumb {
    background-color: #eef1fc;
    background-clip: content-box;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    border-radius: 0;
  }
}
@media (min-width: 720px) and (max-width: 979px) {
  .main-content__form-btns {
    padding-right: 22px;
    padding-left: 22px;
    margin-right: -22px;
    margin-left: -22px;
  }
}
.main-content__form-btns-wrap + .main-content__header-form {
  padding-top: 16px;
}
.main-content__block {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .main-content__block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.main-content__block--rounded {
  position: relative;
  z-index: 1;
  margin-top: -24px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
@media (min-width: 1200px) {
  .main-content__block--rounded {
    margin-top: -40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
@media (max-width: 979px) {
  .main-content__block--rounded {
    padding-top: 30px;
  }
}
.main-content__block--before-rounded {
  padding-bottom: 80px;
}
@media (min-width: 1200px) {
  .main-content__block--before-rounded {
    padding-bottom: 100px;
  }
}
@media (min-width: 1600px) {
  .main-content--wide .main-content__block--service.main-content__block--before-rounded {
    padding-bottom: 120px;
  }
}
.main-content__block--info-wrap > *:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 720px) {
  .main-content__block--info-wrap > *:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 1600px) {
  .main-content--wide .main-content__block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .main-content--wide .main-content__block--pblock-xl-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.main-content .bg-white, .main-content__block--service {
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .main-content .bg-white, .main-content__block--service {
    padding-bottom: 60px;
  }
}
.main-content__block--blog {
  padding-bottom: 50px;
}
@media (min-width: 720px) {
  .main-content__block--blog {
    padding-bottom: 60px;
  }
}
.main-content__block--blog.bg-white + .bg-white, .main-content__block--blog.bg-light + .bg-light, .main-content__block--service.bg-light + .main-content__block.bg-light, .main-content__block.bg-white + .main-content__block.bg-white, .main-content__block--news-slider.bg-light + .main-content__block.bg-light, .main-content__headline + .main-content__block {
  padding-top: 0;
}
.main-content__headline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 26px;
  column-gap: 26px;
  margin-bottom: 24px;
  background-repeat: no-repeat;
  background-size: 45px 30px;
  background-position: right 1px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 720px) {
  .main-content__headline {
    margin-bottom: 30px;
    background-position: right 5px;
  }
}
@media (min-width: 1200px) {
  .main-content__headline {
    margin-bottom: 40px;
    background-position: right 6px;
  }
}

.main-content__sub-title {
  display: block;
  color: #8d8d9f;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  width: 100%;
  padding-top: 4px;
}
@media (min-width: 720px) {
  .main-content__sub-title {
    padding-top: 8px;
  }
}
.main-content__block-header {
  display: flex;
  align-items: center;
  gap: 8px 24px;
}
@media (min-width: 980px) {
  .main-content__block-header {
    -moz-column-gap: 48px;
    column-gap: 48px;
  }
}
.main-content__block-header h2, .main-content__block-header h3, .main-content__block-header h4 {
  font-family: "MontserratAlternates", "Montserrat", Arial, sans-serif;
}
.main-content__block-header--with-slogan {
  flex-direction: column;
  align-items: stretch;
  row-gap: 6px;
}
.main-content__block-header--tags {
  flex-wrap: wrap;
}
@media (min-width: 1400px) {
  .main-content__block-header--tags {
    -moz-column-gap: 56px;
    column-gap: 56px;
  }
}
.main-content__block-header:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 720px) {
  .main-content__block-header:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .main-content__block-header:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .main-content--wide .main-content__container:not(:last-child), .main-content--wide .main-content__block-header:not(:last-child) {
    margin-bottom: 24px;
  }
}
.main-content--wide .main-content__block-header {
  min-height: 40px;
}
.main-content__block-header-slogan {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  color: #404555;
}
.main-content__title-arrow {
  display: flex;
  align-items: center;
  color: inherit;
}
.main-content__title-arrow svg {
  width: 24px;
  height: 24px;
  margin-left: 15px;
  fill: #a5a5c5;
}
@media (min-width: 980px) {
  .main-content__title-arrow svg {
    transition: transform 0.3s, fill 0.3s;
  }
}
@media (min-width: 980px) {
  .main-content__title-arrow:hover svg {
    transform: translateX(10px);
    fill: #e92b37;
  }
}
.main-content__block-links {
  display: flex;
  align-self: flex-end;
  min-height: 26px;
}
@media (max-width: 719px) {
  .main-content--wide .main-content__block-links {
    margin-left: auto;
  }
}
.main-content--wide .main-content__block-links .link-arrow {
  padding-top: 6px;
  padding-bottom: 6px;
}
@media (max-width: 719px) {
  .main-content--wide .main-content__block-links .link-arrow {
    font-size: 13px;
  }
}
.main-content__block-btns-wrap {
  flex-grow: 1;
  max-width: 100%;
}
.main-content__block-btns-wrap .btns__list {
  gap: 9px;
}
.main-content__block-btns-wrap .btn {
  border-radius: 20px;
  padding: 7px 17px;
  font-size: 15px;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page__header {
  position: relative;
  /* z-index: 50; */
  flex: 0 0 auto;
}
/* @media (max-width: 979px) {
  .page__header {
    position: sticky;
    top: 0;
  }
} */
@media (max-width: 719px) {
  .page__btns-wrap {
    padding: 0;
  }
}
.page__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 4px;
}
.page__main {
  position: relative;
  flex: 1 0 auto;
  padding-top: 0;
  padding-bottom: 50px;
}
@media (min-width: 720px) {
  .page__main {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .page__main {
    padding-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .page__main {
    padding-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .page__main {
    padding-bottom: 100px;
  }
}
.page__main--no-padding {
  padding-bottom: 0;
}
.page__footer {
  position: relative;
  /* z-index: 1; */
  flex: 0 0 auto;
}
.page__btns {
  flex-wrap: nowrap;
  align-items: flex-end;
}
@media (max-width: 979px) {
  .page__btns {
    overflow-x: scroll;
  }
  .page__btns::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #6E6E8A;
  }
  .page__btns::-webkit-scrollbar-thumb {
    background-color: #eef1fc;
    background-clip: content-box;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    border-radius: 0;
  }
}
@media (min-width: 720px) and (max-width: 979px) {
  .page__btns {
    padding-right: 22px;
    padding-left: 22px;
    margin-right: -22px;
    margin-left: -22px;
  }
}
.page__btns > * {
  flex-shrink: 0;
  max-height: 45px;
}
@media (min-width: 980px) {
  .page__btns > * {
    max-height: 42px;
  }
}

.overflow-x {
  display: flex;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-color: rgba(141, 141, 159, 0.4) transparent;
  scrollbar-width: thin;
}
.overflow-x::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
.overflow-x::-webkit-scrollbar-thumb {
  background-color: rgba(141, 141, 159, 0.4);
  background-clip: content-box;
  border-width: 6px;
  border-style: solid;
  border-color: transparent;
  border-radius: 16px;
}
.overflow-x__inner {
  flex-grow: 1;
}

.overflow-hidden {
  overflow: hidden;
}

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

.hidden {
  display: none !important;
}

@media (min-width: 980px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (max-width: 979px) {
  .is-desktop {
    display: none !important;
  }
}

@media (min-width: 980px) {
  .no-desktop {
    display: none !important;
  }
}

@media (min-width: 980px) {
  .is-tablet {
    display: none !important;
  }
}
@media (max-width: 719px) {
  .is-tablet {
    display: none !important;
  }
}

@media (min-width: 720px) {
  .is-mobile {
    display: none !important;
  }
}

.swiper-slide {
  box-sizing: border-box;
}

.tabs-body {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(150%);
  transition: transform 0.8s, opacity 0.3s;
}
.tabs-body.active {
  position: static;
  opacity: 1;
  transition: opacity 0.3s 0.3s, transform 0.5s;
  transform: translateX(0);
}

.required::after {
  content: "*";
  color: #e92b37;
  margin-left: 4px;
}

.best-wrapper-ever {
  transition: height 0.5s;
  overflow: hidden;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.fw600 {
  font-weight: 600;
}

.d-none {
  display: none !important;
}

.nowrap {
  white-space: nowrap;
}

.ico-svg {
  position: relative;
  padding-left: 34px;
}
.ico-svg svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
