:root {
  --font-base: calc(10 / 1920 * 100vw);
  --font-base-mobile: calc(10 / 320 * 100vw);
  --gradient: linear-gradient(90deg, #ffa85e 0%, #ff6662 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueLTW1G-Lt.otf") format("otf"),
    url("../fonts/HelveticaNeueLTW1G-Lt.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueLTW1G-Md.otf") format("otf"),
    url("../fonts/HelveticaNeueLTW1G-Md.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueLTW1G-Roman.otf") format("otf"),
    url("../fonts/HelveticaNeueLTW1G-Roman.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

[bg="light"] {
  background: #fff !important;
  color: #000 !important;
}

[bg="light"] .icon {
  filter: invert();
}

[bg="darken"] {
  background: rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur();
  transform: translate3d(0, 0, 0);
}

[bg="blue"] {
  background-color: #e4f3fe;
}

[bg="darken"]::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur();
  transform: translate3d(0, 0, 0);
}

[bg="light"] .btn {
  background: var(--gradient) !important;
  color: #fff !important;
}

[bg="gradient"] {
  background: var(--gradient);
}

[bg="beige"] {
  background: #f6e2a5 !important;
  color: #000 !important;
}

[color="dark"] {
  color: #000;
}

[color="light"] {
  color: #fff;
}

html {
  font-size: var(--font-base);
  font-family: "Helvetica";
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: "Helvetica";
}

main {
  flex: 1 0 0;
  font-size: 1.8rem;
}

.header {
  display: flex;
  align-items: center;
  z-index: 1000;
}

.container {
  padding: 11.7rem 15.9rem;

  position: relative;
  display: flex;
  flex-direction: column;
}

.container-md {
  padding: 12.5rem 15rem;
  position: relative;
}

.container-xs {
  margin: 0 auto;
  max-width: 630px;
  position: relative;
}

.header__main {
  position: fixed;
  background: #00000059;
  padding: 1.703rem 14.769rem 2.424rem 15.1rem;
  color: #fff;
  width: 100%;
  display: flex;
  border-bottom: 1px #ffffff42 solid;
  align-items: center;
  font-size: 1.4rem;
  z-index: 1000;
  transition: 0.3s;
}

.bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}

img {
  object-fit: scale-down;
  width: 100%;
}

.bg-wrapper img,
.bg-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo__container {
  display: flex;
  align-items: center;
  gap: 0.935rem;
}

.logo__video {
  border-radius: 50%;
  width: 3.792rem;
  height: 3.792rem;
  overflow: hidden;
}

.logo__video video {
  width: 3.792rem;
  height: 3.792rem;
  border-radius: 50%;

  object-fit: cover;
}

.nav__links {
  display: flex;
  margin-left: 19.5rem;
  gap: 5rem;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.header__main a {
  color: inherit;
}

.main__banner {
  width: 100%;
  height: 90vh;
  color: #fff;
  position: relative;
  font-weight: 400;
  min-height: 720px;
  background: #00000059;
}

.main__banner .bg-wrapper img {
  object-position: right;
}

.lang__select {
  display: flex;
  align-items: center;
  margin-left: 7.09rem;
  gap: 1rem;
  text-transform: uppercase;
}

.lang__select .active {
  position: relative;
  text-decoration: underline;
}

.banner__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 31.8rem);
}

.banner__content {
  position: relative;
  padding: 27.959rem 15rem;
  padding-right: 18.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
}

.border__left {
  border-left: 1px solid;
  padding-left: 4.8rem;
}

.txt {
  max-width: 39.5rem;
}

.scrn1 .row {
  justify-content: space-between;
  margin-top: 7.06rem;
}

.banner__subtitle {
  line-height: 118.182%;
  text-transform: uppercase;
}

.typing__animation {
  border-right: 1px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.75s step-end infinite;
  height: 100%;
}

.disclaimer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 750px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 3.223rem;
}

.main__banner .socials {
  position: absolute;
  left: 15.9rem;
  bottom: 23.533rem;
}

.disclaimer .text-lg {
  margin: 2.776rem 0 4.152rem;
  line-height: 1.5;
}

section {
  position: relative;
}

.divider {
  width: 1px;
  height: 100%;
  background: #fff;
  opacity: 0.25;
}

