@import "../reset.css";
@import "../fonts.css";
html {
  scroll-behavior: smooth;
}

body {
  color: #fff;
  font-family: Gilroy;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #0b1d26;
}

main {
  flex: 1 0 auto;
}

.page-loader {
  position: fixed;
  z-index: 24235;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0b1d26;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader__span {
  font-family: Chronicle Display;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
}

.logo {
  font-family: Chronicle Display;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}
.image-wrapper__img {
  position: relative;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-wrapper::after {
  content: "";
  z-index: 1;
  background-image: url("../images/static/spinner.svg");
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.soc-media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 48em) {
  .soc-media {
    flex-direction: row;
  }
}
.soc-media__text {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.soc-media__logo {
  width: 1.5rem;
  height: 1.5rem;
}

.subtitle {
  position: relative;
  padding-left: 104px;
  color: #fbd784;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.375rem;
  text-transform: uppercase;
}
.subtitle::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 2px;
  top: 50%;
  left: 0;
  background-image: url("../../image/main-page/subtitle-line.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.title-h1 {
  font-family: Chronicle Display;
  font-size: 5.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 113.636%; /*  */
  text-transform: capitalize;
}
@media (max-width: 90em) {
  .title-h1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 64em) {
  .title-h1 {
    font-size: 3rem;
  }
}
@media (max-width: 48em) {
  .title-h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 27em) {
  .title-h1 {
    font-size: 2rem;
  }
}

.button {
  position: relative;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fbd784;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.button::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 1rem;
  width: 1.5rem;
  background-image: url("../../image/main-page/arr-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.button:hover::after {
  right: -3rem;
}
@media (hover: hover) {
  .button:hover {
    transform: scale(1.2);
  }
}

.main {
  position: relative;
  z-index: 2;
  top: -15.875rem;
}
.main__gradient {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  top: 0;
  transform: translateY(-40%);
  left: 0;
  right: 0;
  width: 100%;
  height: 43.75rem;
  background: linear-gradient(180deg, rgba(11, 29, 38, 0) 0%, #0b1d26 61.38%);
}
.main__blocks {
  position: relative;
  z-index: 4;
}

.title-h2 {
  font-family: Chronicle Display;
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 90em) {
  .title-h2 {
    font-size: 3rem;
  }
}
@media (max-width: 64em) {
  .title-h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 48em) {
  .title-h2 {
    font-size: 2rem;
  }
}
@media (max-width: 27em) {
  .title-h2 {
    font-size: 1.5rem;
  }
}

.text {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 177.778%; /* 177.778% */
}
@media (max-width: 27em) {
  .text {
    font-size: 1rem;
  }
}

.container {
  max-width: 120em;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 90em) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 64em) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 48em) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header {
  position: relative;
  background-image: url("../../image/main-page/header-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  height: max(100rem, 120vh);
}
.header::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(330deg, rgba(11, 29, 38, 0) 31.06%, #0b1d26 108.93%);
}
@media (max-width: 1023px) {
  .header {
    height: 110vh;
  }
}
.header__container {
  padding-top: 4rem;
  position: relative;
  z-index: 1;
  transition: transform 0.75s cubic-bezier(0.075, 0.5, 0, 1);
  will-change: transform;
}
@media (max-width: 48em) {
  .header__container {
    padding-top: 1.5rem;
  }
}
.header__upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 48em) {
  .header__logo {
    order: 2;
  }
  .header__navigation {
    order: 3;
  }
  .header__account-btn {
    order: 1;
  }
}
.header__content {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 1.5rem;
}
.header__body {
  margin-top: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 64em) {
  .header__body {
    margin-top: 16vh;
  }
}
@media (max-width: 48em) {
  .header__body {
    flex-direction: column-reverse;
    align-items: center;
    gap: 8rem;
  }
}
.header__button {
  color: #fff;
}
.header__button::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.5rem;
  background-image: url("../../image/main-page/arr-down.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.header__button:hover::after {
  top: 80%;
  right: -2rem;
}

.menu-switcher {
  position: relative;
  z-index: 1001;
  display: none;
  flex-direction: column;
  transition: gap 0.4s ease-in-out;
  width: 50px;
  gap: 8px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.menu-switcher__line {
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 2px;
  width: 50px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.menu-switcher__line:focus {
  outline: none !important;
}
.menu-switcher__line:nth-child(1) {
  top: 0;
}
.menu-switcher__line:nth-child(3) {
  bottom: 0;
}
.menu-switcher--opened .menu-switcher__line:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.menu-switcher--opened .menu-switcher__line:nth-child(2) {
  transform: rotate(-45deg);
}
.menu-switcher--opened .menu-switcher__line:nth-child(3) {
  bottom: 10px;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .menu-switcher {
    display: flex;
  }
}

.layer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transition: transform 0.75s cubic-bezier(0.075, 0.5, 0, 1);
  will-change: transform;
}

.layer-1 {
  transform: translate3d(0, calc(var(--scrollTop) / 3), 0);
}

.layer-2 {
  pointer-events: none;
  transform: translate3d(0, calc(var(--scrollTop) / 1.6), 0);
}

.layer-3 {
  pointer-events: none;
  transform: translate3d(0, calc(var(--scrollTop) / 7), 0);
  z-index: 2;
}

.navigation__list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 48em) {
  .navigation__list {
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    padding-top: 60px;
    position: fixed;
    flex-direction: column;
    gap: 40px;
    left: 0;
    right: 0;
    z-index: 999 !important;
    background-color: #262121;
    height: 300px;
    top: -300px;
    bottom: -200px;
  }
  .navigation__list--opened {
    top: 0;
  }
}
.navigation__item {
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (hover: hover) {
  .navigation__item:hover {
    transform: scale(1.2);
  }
}
.navigation__link {
  color: #FFF;
  font-family: Gilroy;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (hover: hover) {
  .navigation__link:hover {
    color: #FBD784;
  }
}

.account-btn {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (hover: hover) {
  .account-btn:hover {
    transform: scale(1.2);
  }
}
.account-btn__image {
  width: 1.5rem;
  height: 1.5rem;
}
.account-btn__text {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #FFF;
}

.num-block {
  width: 4.8125rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 48em) {
  .num-block {
    display: none;
  }
}
.num-block__item {
  width: 100%;
  border-right: 3px solid rgba(255, 255, 255, 0.6352941176);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.75rem;
  cursor: pointer;
}
.num-block__item:nth-child(1) {
  border-right: 3px solid #ffffff;
}
@media (hover: hover) {
  .num-block__item:hover > .num-block__num {
    transform: scale(1.2);
  }
}
.num-block__num {
  color: #FFF;
  text-align: right;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.blocks__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12.5rem;
  overflow-x: hidden;
}
@media (max-width: 64em) {
  .blocks__container {
    gap: 8rem;
  }
}

.descr-block {
  display: flex;
  align-items: center;
  max-width: 91.375rem;
  width: 100%;
}
.descr-block:nth-child(1) {
  margin-top: 5rem;
}
@media (max-width: 64em) {
  .descr-block {
    flex-direction: column;
    gap: 4rem;
  }
}
.descr-block:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 64em) {
  .descr-block:nth-child(2n) {
    flex-direction: column;
  }
}
.descr-block:nth-child(2n) .descr-block__content {
  align-items: flex-end;
}
.descr-block__content {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  flex: 0 0 62%;
}
.descr-block__content-body {
  position: relative;
  z-index: 2;
  max-width: 39.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.68rem;
}
.descr-block__numering {
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
  left: 0;
  position: absolute;
  color: #FFF;
  font-family: Gilroy;
  font-size: 240px;
  font-style: normal;
  font-weight: 700;
  line-height: 240px; /* 100% */
  opacity: 0.1;
}
@media (max-width: 90em) {
  .descr-block__numering {
    font-size: 12rem;
    transform: translate(0, -50%);
  }
}
@media (max-width: 64em) {
  .descr-block__numering {
    font-size: 13rem;
  }
}
@media (max-width: 48em) {
  .descr-block__numering {
    font-size: 12rem;
  }
}
@media (max-width: 27em) {
  .descr-block__numering {
    font-size: 8rem;
  }
}
.descr-block__img {
  max-width: 35.375rem;
  width: 100%;
  height: 45rem;
  flex: 0 1 auto;
}
@media (max-width: 48em) {
  .descr-block__img {
    height: 30rem;
  }
}

.navigation-mini {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.navigation-mini__title {
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  color: #FBD784;
}
.navigation-mini__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.navigation-mini__item {
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  position: relative;
  left: 0;
}
@media (hover: hover) {
  .navigation-mini__item:hover {
    left: 0.45rem;
  }
}
.navigation-mini__link {
  color: #FFF;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (hover: hover) {
  .navigation-mini__link:hover {
    color: #FBD784;
  }
}

.footer {
  padding-bottom: 120px;
}
.footer__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 48em) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
.footer__navs {
  display: flex;
  gap: 13.25rem;
}
@media (max-width: 64em) {
  .footer__navs {
    gap: 5rem;
  }
}
.mntn-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 280px;
}
@media (max-width: 48em) {
  .mntn-info {
    text-align: center;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.mntn-info__info {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  gap: 1.5rem;
  align-items: center;
}
.mntn-info__text {
  max-width: 18.9375rem;
}
.mntn-info__copyrights {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem; /* 177.778% */
  opacity: 0.5;
}
.mntn-info__title {
  font-family: Chronicle Display;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
}