: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="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: 100vh;
  color: #fff;
  position: relative;
  font-weight: 400;
  background: #00000059;
}

.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: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.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 {
  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;
}

.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;
}

.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;
}

.banner__subtitle,
h1 {
  font-size: 6rem;
  font-weight: 500;
  text-transform: uppercase;
}

.banner__subtitle {
  font-weight: 400;
}

.banner__title {
  font-size: 16rem;
  color: var(--gradient);
  font-weight: 600;
  background: linear-gradient(90deg, #ffa85e 0%, #ff6662 100%);
  row-gap: 3.2rem;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.second__line {
  position: relative;
  left: 6rem;
}

.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;
}

.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;
}

.num h1 {
  font-weight: 400;
  margin-bottom: 1rem;
}

.num {
  width: 25rem;
}

.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;
}

.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;
}

.form {
  display: none;
}

.mob {
  display: none;
}
.footer .nav__link .icon {
  filter: invert();
}

@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,
  h1 {
    font-size: 1.6rem;
  }

  .banner__title {
    font-size: 4.2rem;
  }

  .banner__content {
    padding: 13.3rem 2rem 5.7rem;
  }

  .container,
  .container-md,
  .container-xs {
    padding: 5.5rem 2rem 4.4rem;
  }

  .main__banner {
    height: revert;
  }

  .banner__content {
    flex-direction: column;
    height: 100%;
    justify-content: revert;
    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;
  }

  .row {
    display: flex;
    align-items: center;
  }

  .weather__col {
    padding-left: 2rem;
    padding-right: 0;
  }

  .weather__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .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;
  }

  #about .num h1 {
    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;
  }

  .num h1 .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: -3.9rem;
  }

  .talgar img {
    width: 25rem;
    height: 11.0362rem;
    object-fit: cover;
    border-radius: 1rem;
  }

  #promo {
    flex-direction: column;
    gap: 5.2rem;
  }

  #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;
  }
}