.footer {
  background: url("/static/img/footer__bg.jpg") no-repeat;
  background-size: 100% 100%;
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  padding: 7.1rem 16.617rem 8.6rem 16.573rem;
}

.footer .nav__links {
  gap: 2.7rem;
  font-size: 1.8rem;
  margin-left: 0;
}

.footer .nav__link {
  padding-right: 5rem;
  position: relative;
}

.footer a {
  color: #000;
}

.footer .logo__image {
  width: 15rem;
  margin: 0 auto;
  margin-bottom: 5.1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col:first-child {
  max-width: 54rem;
}

.footer__col:last-child {
  margin-left: auto;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__col:last-child .footer__row {
  margin-top: 9.6rem;
  justify-content: space-between;
}

.pageUp::after {
  content: "";
  background: url("/static/img/arrow.svg") no-repeat;
  background-size: contain;
  width: 1.352rem;
  height: 0.796rem;
}

.pageUp {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.footer__logo {
  margin-bottom: 2.8rem;
}

.revealing__text {
  font-size: 5rem;
  text-transform: uppercase;
  text-align: center;
}

.word {
  opacity: 0.1;
  transition: opacity 0.3s ease-in-out;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}
h1,
.count-up {
  font-size: 3.6rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}
small {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

.text-lg {
  font-size: 1.8rem;
  line-height: 1.5;
}

.text-md {
  font-size: 1.6rem;
}

.title-xs {
  font-size: 3rem;
}

.text-sm {
  font-size: 1.4rem;
}

.banner__logo img {
  width: 100%;
  object-fit: cover;
}

.whatsapp .icon {
  content: "";
  background: url("/static/img/whatsapp.svg") no-repeat center;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  display: block;
}

.phone .icon {
  content: "";
  background: url("/static/img/phone.svg") no-repeat center;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  display: block;
}

.instagram .icon {
  content: "";
  background: url("/static/img/instagram.svg") no-repeat center;
  background-size: contain;
  width: 1.992rem;
  height: 2rem;
  display: block;
}

.footer .phone::before,
.footer .instagram::before,
.footer .whatsapp::before {
  filter: invert();
}

.btn {
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  padding: 2.9rem 5.2rem;
  border-radius: 5rem;
  background: var(--gradient);
  color: #fff;
  z-index: 10;
  cursor: pointer;
}

.btn.loading {
  opacity: 0.7;
  background: #aaa;
}

#popup-form {
  border-radius: 1rem;
}

#popup-form #fancybox-form {
  margin-top: 3rem;
  grid-template-columns: repeat(1, 1fr);
  padding: 0 2rem;
  display: grid;
  column-gap: 2rem;
  row-gap: 2rem;
}

button.btn {
  border: none;
}

.header__main .btn {
  background: #fff;
  font-size: 1.4rem;
  text-align: center;
  color: #000;
  border-radius: 5rem;
  margin-left: auto;
  padding: 1.7rem 2.8rem;
  border: none;
}

.footer .btn {
  background: #000;
  color: #aad9d9;
  padding: 1.7rem 2.8rem;
}

h1 {
  font-size: 6rem;
  font-weight: 500;
  text-transform: uppercase;
}

.banner__subtitle {
  font-size: 4.4rem;
  margin-bottom: 5rem;
}

html[lang="kk"] .banner__subtitle {
  margin-bottom: 0;
}

html[lang="kk"] .banner__title:last-of-type {
  margin-bottom: 5rem;
}

.banner__subtitle {
  font-weight: 400;
}

.banner__content .btn {
  padding: 2.35rem 6.5rem;
}

.ny__main .bg-wrapper {
  z-index: 1;
}

.banner__title {
  font-size: 12rem;
  color: var(--gradient);
  font-weight: 600;
  background: linear-gradient(90deg, #ffa85e 0%, #ff6662 100%);
  row-gap: 3.2rem;
  line-height: normal;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.second__line {
  position: relative;
  left: 6rem;
}

.title-md {
  font-size: 7rem;
}

.weather__col {
  display: flex;
  flex-direction: column;
  padding-left: 4rem;
  padding-right: 10rem;
  border-left: 1px #ffffff62 solid;
  font-weight: 600;
  max-width: 4.8rem;
}

.row {
  display: flex;
}

.snow__ball {
  width: 71.421rem;
  height: 84.513rem;
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
}

.txt1 {
  margin-top: 4.8rem;
  width: 100%;
  object-fit: contain;
  border-radius: 1rem;
}

.txt2 {
  width: 100%;
  max-height: 29.5rem;
  margin-bottom: 5.4rem;
  max-width: 39rem;
  object-fit: contain;
  border-radius: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.snow__animation {
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  max-width: 70%;
}

.snow__ball img:not(.snow__animation) {
  object-fit: contain;
}

.weather__day {
  font-size: 1.4rem;
  min-width: 9rem;
}

.weather__text {
  font-size: 1.8rem;
}

.weather__icon {
  width: 4.035rem;
  height: 4.235rem;
  margin-top: 1.62rem;
  margin-bottom: 1.184rem;
}

.weather__grid {
  display: flex;
  margin-top: 8%;
}

.num .count-up {
  font-weight: 400;
  margin-bottom: 1rem;
}

.num {
  width: 25rem;
}

.col {
  display: flex;
  flex-direction: column;
}

.scrn2 {
  flex-direction: row;
}

.scrn2 .col span {
  margin: 2.33rem 0 3.912rem;
}

.scrn2 .col {
  align-items: flex-start;
  margin-right: 18.414rem;
}

.scrn2 .grid-2 .row {
  align-items: center;
}

.scrn2 .grid-2 {
  column-gap: 15.875rem;
  row-gap: 4.372rem;
}

.scrn3 .bg-wrapper {
  z-index: 2;
  pointer-events: none;
  overflow: visible;
  top: -12rem;
}

.scrn3 .bg-wrapper img {
  height: revert;
}

.entertainment__1 {
  gap: 2rem;
  margin-top: 5.23rem;
}

.entertainment__block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  overflow-x: hidden;
}

.hovering__slider {
  position: relative;
  overflow: hidden;
}

.hovering__slider .swiper-pagination {
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  display: flex;
}

.hovering__slider .swiper-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 0;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 2;
}

.entertainment__block .text-lg {
  display: flex;
  align-items: center;
}

.entertainment__block .text-lg::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 3.1rem;
  background-color: #ff6662;
  border-radius: 0.3rem;
}

.entertainment__2 {
  margin: 6.946rem 0 8.546rem;
  gap: 1.8rem;
}

.entertainment__2 .entertainment__block .hovering__slider {
  width: 79rem;
  height: 38.5rem;
  border-radius: 1rem;
}

.place__block .swiper-slide {
  max-width: 100%;
  width: 100% !important;
}

.hovering__slider .swiper-slide {
  overflow: hidden;
}

.entertainment__2 .entertainment__block .hovering__slider img {
  border-radius: 1rem;
  object-fit: cover;
}

.entertainment__3 {
  gap: 1.9rem;
}

.entertainment__3 video,
.entertainment__3 img {
  max-width: 39rem;
  height: 38.5rem;
  object-fit: cover;
  border-radius: 1rem;
}

.entertainment__block img {
  border-radius: 1rem;
}

.scrn2 .col {
  max-width: 50.167rem;
}

.scrn2 .grid-2 img {
  object-fit: contain;
  max-width: 5rem;
  margin-right: 6rem;
}

.warn {
  display: flex;
  align-items: center;
}

.warn::before {
  content: "*";
  font-size: 3rem;
  margin-right: 1.3rem;
  line-height: normal;
}

.scrn4 .title-md {
  margin-bottom: 1.7rem;
}

.numbers {
  display: flex;
  justify-content: space-between;
}

.num1 {
  margin-top: 16.3rem;
}

.num2 {
  margin-top: 11.8rem;
}

.num3 {
  margin-top: 7.3rem;
}

.num4 {
  margin-top: 2.5rem;
}

.teaser {
  font-weight: 400;
  margin-left: auto;
}

#about {
  width: 100%;
  height: 213.8rem;
  background: url("/static/img/second__bg.png") no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-weight: 400;
}

#about .container-xs {
  margin-top: 22rem;
  color: #000;
  max-width: revert;
  width: 63rem;
  position: relative;
  h1 {
    white-space: nowrap;
  }
}

