@charset "UTF-8";
/* СБРОС СТИЛЕЙ */
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img, svg {
  display: block;
  height: auto;
}

/* Удаляем все анимации и переходы для людей, которые предпочитают их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ШРИФТ */
@font-face {
  font-family: "Century Gothic";
  src: url("../font/CenturyGothic-Italic.eot");
  src: local("Century Gothic Italic"), local("CenturyGothic-Italic"), url("../font/CenturyGothic-Italic.eot?#iefix") format("embedded-opentype"), url("../font/CenturyGothic-Italic.woff") format("woff"), url("../font/CenturyGothic-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../font/CenturyGothic.eot");
  src: local("Century Gothic"), local("CenturyGothic"), url("../font/CenturyGothic.eot?#iefix") format("embedded-opentype"), url("../font/CenturyGothic.woff") format("woff"), url("../font/CenturyGothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../font/CenturyGothic-Bold.eot");
  src: local("Century Gothic Bold"), local("CenturyGothic-Bold"), url("../font/CenturyGothic-Bold.eot?#iefix") format("embedded-opentype"), url("../font/CenturyGothic-Bold.woff") format("woff"), url("../font/CenturyGothic-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../font/CenturyGothic-BoldItalic.eot");
  src: local("Century Gothic Bold Italic"), local("CenturyGothic-BoldItalic"), url("../font/CenturyGothic-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../font/CenturyGothic-BoldItalic.woff") format("woff"), url("../font/CenturyGothic-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
/* ПЕРЕМЕННЫЕ */
/* LAYOUT */
html {
  overflow-x: hidden;
}

body {
  font-family: "Century Gothic";
  overflow-x: hidden;
}

.section {
  display: flex;
  justify-content: center;
  width: 100%;
}
.section__title {
  position: relative;
  width: fit-content;
}
.section__title::before {
  background: url("../img/title_conner_yellow.svg") no-repeat right;
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 53.5px;
  width: 79.2px;
  transition: 0.3s ease;
}
.section__title:hover::before {
  left: 10px;
}
.section__title h2 {
  color: #333333;
  font-weight: bold;
  font-size: 42px;
  line-height: 130%;
  padding-left: 16px;
  position: relative;
  text-transform: uppercase;
}

.container {
  max-width: 1300px;
  padding: 0 15px;
  width: 100%;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.mount {
  background: rgba(243, 245, 247, 0.5);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.mount.active {
  display: block;
}

.gradient-btn {
  background: linear-gradient(180deg, #FEE30A 41.67%, #FEBA0A 66.67%);
  border: none;
  border-radius: 4px;
  color: #574F0C;
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 2px;
  padding: 16px 25px 18px;
  position: relative;
  text-decoration: none;
}
.gradient-btn__shadow {
  background: #E3871B;
  box-shadow: 0px 4px 25px rgba(254, 227, 10, 0.4);
  border-radius: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: 0.3s;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.gradient-btn:hover .gradient-btn__shadow {
  box-shadow: 0px 4px 40px rgba(254, 227, 10, 0.8);
}

/* СТИЛИ ДЛЯ СЛАЙДЕРОВ */
.slick-arrow {
  border: 0;
  border-radius: 50%;
  font-size: 0;
  position: absolute;
  transition: 0.3s;
  height: 50px;
  width: 50px;
  z-index: 1;
}
.slick-arrow:hover {
  background-color: #E5E5E5;
}
.slick-prev {
  background: #FFFFFF url("../img/slider_prev.svg") center no-repeat;
}
.slick-next {
  background: #FFFFFF url("../img/slider_next.svg") center no-repeat;
}

/* СТИЛИ ДЛЯ БЛОКОВ */
.header {
  background: #FFFFFF;
  padding: 21px 0 25px;
}
.header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header__logo {
  width: 298px;
}
.header__links {
  display: flex;
  justify-content: space-between;
  padding-top: 5px !important;
}
.header__link a {
  color: #333333;
  font-size: 16px;
  line-height: 180%;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.header__link a:hover {
  color: #70bfce;
}
.header__link + .header__link {
  margin-left: 36px;
}
.header__contacts {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  width: 298px;
}
.header__phone {
  color: #333333;
  font-weight: bold;
  font-size: 20px;
  padding-left: 25px;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}
.header__phone:hover {
  color: #70bfce;
}
.header__phone::before {
  background: url("../img/footer_mail.svg") no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
}
.header__btn {
  background: none;
  border: none;
  color: #16BAD6;
  font-weight: bold;
  font-size: 14px;
  padding: 0;
  text-decoration-line: underline;
  transition: 0.3s;
}
.header__btn:hover {
  color: #70bfce;
}
.header__toggle {
  display: none;
}

.home {
  background: #FAFAFA;
  padding: 22px 0 47px;
  position: relative;
}
.home::after {
  background: url("../img/home_blue_right.svg") no-repeat left;
  background-size: initial;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 39%;
}
.home::before {
  background: url("../img/home_bg_left.svg") no-repeat left;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0;
  bottom: -33%;
  height: 660px;
  width: 14%;
}
@media screen and (max-width: 1500px) {
  .home::before {
    bottom: -40%;
    width: 9%;
  }
}
.home__container {
  align-items: center;
  display: grid;
  grid-gap: 99px;
  grid-template-columns: 1fr auto;
}
.home__title {
  color: #333333;
  font-weight: bold;
  font-size: 62px;
  line-height: 130%;
  margin-bottom: 50px;
}
.home__title span {
  display: block;
  font-size: 24px;
  font-weight: normal;
  line-height: 150%;
  margin-top: 13px;
}
.home__btn {
  margin-top: 49px;
}
.home__img {
  position: relative;
}
.home__img img {
  position: relative;
  transition: 0.3s;
  z-index: 1;
}
.home__img img:hover {
  transform: translateX(-20px);
}
.home__img::before {
  background: url("../img/home_green_right.svg") no-repeat left;
  background-size: initial;
  content: "";
  position: absolute;
  top: 0;
  left: -79px;
  transition: 0.3s;
  transform: translateX(170px);
  height: 596px;
  width: 250px;
}
.home__img.animate::before {
  transform: translateX(0);
}

.benefits {
  padding: 49px 0;
}
.benefits__container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.benefits__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits__card img {
  transition: 0.3s;
}
.benefits__card img:hover {
  transform: translateY(-10px);
}
.benefits__card:nth-child(1) img {
  width: 110px;
}
.benefits__card:nth-child(1) span {
  margin-top: 28px;
}
.benefits__card:nth-child(3) img {
  width: 95.64px;
}
.benefits__card:nth-child(3) span {
  margin-top: 36px;
}
.benefits__card:nth-child(5) img {
  width: 95px;
}
.benefits__card:nth-child(5) span {
  margin-top: 41.99px;
}
.benefits__text {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #333333;
  max-width: 194px;
}
.benefits__border {
  border-left: 1px dashed #D1D1D1;
  height: 258px;
}

.about {
  padding: 38px 0;
  position: relative;
}
.about::before {
  background: url("../img/about_yellow_right.svg") no-repeat left;
  content: "";
  position: absolute;
  top: 60px;
  right: 0;
  height: 1000px;
  width: 26%;
  transform: translateX(100%);
  transition: 0.3s;
}
.about.animate::before {
  transform: translateX(0);
}
.about__container {
  align-items: center;
  display: grid;
  grid-gap: 57px;
  grid-template-columns: 1fr auto;
}
.about__player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.about__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}
.about__info {
  width: 523px;
}
.about p {
  color: #333333;
  font-size: 18px;
  line-height: 180%;
  margin-top: 26.5px;
  transition: 0.3s;
  transform: translateY(50px);
  opacity: 0;
}
.about p.animate {
  transform: translateY(0);
  opacity: 1;
}

.room {
  padding: 51px 0 59px;
}
.room__container {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.room__cards {
  display: grid;
  grid-gap: 47px;
  grid-template-columns: repeat(4, 1fr);
}
.room__card {
  position: relative;
  transform: translateY(100%);
  opacity: 0;
}
.room__card.animate {
  transform: translateY(0);
  opacity: 1;
}
.room__card.animate:nth-child(1) {
  transition: all 0.3s ease 0s;
}
.room__card.animate:nth-child(2) {
  transition: all 0.3s ease 0.2s;
}
.room__card.animate:nth-child(3) {
  transition: all 0.3s ease 0.4s;
}
.room__card.animate:nth-child(4) {
  transition: all 0.3s ease 0.6s;
}
.room__card span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 120%;
  color: #333333;
  margin-top: 45px;
}
.room__card p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 150%;
  color: #333333;
}
.room__img {
  position: relative;
}
.room__img::before {
  background: url("../img/room_card_bg.svg") no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  top: -10.81px;
  right: -12.64px;
  bottom: -13.94px;
  left: 0;
}
.room__img img {
  position: relative;
  width: 100%;
  z-index: 1;
}
.room__btn {
  margin-top: 44px;
  padding: 16px 30px 18px;
}

.geo {
  background: #FAFAFA url("../img/geo_bg.svg") bottom -100% center no-repeat;
  padding-top: 53px;
  transition: 0.3s;
}
.geo.animate {
  background-position: bottom center;
}
.geo__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.geo__description {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #333333;
  margin-top: 18px;
}
.geo__map {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #8BD40A;
  margin-top: 33px;
  padding-left: 34px;
  position: relative;
  text-decoration: none;
}
.geo__map span {
  border-bottom: 1px dashed #8BD40A;
}
.geo__map::before {
  background: url("../img/geo_map.svg") no-repeat center;
  background-size: contain;
  content: "";
  height: 26px;
  width: 20.82px;
  position: absolute;
  left: 0;
}
.geo__btns {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  width: 100%;
}
.geo__btns button {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #666666;
  border-radius: 4px;
  background: none;
  border: 2px solid #D7D7D7;
  padding: 10px 20px 13px;
  transition: 0.3s;
}
.geo__btns button:hover, .geo__btns button.active {
  background: #8BD40A;
  border: 2px solid #8BD40A;
  color: #FFFFFF;
}
.geo__btns button + button {
  margin-left: 10px;
}
.geo .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.geo .slick-prev {
  left: 29px;
}
.geo .slick-next {
  right: 29px;
}
.geo__slider {
  margin: 36px 0 0;
}
.geo__city {
  display: none;
  position: relative;
}
.geo__city.active {
  display: block;
}
.geo__slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.geo__quote {
  background: linear-gradient(-45deg, transparent 125px, #FFFFFF 0);
  display: flex;
  padding: 22px 90px 23px 0;
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 67%;
}
.geo__photo {
  border-radius: 50%;
  height: 160px;
  position: absolute;
  top: 6px;
  left: -19px;
  width: 160px;
  background-size: cover;
  border: 5px solid white;
}
.geo__info {
  padding-left: 167px;
}
.geo__text {
  color: #333333;
  font-size: 14px;
  line-height: 160%;
}
.geo__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  width: 80%;
}
.geo__person--name {
  color: #333333;
  display: block;
  font-weight: bold;
  font-size: 16px;
}
.geo__person--position {
  color: #666666;
  display: block;
  font-size: 14px;
}
.geo__logo {
max-width: 182.57px;
height: 100%;
}

.opening {
  padding: 35px 0 72px;
}
.opening h3 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 130%;
  color: #333333;
}
.opening__cards {
  display: grid;
  grid-gap: 26px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px;
}
.opening__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translateY(100%);
  opacity: 0;
}
.opening__card.animate {
  transform: translateY(0);
  opacity: 1;
}
.opening__card.animate:nth-child(1) {
  transition: all 0.3s ease 0s;
}
.opening__card.animate:nth-child(2) {
  transition: all 0.3s ease 0.2s;
}
.opening__card.animate:nth-child(3) {
  transition: all 0.3s ease 0.4s;
}
.opening__card.animate:nth-child(4) {
  transition: all 0.3s ease 0.6s;
}
.opening__img {
  width: 100%;
}
.opening__text {
  margin-top: 25px;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #333333;
}
.opening__soon {
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
  background: #8BD40A;
  border-radius: 6px;
  padding: 4px 8px 5px 9px;
  position: absolute;
  top: 10px;
  right: -9px;
}

.formats {
  background: #FAFAFA url("../img/formats_bg.svg") no-repeat bottom -100% right;
  padding: 55px 0 75px;
  position: relative;
  transition: 0.3s;
}
.formats.animate {
  background-position: bottom right;
}
.formats::before {
  background: #60C3D4;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 21%;
}
.formats__container {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.formats__table {
  display: grid;
  grid-gap: 46px;
  grid-template-columns: auto 1fr;
  margin-top: 53px;
  padding-left: 270px;
  position: relative;
}
.formats__table::before {
  background: url("../img/format_img.jpg");
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  height: 595px;
  width: 301px;
  transition: 0.3s;
  opacity: 0;
  transform: translateX(-100%);
}
.formats__table.animate::before {
  transform: translateX(0);
  opacity: 1;
}
.formats__criteria {
  padding-top: 100px;
  max-width: 350px;
}
.formats__criterion {
  align-items: center;
  display: flex;
  height: 68px;
  position: relative;
}
.formats__criterion span {
  color: #333333;
  display: block;
  font-size: 18px;
  line-height: 1;
}
.formats__criterion:first-child::before {
  background: #60C3D4;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 1000px;
  z-index: 1;
}
.formats__criterion::after {
  background: #E6E6E6;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 1000px;
  z-index: 1;
}
.formats__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 14px;
  width: 100%;
}
.formats__card {
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: flex !important;
  flex-direction: column;
  padding: 23px;
}
.formats__name {
  color: #333333;
  display: block;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}
.formats__size {
  color: #666666;
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 23px;
  padding-left: 29px;
  position: relative;
}
.formats__size::before {
  background: url("../img/formats_size.svg") no-repeat center;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
}
.formats__check {
  padding: 21.66px 0;
  width: 30px;
}
.formats__btn {
  margin-top: 25px;
  padding: 15px 0 17px;
  width: 100%;
}
.formats__visual {
  background: none;
  border: none;
  color: #70bfce;
  font-weight: bold;
  font-size: 14px;
  line-height: 120%;
  margin-top: 13px;
  text-decoration: underline;
}

.numbers {
  background: url("../img/numbers_bg.jpg") no-repeat center;
  background-size: cover;
}
.numbers__filter {
  background: rgba(33, 79, 87, 0.71);
  height: 100%;
  width: 100%;
  padding: 139px 0 150px;
}
.numbers__container {
  margin: 0 auto;
}
.numbers__title::before {
  background: url("../img/title_conner_blue.svg") no-repeat right;
}
.numbers__title h2 {
  color: #FFFFFF;
}
.numbers__grid {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 95px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 49px;
}
.numbers__yellow {
  font-size: 60px;
  line-height: 130%;
  text-transform: uppercase;
  color: #FEE30A;
  font-weight: bold;
  display: block;
}
.numbers__white {
  font-size: 18px;
  line-height: 130%;
  color: #FFFFFF;
}
.numbers__description {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  color: #FEE30A;
  margin-bottom: 24px;
}
.numbers__button {
  border-radius: 4px;
  padding: 16px 40px 18px;
}

.indicators {
  padding: 54px 0;
  position: relative;
}
.indicators.animate::before {
  transform: translateX(0);
}
.indicators.animate::after {
  transform: translateX(0);
}
.indicators::before {
  background: url("../img/indicators_yellow_bg.svg") no-repeat right;
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  height: 435px;
  width: 11.3%;
  transition: 0.3s ease;
  transform: translateX(-100%);
}
.indicators::after {
  background: url("../img/indicators_green_bg.svg") no-repeat right;
  background-size: contain;
  content: "";
  position: absolute;
  bottom: -200px;
  right: 0;
  height: 500px;
  width: 10%;
  transition: 0.3s ease 0.4s;
  transform: translateX(100%);
}
.indicators__container {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.indicators__slider {
  margin-top: 54px;
  padding: 0 108px;
  width: 100%;
}
.indicators__slider .slick-arrow {
  background-color: #60C3D4;
  top: 50%;
}
.indicators__slider .slick-arrow.slick-disabled {
  display: none !important;
}
.indicators__slider .slick-arrow:hover {
  background-color: #3aa8b7;
}
.indicators__slider .slick-prev {
  background-image: url("../img/slider_prev_white.svg");
  left: 0;
}
.indicators__slider .slick-next {
  background-image: url("../img/slider_next_white.svg");
  right: 0;
}
.indicators__slide {
  display: grid !important;
  grid-gap: 79px;
  grid-template-columns: 1fr 1.5fr;
  overflow: hidden;
}
.indicators__info {
  padding-top: 14px;
}
.indicators__h3 {
  color: #333333;
  font-weight: bold;
  font-size: 22px;
  line-height: 130%;
}
.indicators__text {
  color: #666666;
  font-size: 16px;
  line-height: 180%;
  margin-top: 7px;
  padding-top: 10px;
  padding-bottom: 50px;
}
.indicators__btn {
  margin-top: 22px;
  padding: 16px 40px 18px;
}

.calculator {
  background: #60C3D4 url("../img/calculator_bg.svg") bottom center no-repeat;
  padding: 53px 0;
}
.calculator__container {
  display: grid;
  grid-gap: 200px;
  grid-template-columns: 1.2fr 1fr;
}
.calculator__main {
  color: #FEE30A;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
}
.calculator__title {
  margin: 8px 0 0 -12px;
}
.calculator__title h2 {
  padding-left: 10px;
}
.calculator__text {
  color: #333333;
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  margin-top: 12px;
  transition: 0.3s ease 0.4s;
  transform: translateY(100px);
  opacity: 0;
}
.calculator__text.animate {
  transform: translateY(0);
  opacity: 1;
}
.calculator__ul {
  margin: 28px 0 37px !important;
}
.calculator__ul li {
  color: #333333;
  font-size: 18px;
  padding-left: 36px;
  position: relative;
  transition: 0.3s ease 0.4s;
  transform: translateY(100px);
  opacity: 0;
}
.calculator__ul li.animate {
  transform: translateY(0);
  opacity: 1;
}
.calculator__ul li::before {
  background: url("../img/check_yellow.svg") no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 25px;
}
.calculator__ul li:not(:first-child) {
  margin-top: 28px;
}
.calculator__right {
  padding-top: 31px;
}
.calculator__form {
  margin-top: 23px;
}
.calculator__field {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
}
.calculator__city {
 /*  background: #FFFFFF url("../img/arrow_down.svg") no-repeat bottom 50% right 21px; */
  border: none;
  border-radius: 4px;
/*   cursor: pointer; */
  height: 55px;
  padding: 15px 19px;
  max-width: 390px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.calculator__label {
  color: #333333;
  font-size: 18px;
  line-height: 130%;
  margin-right: 16px;
}
.calculator__formats {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 390px;
  width: 100%;
}
.calculator__formats label {
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  transition: 0.3s;
  padding: 6px 10px 10px;
}
.calculator__formats input:checked + label, .calculator__formats label:hover {
  background: #FEE30A;
  border: 1px solid #FEE30A;
  color: #000000;
}
.calculator input:disabled {
  background: #FFFFFF;
  border: none;
  border-radius: 4px;
  color: #000000;
  height: 40px;
  padding: 8px 12px;
  width: 128px;
}
.calculator .ui-slider {
  background: #E2E2E2;
  border: none;
  border-radius: 4px;
  margin-top: 22px;
  height: 6px;
}
.calculator .ui-slider-range {
  background: #FEE30A;
}
.calculator .ui-slider-handle {
  background: #FEE30A;
  border: none;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 30px;
  top: -12px;
  width: 30px;
}
.calculator__btn {
  margin-top: 44px;
  width: 100%;
}

.variants {
  padding: 77px 0 66px;
  position: relative;
}
.variants.animate::before {
  transform: translateX(0);
}
.variants::before {
  background: url(../img/home_bg_left.svg) no-repeat left;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0;
  bottom: 36%;
  transition: 0.3s ease 0.8s;
  transform: translateX(-100%);
  height: 660px;
  width: 14%;
  z-index: 1;
}
.variants__table {
  display: grid;
  grid-gap: 72px;
  grid-template-columns: auto 1fr;
  margin-top: 46px;
}
.variants__criteria {
  padding-top: 75px;
  max-width: 576px;
}
.variants__criterion {
  align-items: center;
  display: flex;
  height: 68px;
  position: relative;
}
.variants__criterion span {
  color: #333333;
  display: block;
  font-size: 18px;
  line-height: 1;
}
.variants__criterion span.bold {
  font-size: 20px;
  font-weight: bold;
}
.variants__criterion:first-child::before {
  background: #60C3D4;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 1270px;
  z-index: 1;
}
.variants__criterion::after {
  background: #E6E6E6;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 1270px;
  z-index: 1;
}
.variants__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 26px;
  width: 100%;
}
.variants__card {
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: flex !important;
  flex-direction: column;
  padding: 23px;
}
.variants__name {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}
.variants__name img {
  margin-right: 11px;
  width: 31px;
}
.variants__name span {
  color: #333333;
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
}
.variants__check {
  padding: 21.66px 0;
  height: 68px;
  width: 30px;
}
.variants__btn {
  margin-top: 28px;
  width: 100%;
}

.step {
  background: #FAFAFA;
  padding: 70px 0 82px;
  position: relative;
}
.step::before {
  background: url(../img/home_bg_left.svg) no-repeat left;
  background-size: contain;
  content: "";
  position: absolute;
  right: 0;
  bottom: -40%;
  transform: rotate(180deg) translateX(-100%);
  height: 660px;
  width: 14%;
  transition: 0.3s ease 0.4s;
}
.step.animate::before {
  transform: rotate(180deg) translateX(0);
}
.step__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 44px;
  grid-row-gap: 102px;
  margin-top: 62px;
}
.step__card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 18.8px;
}
.step__digit {
  width: 99.2px;
  height: 53.5px;
  background: url("../img/step.svg") no-repeat right;
  padding: 5px 20px;
}
.step__digit span {
  display: block;
  font-weight: bold;
  font-size: 42px;
  color: #FFFFFF;
  line-height: 1;
}
.step__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 150%;
  color: #333333;
}
.step__description {
  font-size: 16px;
  line-height: 140%;
  color: #666666;
  margin-top: 8px;
}

.footer {
  align-items: center;
  flex-direction: column;
  position: relative;
}
.footer::before {
  background: url(../img/contacts_bg.svg) no-repeat left;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0;
  top: -200px;
  height: 660px;
  width: 9%;
  transform: translateX(-100%);
  transition: 0.3s ease;
}
.footer.animate::before {
  transform: translateX(0);
}
.footer__title {
  margin-top: 78px;
}
.footer__title--mobile {
  display: none;
}
.footer__grid {
  display: grid;
  grid-gap: 60px;
  grid-template-columns: 1fr auto;
  margin-top: 27px;
}
.footer__person {
  align-items: center;
  display: grid;
  grid-gap: 49px;
  grid-template-columns: auto 1fr;
  margin-top: 65px;
}
.footer__person img {
  width: 190px;
}
.footer__person--name {
  color: #333333;
  display: block;
  font-weight: bold;
  font-size: 22px;
  line-height: 140%;
}
.footer__person--position {
  color: #8BD40A;
  display: block;
  font-size: 16px;
  line-height: 140%;
  margin-top: 2px;
}
.footer__person--phone {
  color: #333333;
  display: block;
  font-size: 18px;
  line-height: 140%;
  margin-top: 13px;
  padding-left: 35px;
  position: relative;
  text-decoration: none;
  width: fit-content;
  transition: 0.3s;
}
.footer__person--phone:hover {
  color: #70bfce;
}
.footer__person--phone::before {
  background: url("../img/footer_phone.svg") no-repeat center;
  background-size: contain;
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 18px;
  width: 18px;
}
.footer__person--mail {
  color: #333333;
  display: block;
  font-size: 18px;
  line-height: 140%;
  margin-top: 13px;
  padding-left: 35px;
  position: relative;
  text-decoration: none;
  width: fit-content;
  transition: 0.3s;
}
.footer__person--mail:hover {
  color: #70bfce;
}
.footer__person--mail::before {
  background: url("../img/footer_mail.svg") no-repeat center;
  background-size: contain;
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 16px;
  width: 20px;
}
.footer__form {
  background: #FFFFFF;
  border: 4px solid #8BD40A;
  max-width: 406px;
  padding: 16px 33px 26px;
  width: 100%;
}
.footer__form h3 {
  color: #333333;
  font-weight: bold;
  font-size: 30px;
  line-height: 130%;
}
.footer__form p {
  color: #666666;
  font-size: 14px;
  line-height: 130%;
  margin: 11px 0 21px;
}
.footer__form input[type=text] {
  display: block;
  height: 60px;
  margin-top: 10px;
  padding: 16px;
  width: 100%;
}
.footer__btn {
  margin-top: 17px;
  width: 100%;
}
.footer__checkbox {
  display: grid;
  grid-gap: 13px;
  grid-template-columns: auto 1fr;
  margin-top: 17px;
}
.footer__checkbox input {
  height: 20px;
  width: 20px;
}
.footer__checkbox label {
  color: #666666;
  font-size: 12px;
  line-height: 130%;
}
.footer__mails {
  display: grid;
  grid-gap: 26px;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  bottom: -60px;
  z-index: 1;
}
.footer__mail {
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}
.footer__mail span {
  color: #333333;
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
}
.footer__mail a {
  color: #60C3D4;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  margin-top: 9px;
}
.footer__down {
  position: relative;
}
.footer__down img {
  width: 100%;
}
.footer__down p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 140%;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0 15px;
  width: 100%;
}
.footer__down p a {
  color: #8BD40A;
}
.footer__filter {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 14.69%, rgba(0, 0, 0, 0.88) 92.54%);
  position: absolute;
  top: 45%;
  right: 0;
  bottom: 0;
  left: 0;
}

.modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
.modal.active {
  display: flex;
}
.modal__outside {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.modal__body {
  background: #FFFFFF;
  padding: 30px;
  position: relative;
  max-width: 520px;
  width: 100%;
  z-index: 1001;
}

.modal__close {
  background: url("../img/cross.svg") no-repeat center;
  background-size: contain;
  border: none;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  height: 20px;
  width: 20px;
}
.modal h2 {
  color: #333333;
  text-align: center;
}
.modal__form {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.modal__form input[type=text] {
  background: #FFFFFF;
  border: 1px solid #333333;
  border-radius: 4px;
  color: #000000;
  height: 40px;
  padding: 8px 12px;
  width: 100%;
}
.modal__form input[type=text]:not(:first-child) {
  margin-top: 20px;
}
.modal__btn {
  margin-top: 20px;
}
.modal__checkbox {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: auto 1fr;
  color: #666666;
  font-size: 12px;
  line-height: 130%;
  margin-top: 20px;
}
.modal__checkbox input {
  height: 20px;
  width: 20px;
}

/* АДАПТАЦИЯ ПОД МЕНЬШИЕ ЭКРАНЫ */
@media screen and (max-width: 1700px) {
  .variants::before {
    bottom: -15%;
    width: 8%;
  }

  .footer::before {
    top: -25%;
    width: 6%;
  }
}
@media screen and (max-width: 1300px) {
  .header__contacts {
    width: fit-content;
  }

  .home::before {
    bottom: -45%;
  }
  .home__container {
    grid-gap: 60px;
  }
  .home__img {
    width: 400px;
  }

  .geo__photo {
    left: -15px;
  }

  .formats::before {
    width: 7px;
  }
  .formats__table {
    padding-left: 0;
  }
  .formats__table::before {
    content: none;
  }
  .formats__criterion:first-child::before {
    width: 1127px;
  }
  .formats__criterion::after {
    width: 1127px;
  }

  .variants__criterion:first-child::before {
    width: calc(100vw - 30px);
  }
  .variants__criterion::after {
    width: calc(100vw - 30px);
  }
  .variants__cards {
    grid-gap: 14px;
  }
}
@media screen and (max-width: 1180px) {
  .section__title::before {
    height: 42.8px;
    width: 63.36px;
  }
  .section__title h2 {
    font-size: 34px;
    padding-left: 12.8px;
  }

  .header__container {
    position: relative;
  }
  .header__links {
    align-items: center;
    background: #FFFFFF;
    flex-direction: column;
    position: absolute;
    padding: 30px !important;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateX(100%);
    transition: 0.3s;
    z-index: 100;
  }
  .header__links.active {
    transform: translateX(0);
  }
  .header__link + .header__link {
    margin-left: 0;
    margin-top: 10px;
  }
  .header__btn {
    display: none;
  }
  .header__toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    height: 30px;
    width: 30px;
  }
  .header__toggle--line {
    background: #333333;
    height: 2px;
    transition: 0.3s;
    width: 100%;
  }
  .header__toggle.active .header__toggle--line:nth-child(1) {
    transform: translateY(14px) rotate(-45deg);
  }
  .header__toggle.active .header__toggle--line:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
  }
  .header__toggle.active .header__toggle--line:nth-child(3) {
    transform: translateY(-14px) rotate(45deg);
  }

  .home::before {
    bottom: -53%;
  }
  .home__container {
    grid-gap: 30px;
  }
  .home__title {
    font-size: 50px;
  }
  .home__img {
    width: 350px;
  }
  .home__img::before {
    height: 100%;
  }

  .about::before {
    top: 50%;
    width: 20%;
  }

  .room__card span {
    font-size: 16px;
  }
  .room__card p {
    font-size: 14px;
  }

  .geo__logo {
    display: none !important;
  }

  .formats__criterion:first-child::before {
    width: calc(100vw - 30px);
  }
  .formats__criterion::after {
    width: calc(100vw - 30px);
  }

  .calculator__container {
    grid-gap: 100px;
  }

  .footer__mails {
    grid-template-columns: repeat(2, 1fr);
    bottom: -20px;
  }
}
@media screen and (max-width: 1080px) {
  .about__container {
    grid-template: repeat(2, auto)/1fr;
    grid-gap: 30px;
  }
  .about__player {
    order: 1;
  }
  .about__info {
    width: 100%;
  }

  .room__cards {
    grid-gap: 30px;
  }
  .room__card span {
    margin-top: 30px;
  }

  .indicators__slider {
    padding: 0 80px;
  }
  .indicators__slide {
    grid-gap: 40px;
  }
  .indicators__img {
    justify-self: center;
  }

  .variants__criteria {
    max-width: 300px;
  }
  .variants__card {
    padding: 23px 15px;
  }

  .step::before {
    bottom: -30%;
    width: 9%;
  }
  .step__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer::before {
    content: none;
  }
  .footer__title--pc {
    display: none;
  }
  .footer__title--mobile {
    display: block;
    margin-top: 30px;
  }
  .footer__grid {
    grid-template: repeat(2, auto)/1fr;
  }
  .footer__persons {
    order: 1;
  }
  .footer__form {
    max-width: unset;
  }
}
@media screen and (max-width: 960px) {
  .home {
    padding: 80px 0;
  }
  .home::before {
    bottom: -65%;
  }
  .home::after {
    width: 30%;
  }
  .home__container {
    grid-gap: 80px;
  }
  .home__title {
    font-size: 38px;
  }
  .home__title span {
    font-size: 20px;
  }
  .home__img {
    width: 220px;
  }

  .room__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
  }

  .opening__text {
    font-size: 18px;
  }

  .geo__btns {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
  .geo__btns button + button {
    margin-left: 0;
  }
  .geo__quote {
    background: none;
    display: flex;
    padding: 20px 15px;
    position: static;
    width: 100%;
  }
  .geo__photo {
    position: static;
	flex: 0 0 auto;
  }
  .geo__info {
    padding-left: 30px;
  }
  .geo__person--name {
    font-size: 14px;
  }
  .geo__person--position {
    font-size: 12px;
  }

  .formats__criterion span {
    font-size: 16px;
  }
  .formats__name {
    font-size: 18px;
  }
  .formats__size {
    font-size: 14px;
    margin-bottom: 27px;
    padding-left: 20px;
  }
  .formats__size::before {
    top: 14px;
    height: 15px;
    width: 15px;
  }

  .numbers {
    background-position: 30% center;
  }
  .numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .indicators::before {
    top: unset;
    bottom: 100%;
    transform: translateY(50%);
    width: 5%;
  }

  .calculator__container {
    grid-gap: 60px;
    grid-template: repeat(2, auto)/1fr;
  }

  .variants__criterion span {
    font-size: 16px;
  }
  .variants__name img {
    width: 25px;
  }
  .variants__name span {
    font-size: 18px;
  }

  .step__grid {
    grid-gap: 40px;
  }
}
@media screen and (max-width: 770px) {
  .home::before {
    bottom: -77%;
  }
  .home__title {
    font-size: 32px;
  }
  .home__title span {
    font-size: 16px;
  }
  .home__btn {
    font-size: 14px;
  }
  .home__img {
    width: 170px;
  }

  .benefits__text {
    font-size: 16px;
    height: 62.39px;
    padding: 0 15px;
  }

  .opening__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .opening__text {
    margin-top: 15px;
  }

  .formats__table {
    grid-gap: 20px;
    width: 100%;
  }
  .formats__criteria {
    padding-top: 114px;
    width: 150px;
  }
  .formats__criterion:first-child::before {
    width: calc(100vw - 15px);
  }
  .formats__criterion::after {
    width: calc(100vw - 15px);
  }
  .formats__cards {
    display: block;
    margin: 0 -7px;
  }
  .formats__cards .slick-list {
    overflow-y: hidden;
    padding: 14px 0;
  }
  .formats__cards .slick-arrow {
    background-color: #60C3D4;
    top: 40px;
  }
  .formats__cards .slick-arrow:hover {
    background-color: #3aa8b7;
  }
  .formats__cards .slick-prev {
    background-image: url(../img/slider_prev_white.svg);
    left: 10px;
  }
  .formats__cards .slick-next {
    background-image: url(../img/slider_next_white.svg);
    left: 236px;
  }
  .formats__card {
    margin: 0 7px;
    width: 296px;
  }

  .indicators::after {
    bottom: -240px;
  }
  .indicators__slide {
    grid-gap: 20px;
    grid-template: repeat(2, auto)/1fr;
  }
  .indicators__img {
    width: 100%;
  }

  .variants__table {
    grid-gap: 40px;
  }
  .variants__cards {
    min-width: 370px;
  }
}
@media screen and (max-width: 640px) {
  .header__phone {
    display: none;
  }

  .home__container {
    grid-template-columns: 1fr;
  }
  .home__img {
    display: none;
  }

  .benefits__container {
    flex-wrap: wrap;
  }
  .benefits__border {
    display: none;
  }
  .benefits__card {
    width: 50%;
  }
  .benefits__card:last-child {
    margin-top: 40px;
  }

  .about iframe {
    width: 100%;
  }
  .about p {
    font-size: 16px;
    margin-top: 20px;
  }

  .room {
    padding-top: 25px;
  }

  .geo__photo {
    height: 80px;
    width: 80px;
  }

  .numbers__grid {
    grid-row-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }

  .variants__criterion:first-child::before {
    width: calc(100vw - 15px);
  }
  .variants__criterion::after {
    width: calc(100vw - 15px);
  }
  .variants__cards {
    display: block;
    margin: 0 -7px;
  }
  .variants__cards .slick-arrow {
    background-color: #60C3D4;
    top: 12px;
  }
  .variants__cards .slick-arrow:hover {
    background-color: #3aa8b7;
  }
  .variants__cards .slick-prev {
    background-image: url(../img/slider_prev_white.svg);
    left: -150px;
  }
  .variants__cards .slick-next {
    background-image: url(../img/slider_next_white.svg);
    left: -80px;
  }
  .variants__card {
    margin: 0 7px;
    width: 300px;
  }
  .variants__criterion {
    height: 102px;
  }
  .variants__check {
    height: 102px;
  }

  .step__grid {
    grid-template-columns: 1fr;
  }

  .footer__mails {
    grid-template-columns: 1fr;
  }
  .footer__down p {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .section__title:before {
    height: 34.24px;
    width: 50.69px;
  }
  .section__title h2 {
    font-size: 28px;
    padding-left: 10.24px;
  }

  .header__logo {
    width: 220px;
  }
  .header__toggle {
    height: 25px;
    width: 25px;
  }
  .header__toggle.active .header__toggle--line:nth-child(1) {
    transform: translateY(11.5px) rotate(-45deg);
  }
  .header__toggle.active .header__toggle--line:nth-child(3) {
    transform: translateY(-11.5px) rotate(45deg);
  }

  .home::before {
    bottom: -83%;
  }
  .home::after {
    width: 20%;
  }
  .home__title {
    font-size: 26px;
  }

  .benefits__card {
    width: 100%;
  }
  .benefits__card:not(:first-child) {
    margin-top: 40px;
  }

  .room__cards {
    grid-gap: 50px;
    grid-template-columns: 1fr;
  }
  .room__card span {
    margin-top: 30px;
  }
  .room__btn {
    font-size: 14px;
  }

  .geo {
    background-size: contain;
  }
  .geo h2 {
    width: min-content;
  }
  .geo__btns {
    grid-template-columns: repeat(2, 1fr);
  }
  .geo__btns button {
    padding: 10px 14px 13px;
  }
  .geo__info {
    padding-left: 15px;
  }

  .opening__cards {
    grid-template-columns: 1fr;
  }

  .formats__table {
    grid-gap: 15px;
  }
  .formats__criteria {
    width: 140px;
  }
  .formats__cards .slick-prev {
    left: -150px;
  }
  .formats__cards .slick-next {
    left: -60px;
  }
  .formats__card {
    width: 150px;
  }

  .numbers__filter {
    padding: 60px 0;
  }
  .numbers__yellow {
    font-size: 40px;
  }
  .numbers__white {
    font-size: 16px;
  }
  .numbers__description {
    font-size: 16px;
  }

  .indicators__slider {
    padding: 0;
  }
  .indicators__slider .slick-arrow {
    top: 150px;
    height: 30px;
    width: 30px;
  }
  .indicators__img {
    padding: 0 40px;
  }
  .indicators__h3 {
    font-size: 18px;
  }
  .indicators__text {
    font-size: 14px;
  }
  .indicators__btn {
    font-size: 16px;
    width: 100%;
  }

  .calculator__formats {
    grid-template-columns: 1fr;
  }

  .variants__table {
    grid-gap: 25px;
  }
  .variants__card {
    width: 150px;
  }

  .step::before {
    bottom: -27%;
  }

  .footer__person {
    align-items: flex-start;
    grid-gap: 30px;
    margin-top: 35px;
  }
  .footer__person img {
    width: 100px;
  }
  .footer__person--name {
    font-size: 20px;
  }
  .footer__person--position {
    font-size: 14px;
  }
  .footer__person--phone {
    font-size: 14px;
    padding-left: 25px;
  }
  .footer__person--phone::before {
    height: 13px;
    width: 13px;
  }
  .footer__person--mail {
    font-size: 14px;
    padding-left: 25px;
  }
  .footer__person--mail::before {
    height: 10px;
    width: 14px;
  }
  .footer__form {
    padding: 16px;
  }
  .footer__form h3 {
    font-size: 24px;
  }
  .footer__mails {
    bottom: 0;
    margin: 40px 0;
  }
}
@media screen and (max-width: 380px) {
  .numbers__grid {
    grid-gap: 25px;
    grid-template-columns: 1fr;
  }
  .numbers__description {
    margin-top: 10px;
    text-align: center;
  }
  .numbers__button {
    width: 100%;
  }

  .indicators__slider .slick-arrow {
    top: 100px;
  }

  .step::before {
    bottom: -20%;
  }
}

/*# sourceMappingURL=main.css.map */

.fancybox__container .is-close {
	top: 0;
	right: 0;
}
.fancybox__content {
	padding: 0;
}


.invalid{
	border: 1px solid red !important;
}
.joinchat { z-index:999999999999999999999999999999999999999; }

