@import url("../fonts/AvenirNextCyr/stylesheet.css");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next Cyr", sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #000;
  padding-top: 80px;
}
@media (max-width: 1160px) {
  body {
    padding-top: 70px;
  }
}
@media (max-width: 900px) {
  body {
    font-size: 15px;
  }
}

button {
  outline: none !important;
  cursor: pointer;
}

*:focus-visible {
  outline: 1px solid !important;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1326px;
  padding: 0 24px;
  margin: 0 auto;
}
@media (max-width: 1160px) {
  .container {
    padding: 0 13px;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  z-index: 5;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1160px) {
  .header__container {
    display: none;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  white-space: nowrap;
  width: 100%;
}
.header-nav__item {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 26px 0 32px;
  border-top: 2px solid transparent;
  transition: 0.2s;
}
.header-nav__item:hover {
  color: #E3000F;
  border-color: #CCCA06;
  text-decoration: none;
}
.header__logo {
  position: relative;
  display: flex;
  flex-shrink: 0;
  height: 90px;
  margin: 8px 25px -18px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  white-space: nowrap;
}
.header-reserve-btn {
  background-color: transparent;
  border: none;
  text-decoration: dotted;
  color: #E3000F;
  font-weight: 500;
  border-bottom: 1px dashed;
  padding: 0;
  margin: 0;
  transition: 0.2s;
}
.header-reserve-btn:hover {
  color: #000;
  border-color: #CCCA06;
}
.header-mobile {
  display: none;
}
@media (max-width: 1160px) {
  .header-mobile {
    display: block;
  }
}
.header-mobile__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 13px 4px;
}
.header-mobile__btn {
  position: relative;
  background-color: transparent;
  border: none;
  background-image: url(../icons/menu.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 14px;
  z-index: 99;
}
.header-mobile__phone {
  background-color: transparent;
  border: none;
  background-image: url(../icons/phone.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.header-mobile .header__logo {
  height: 71px;
  z-index: 11;
}
.header-mobile__btn-close {
  display: none;
}
@media (max-width: 767px) {
  .header-mobile__btn-close {
    display: block;
    position: relative;
    background-color: transparent;
    border: none;
    background-image: url(../icons/close.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 14px;
  }
}
.header-mobile-popup {
  display: none;
  position: fixed;
  background: #fff;
  width: 100%;
  max-width: 450px;
  left: 0;
  top: 0;
  padding-top: 70px;
  border-radius: 0 0 23px 23px;
  z-index: 9;
}
@media (max-width: 767px) {
  .header-mobile-popup {
    max-width: none;
  }
}
.header-mobile-popup__head {
  position: absolute;
  top: 28px;
  left: 75px;
}
@media (max-width: 767px) {
  .header-mobile-popup__head {
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    padding: 0 13px;
  }
}
.header-mobile-popup .header-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(204, 202, 6, 0.3);
  margin-bottom: 33px;
}
@media (max-width: 767px) {
  .header-mobile-popup .header-nav {
    padding-top: 31px;
  }
}
.header-mobile-popup .header-nav__item {
  width: 100%;
  padding: 6px 0;
  border-color: transparent;
}
.header-mobile-popup .contacts-list {
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(204, 202, 6, 0.3);
  margin-bottom: 33px;
}
.header-mobile-popup .header-reserve-btn {
  width: auto;
  margin: 0 auto 22px;
}
.header-mobile-popup .container {
  display: flex;
  flex-direction: column;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 4;
  display: none;
}

.active-menu .header-mobile-popup {
  display: block;
}
.active-menu .header-mobile__btn {
  background-image: url(../icons/close.svg);
}
.active-menu .menu-backdrop {
  display: block;
}
@media (max-width: 767px) {
  .active-menu .header-mobile__btn {
    visibility: hidden;
  }
}

.language-toggle {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 500;
  gap: 7px;
  margin: 0;
}
.language-toggle__item {
  color: #707070;
  text-decoration: none !important;
}
.language-toggle__item:hover {
  color: inherit;
}
.language-toggle__item.active {
  pointer-events: none;
  color: #E3000F;
}
.language-toggle__fake {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #EEEEEE;
  border-radius: 50px;
  width: 36px;
  height: 18px;
}
.language-toggle__fake:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #CCCA06;
  border-radius: 100%;
  top: 2.8px;
  right: 4px;
}
.language-toggle__item.active + .language-toggle__fake:before {
  left: 4px;
  right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}
.contact-item:hover {
  color: #E3000F;
  text-decoration: none;
}
.contact-item:before {
  content: "";
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.contact-item_phone:before {
  background-image: url(../icons/phone.svg);
}
.contact-item_address:before {
  background-image: url(../icons/pin.svg);
}
.contact-item_mail:before {
  background-image: url(../icons/mail.svg);
}

.top-section {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .top-section {
    margin-bottom: 40px;
  }
}
.top-section__img {
  width: 100%;
  height: auto;
  max-height: 648px;
  object-fit: cover;
}
@media (max-width: 780px) {
  .top-section__img {
    height: 500px;
    object-position: 75%;
  }
}
.top-section-info {
  background: #fff;
  width: 100%;
  border-radius: 20px;
  margin: -154px 0 120px;
  position: relative;
  padding: 37px 24px 50px;
  text-align: center;
  min-height: 200px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .top-section-info {
    margin-bottom: 50px;
  }
}
.top-section-info__text {
  margin-bottom: 36px;
}
.top-section-info .blur-block_left {
  left: -20px;
  top: 22px;
}
.top-section-info .blur-block_left:before {
  top: 30px;
  left: 30px;
}
.top-section-info .blur-block_right {
  top: -49px;
  right: 84px;
}
.top-section-info .blur-block_right:before {
  width: 50px;
  height: 50px;
  top: 16px;
  left: 16px;
}
.top-section-info .blur-block_right:after {
  width: 30px;
  height: 30px;
}

.lg-sub-html {
  display: none !important;
}

.slider {
  opacity: 0;
  height: 200px;
  overflow: hidden;
}
.slider.lightSlider {
  opacity: 1;
  height: auto;
}

.title {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 21px;
}
@media (max-width: 900px) {
  .title {
    font-size: 34px;
  }
}
.title .subtitle {
  font-size: 30px;
  font-weight: 200;
  margin-bottom: -7px;
}
@media (max-width: 900px) {
  .title .subtitle {
    font-size: 22px;
  }
}

.reserve-button {
  border: none;
  padding: 12px 34px 16px;
  background: #E3000F;
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  transition: 0.2s;
}
.reserve-button:hover {
  background-color: #CCCA06;
  color: #000;
}

.blur-block {
  position: absolute;
  pointer-events: none;
}
.blur-block:before, .blur-block:after {
  content: "";
  position: absolute;
  border-radius: 25%;
  backdrop-filter: blur(5px);
}
.blur-block:before {
  width: 20px;
  height: 20px;
  background-color: rgba(227, 0, 15, 0.5);
}
.blur-block:after {
  width: 40px;
  height: 40px;
  background-color: rgba(204, 202, 6, 0.5);
}