.absolute {
  position: absolute;
}

img.absolute {
  object-fit: cover;
}

.skier {
  right: 5.1rem;
  bottom: 69.1rem;
  width: 53rem;
  height: 53rem;
}

.skier,
.snowboard,
.numbers,
.talgar,
.resort {
  will-change: transform;
}

.snowboard {
  left: 3.5rem;
  bottom: 25rem;
  width: 53rem;
  height: 53rem;
}

.video__mountain {
  width: 40.3rem;
  height: 54.7144rem;
  border-radius: 1rem;
  left: 0;
  bottom: 42.1rem;
  border: none;
}

.video__mountain video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: none;
}

.talgar {
  bottom: 15rem;
  right: 64.5rem;
  width: 42rem;
  height: 29rem;
  color: #000;
}

.image__text {
  transform: rotate(-90deg);
  text-align: right;
  left: -5.2rem;
  top: 6rem;
  position: absolute;
}

@media screen and (max-width: 1500px) {
  .image__text {
    left: -8rem;
  }
}

.resort {
  right: 0;
  bottom: 25rem;
  color: #000;
}

.resort .image__text {
  left: -10rem;
  top: 8rem;
}

.resort .text-md {
  margin-top: 3rem;
  font-weight: 600;
}

.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#promo {
  display: flex;
  gap: 2rem;
}

#promo .bg-wrapper {
  z-index: 0;
}

.promo__block {
  position: relative;
  height: 65rem;
  z-index: 1;
  padding: 12.9rem 14.3rem 11.3rem 13.7rem;
  color: #fff;
  border-radius: 1rem;
}

.promo__block video,
.promo__block .bg-wrapper,
.promo__block img {
  border-radius: 1rem;
}

.promo__block .bg-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 1rem;
}

.promo__block:first-child .btn {
  background: #e84444;
}

.promo__block .btn {
  width: 34rem;
}

.promo__block:last-child .btn {
  background: #f6e2a5;
  color: #000;
}

#promo .snow {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url("/static/img/snow.png") no-repeat;
  background-size: cover;
  z-index: 3;
  transform: scale(0);
  transition: 0.5s;
  pointer-events: none;
}

#promo .snow.active {
  transform: scale(1);
}

.promo__content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 52.6rem;
  justify-content: space-between;
  height: 100%;
  align-items: flex-start;
}

.promo__content h1 {
  font-weight: 400;
}

#instagram__section {
  text-align: center;
}

#instagram__section .disclaimer {
  margin: 0 auto;
  align-items: center;
  max-width: 800px;
  margin-bottom: 5.7rem;
}

a:any-link {
  cursor: pointer;
  text-decoration: none;
  transition: 0.1s;
}

a:any-link:hover {
  opacity: 0.5;
}

.mob {
  display: none;
}
.footer .nav__link .icon {
  filter: invert();
}

.main__banner .col {
  align-items: flex-start;
}

.place__block {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  position: relative;
  width: 52.5rem;
}

.place__block .block__content {
  padding: 4.2rem 4rem 5rem;
  display: flex;
  flex-direction: column;
}

.place__block .block__content .text-lg {
  margin: 1.571rem 0 1.939rem;
}

.place__block .block__content .btn,
.cottage__block .btn {
  padding: 0;
  width: 21.8rem;
  display: block;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cottage__block .btn {
  min-width: 21.8rem;
}

.btn-container {
  display: flex;
  align-items: center;
  gap: 0.939rem;
}

.btn-container .btn:first-child {
  background: #ff6662;
  color: #fff;
}

.btn-container .btn:last-child,
.cottage__block .btn {
  background: none;
  border: 1px #ff6662 solid;
  color: #ff6662;
}

.place__block video,
.place__block img {
  width: 52.5rem;
  height: 40rem;
  object-fit: cover;
  border-radius: 1rem;
}

.places {
  gap: 2rem;
  margin-top: 4.288rem;
}

.cottages {
  margin-top: 5.1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 6.8rem;
}

.cottage__block img {
  width: 52.5rem;
  height: 40rem;
  border-radius: 1rem;
}

.cottage__block .title-xs {
  margin: 1.371rem 0 2.171rem;
}

.cottage__block {
  border-radius: 1rem;
  background: #fff;
}

.cottage__content {
  padding: 2.9rem 4rem 4.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5.9rem;
  row-gap: 5.619rem;
  margin-top: 5rem;
}

.form-field {
  border: none;
  border-bottom: 1px solid #000;
  padding: 1.6rem 0 2.5rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
}

.form-field:focus {
  outline: none;
}

.form-field label {
  font-size: 1.4rem;
}

input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 3;
}

.s-box {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #ff6662;
  border-radius: 0.5rem;
  position: relative;
}

.form-row {
  position: relative;
}

.form-row:has(.s-box) {
  display: flex;
  align-items: center;
  gap: 3.4rem;
}

.form-row:has(input[type="checkbox"]:checked) .s-box {
  background: #ff6662;
}

.form-row:has(input[type="checkbox"]:checked) .s-box:after {
  position: absolute;
  top: 59%;
  left: 60%;
  width: 5px;
  width: 0.5rem;
  height: 10px;
  height: 1rem;
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: translate(-50%, -50%) rotate(40deg);
  -ms-transform: translate(-50%, -50%) rotate(40deg);
  transform: translate(-50%, -50%) rotate(40deg);
  content: "";
  scale: 2;
}

.scrn5 .bg-wrapper {
  z-index: 2;
  top: -2rem;
  pointer-events: none;
}

.scrn5 .bg-wrapper img,
.scrn1 .bg-wrapper img {
  height: revert;
}

.scrn1 .bg-wrapper {
  z-index: 0;
  pointer-events: none;
}

.restaurant__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 6.2rem 5.8rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 20;
  background: #fff;
  pointer-events: none;
  border-radius: 1rem;
}

.restaurant__menu:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2rem;
  left: 0;
  bottom: 0;
  background: url("/static/img/menu__bottom.jpg");
}

.restaurant__menu .title-xs {
  margin-bottom: 3rem;
}

.place__block .restaurant__menu .text-lg {
  margin-top: 0;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1000px) {
  .pc {
    display: none;
  }

  .mob {
    display: flex;
  }

  html {
    overflow-x: hidden;
    font-size: var(--font-base-mobile);
  }

  body {
    font-size: 1.2rem;
  }

  .header__main {
    padding: 1.3rem 2rem 1.459rem;
    max-width: 100%;
  }

  .header__main .wrapper {
    display: flex;
  }

  .banner__subtitle,
  .count-up,
  h1 {
    font-size: 1.6rem;
  }

  .banner__title {
    font-size: 4rem;
    line-height: normal;
    margin: 1rem 0;
    height: 9.5rem;
  }

  .hovering__slider .swiper-pagination {
    pointer-events: none;
  }

  .banner__content {
    padding: 13.3rem 2rem 2rem;
  }

  .container,
  .container-md,
  .container-xs {
    padding: 5.5rem 2rem 4.4rem;
  }

  .main__banner {
    min-height: 483.39px;
    height: 70vh;
  }

  .banner__content {
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    gap: 3.7rem;
  }

  .btn {
    font-size: 1.2rem;
    width: 100%;
    display: flex;
    padding: 2rem 0;
    align-items: center;
    justify-content: center;
  }

  .logo__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .header__main .instagram {
    margin-left: auto;
  }

  .header__main .whatsapp {
    margin-left: 2rem;
  }

  .weather__day,
  .weather__text,
  .text-lg,
  .text-md {
    font-size: 1.2rem;
  }

  .weather__icon img {
    width: 2rem;
    height: 4rem;
  }

  .weather__icon {
    margin: 0;
    margin-right: 1rem;
  }

  .banner__subtitle br {
    display: none;
  }

  .banner__subtitle .second__line {
    left: 0;
  }

  .banner__subtitle {
    margin-bottom: 0;
  }

  .banner__subtitle:last-of-type {
    margin-bottom: 1.872rem;
  }

  .row {
    display: flex;
    align-items: center;
  }

  .weather__col {
    padding-left: 2rem;
    padding-right: 0;
    border: none;
  }

  .weather__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
  }

  .main__banner .col {
    width: 100%;
  }

  #about {
    background: url("/static/img/second__bg_mob.jpg") no-repeat;
    background-size: 100%;
    min-height: 129.4rem;
    height: 127rem;
  }

  #about h1 {
    font-size: 2.4rem;
  }

  .snowboard {
    height: 18rem;
    width: 18rem;
  }

  .skier {
    height: 16rem;
    width: 16rem;
  }

  .video__mountain {
    display: none;
  }

  .resort {
    right: revert;
    left: 2rem;
    position: static;
  }

  .resort img {
    width: 25rem;
    height: 19.121rem;
    object-fit: cover;
    border-radius: 1rem;
  }

  .image__text {
    font-size: 1.2rem;
  }

  .resort .image__text {
    left: revert;
    top: 5rem;
    right: -3rem;
    transform: rotate(90deg);
  }

  .numbers {
    flex-direction: column;
    margin-top: 14.2rem;
    width: 100%;
  }

  .num {
    margin-top: 0 !important;
    flex-direction: row;
    display: flex;
    gap: 2.343rem;
    width: 100%;
    align-items: center;
    margin-bottom: 2.4rem;
  }

  .main__banner .bg-wrapper img {
    object-position: revert;
  }

  .count-up {
    margin-bottom: 0;
    font-size: 3.6rem;
    white-space: nowrap;
    min-width: 12.112rem;
    text-align: start;
  }

  #about_2 {
    margin-top: 11rem;
  }

  #instagram__section .disclaimer .text-lg {
    margin: 0.843rem 0 1.429rem;
  }

  .second__line {
    left: 2rem;
  }

  .count-up .mob {
    display: inline;
    opacity: 0.1;
  }

  .teaser {
    font-size: 2.4rem;
    transform: translate(-3rem, 3rem);
  }

  .disclaimer {
    max-width: 100%;
  }

  #about .container-xs {
    width: 100%;
    margin-top: 8rem;
  }

  .snowboard {
    left: -0.5rem;
    bottom: 25rem;
  }

  .skier {
    right: 1.4rem;
    bottom: 25rem;
  }

  .talgar {
    bottom: 69rem;
    position: static;
    right: revert;
    left: 2rem;
    width: revert;
    height: revert;
    padding-left: 1rem;
    margin-bottom: 3.6rem;
  }

  .talgar .image__text {
    top: 3rem;
    left: -4.9rem;
  }

  .talgar img {
    width: 25rem;
    height: 11.0362rem;
    object-fit: cover;
    border-radius: 1rem;
  }

  #promo {
    flex-direction: column;
    gap: 5.2rem;
  }

  #instagram__section .mob {
    display: block;
  }

  #promo .bg-wrapper {
    inset: revert;
    top: 0;
    left: 0;
    height: 19rem;
    position: relative;
  }

  .promo__block {
    height: revert;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  #promo .snow {
    width: 100%;
    height: 30%;
    background-size: contain;
  }

  .promo__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 3.4rem;
    padding-right: 2.1rem;
    padding-left: 2rem;
  }

  .promo__block::after {
    /* content: none; */
    height: 19rem;
    background: rgba(0, 0, 0, 0.45);
  }

  .promo__content h1 {
    display: none;
  }

  .promo__block h1 {
    max-width: 240px;
    z-index: 4;
    padding: 2rem;
    font-weight: 500;
    font-size: 2.4rem;
    position: absolute;
    top: 6rem;
    left: 0;
  }

  .promo__content .text-lg {
    margin-top: auto;
    margin-bottom: 2.3rem;
  }

  .promo__content .btn {
    background: #f6e2a5 !important;
    color: #000;
    padding: 1.8rem 0;
    width: 100%;
  }

  .footer {
    padding: 3rem 4rem;
    font-size: 1.2rem;
    background-size: 100% 28.2rem;
  }

  .footer .logo__image {
    margin-bottom: 2rem;
    width: 10rem;
  }

  .footer .nav__link {
    padding-right: 0;
  }

  .footer__row {
    flex-direction: column-reverse;
    gap: 2.1rem;
  }

  .weather__day {
    min-width: 7rem;
  }

  .title-md {
    font-size: 2.4rem;
  }

  .scrn1 .second__line {
    left: 0;
  }
  #form-container .title-md {
    margin-bottom: 1.8rem;
  }
  #form-container .form {
    margin-top: 4.1rem;
  }

  .snow__ball {
    width: 100%;
    height: 34.245rem;
    position: static;
    transform: translate(0, 0);
    order: 3;
  }

  .scrn1 .row {
    flex-direction: column;
  }

  .scrn1 .txt {
    order: 4;
  }

  .entertainment__2 .entertainment__block .hovering__slider {
    height: 16rem;
    width: 100%;
  }

  .scrn1 .txt:first-of-type {
    margin: 2.4rem 0 3.9rem;
  }

  .scrn1 .txt {
    display: flex;
    flex-direction: column;
  }

  .scrn1 .txt:last-of-type {
    flex-direction: column-reverse;
  }

  .txt1,
  .txt2 {
    max-width: 100%;
  }

  .txt2 {
    margin-bottom: 0;
    margin-top: 2.7rem;
  }

  .scrn1 .bg-wrapper {
    z-index: 0;
    pointer-events: none;
    top: 18rem;
  }

  .txt1 {
    margin-top: 3.9rem;
  }

  .scrn2 .col {
    margin: 0;
  }

  .scrn2 {
    flex-direction: column;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }

  main {
    font-size: 1.2rem;
  }

  .btn.pc {
    display: none;
  }

  .scrn2 .grid-2 img {
    margin-right: 2.465rem;
    max-width: 4rem;
  }

  .scrn2 .grid-2 {
    column-gap: 0;
    row-gap: 2.1rem;
    margin-bottom: 4.2rem;
  }

  .scrn3 .bg-wrapper img {
    height: 41%;
  }

  .scrn3 .bg-wrapper {
    top: -5rem;
    right: -13rem;
  }

  .banner__content .btn {
    padding: 1.9rem 0;
    width: 100%;
  }

  .scrn3 .row {
    flex-direction: column;
    gap: 3.7rem;
    margin: 0;
  }

  .scrn3 .row img,
  .scrn3 .row video {
    height: 16rem;
    object-fit: cover;
    width: 100%;
  }

  .entertainment__block {
    width: 100%;
    gap: 1rem;
  }

  .scrn3 .entertainment__2 {
    margin: 3.7rem 0;
  }

  .place__block video,
  .place__block img {
    width: 100%;
    height: 20.5rem;
    object-fit: cover;
    border-radius: 1rem;
  }

  .title-xs {
    font-size: 1.8rem;
  }

  .place__block .block__content,
  .cottage__content {
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
  }

  .place__block .block__content .text-lg {
    margin: 0.9rem 0 1.83rem;
  }
  .place__block .block__content .btn,
  .cottage__block .btn {
    padding: 0;
    min-width: 7.6rem;
    width: revert;
    display: block;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .place__block .block__content .btn:first-child,
  .cottage__block .btn:first-child {
    flex-shrink: 0;
    flex-grow: 1;
  }

  .cottage__block img {
    width: 100%;
    height: 20.5rem;
    border-radius: 1rem;
    object-fit: cover;
  }
  .cottage__block .btn {
    width: 100%;
  }

  .cottages.grid-3 {
    display: flex;
  }

  .form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 5.9rem;
    row-gap: 3.3rem;
  }

  .form-field {
    padding: 0.8rem 0 1.2rem;
  }

  .form-row:has(.s-box) {
    gap: 1.6rem;
  }

  .s-box {
    width: 2.5rem;
    height: 2.5rem;
  }

  .form-row:has(input[type="checkbox"]:checked) .s-box:after {
    scale: 1;
    top: 50%;
    left: 50%;
  }

  .cottage__content .btn-container {
    width: 100%;

    .warn {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -4rem;
      width: 100%;
    }
  }

  .entertainment__block .text-lg::before {
    margin-right: 1.5rem;
    width: 1rem;
    height: 1rem;
  }

  .scrn3 .entertainment__1 {
    margin-top: 3rem;
  }

  .cottage__content .text-lg {
    font-size: 1.4rem;
  }

  .block__content .title-xs {
    font-weight: 600;
  }

  #popup-form #fancybox-form {
    padding: 0;
  }

  .restaurant__menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 2rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 20;
    background: #fff;
    pointer-events: none;
    border-radius: 1rem;
  }

  .restaurant__menu:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1rem;
    left: 0;
    bottom: 0;
    background: url("/static/img/menu__bottom.jpg");
  }

  .restaurant__menu .title-xs {
    margin-bottom: 1rem;
  }

  .place__block .restaurant__menu .text-lg {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}

.cottage__content .warn {
  align-items: flex-start;
  margin-left: 2rem;
}

.success-screen {
  text-align: center;
  display: none;
}
