html,
body {
  font-size: 10px;
  padding: 0;
  margin: 0;
  background: black;
}

@font-face {
  font-family: "TT Fors Trial Regular";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/TT Fors Trial Medium.woff") format("woff");
}

@font-face {
  font-family: "Le Murmure_Regular";
  src: url("../fonts/Le_Murmure-Regular_web.woff") format("woff"),
    url("../fonts/Le_Murmure-Regular_web.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

.first-steps-wrap {
  background: black url("../img/bg.jpg") no-repeat center;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--app-height);
  z-index: 10;
}
.slick-slider {
  height: var(--app-height);
}
.first-steps {
  /* position: fixed;
  left: 0;
  top: 0; */
  width: 100%;
  height: 100vh;
  height: var(--app-height);
  padding: 0 38px;
  text-align: center;
  display: grid;
  grid-template-rows: 1fr 1fr;
  box-sizing: border-box;
}
.first-steps__img {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 50vh; */
  height: calc(var(--app-height) / 2);
  box-sizing: border-box;
  padding-top: 20px;
}
.first-steps__img img {
  /* max-height: 312px; */
  max-width: 100%;
  @media screen and (max-height: 740px) {
    /* max-height: 255px; */
  }
}
.first-steps__img ._church {
  max-width: 70%;
}
.first-steps__options {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  /* height: 50vh; */
  height: calc(var(--app-height) / 2);
}
.first-steps__options__title {
  font-family: "Le Murmure_Regular";
  font-size: 60px;
  text-transform: uppercase;
  color: #faf0e6;
  padding-top: 20px;
  @media screen and (max-height: 740px) {
    padding-top: 10px;
    font-size: 45px;
  }
}
.first-steps__options__text {
  font-family: "TT Fors Trial Regular";
  font-size: 20px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.185714px;
  padding: 0;
  @media screen and (max-height: 740px) {
    font-size: 16px;
  }
}
.first-steps__options__button {
  border-top: 1px rgba(255, 255, 255, 0.3) solid;
  padding-top: 36px;
  padding-bottom: 36px;
  width: 100%;
  font-family: "Le Murmure_Regular";
  font-size: 34px;
  text-transform: uppercase;
  color: #faf0e6;
  transition: all 0.3s ease-in;
}

.start {
  background: black url("../img/bg.jpg") no-repeat center;
  background-size: cover;
  height: 100vh;
  padding: 0 38px;
  text-align: center;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.start__key {
  display: flex;
  justify-content: center;
  align-items: center;
}
.start__key img {
  max-height: 312px;
  @media screen and (max-height: 740px) {
    max-height: 255px;
  }
}

.start__options {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
}
.start__options__title {
  margin-bottom: 28px;
  max-width: 330px;
}
.start__options__text {
  font-family: "TT Fors Trial Regular";
  font-size: 24px;
  line-height: 124%;
  color: rgba(255, 255, 255, 0.4);
  @media screen and (max-height: 740px) {
    font-size: 20px;
  }
}
.start__options__access {
  border-top: 1px rgba(255, 255, 255, 0.3) solid;
  margin-top: 36px;
  padding-top: 36px;
  padding-bottom: 36px;
  width: 100%;
}
.start__options__access img {
  width: 116px;
}

.hidden {
  display: none !important;
}
.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.intro {
  height: 100vh;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in;
}
.intro.fade-out {
  opacity: 0;
}
.intro__partners {
  width: 300px;
  position: fixed;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  @media screen and (max-height: 740px) {
    bottom: 32px;
  }
}
.intro__logo {
  position: fixed;
  max-width: 90%;
  top: calc(50vh - 50px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.intro__loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100px);
  opacity: 0;
  transition: all 0.3s ease-in;

  font-family: "Le Murmure_Regular";
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #faf0e6;
}
.intro__loader div {
  margin-top: 12px;
  opacity: 0.8;
}
.intro__loader.--visible {
  opacity: 1;
}
.intro__loader__img {
  width: 80px;
  animation: rotate 5s linear infinite;
  @media screen and (max-height: 740px) {
    width: 60px;
  }
}
.intro__video {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  height: 100%;
  @media screen and (min-aspect-ratio: 12/20) {
    width: 100%;
    height: auto;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.slick-dots {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 12;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.slick-dots li button {
  background: none;
  border: 0;
  border-radius: 6px;
  width: 12px;
  height: 6px;

  background-color: rgba(216, 214, 201, .6);
  opacity: 1;
  overflow: hidden;
  transition: all 0.3s ease-in;
  text-indent: -100px;
}
.slick-dots li button:before {
  content: '';
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--dot-width);
  background-color: rgba(255, 255, 255, .6);
  display: none;
}
.slick-dots .slick-active button {
  width: 44px;
  background-color: rgba(216, 214, 201, .6);
  position: relative;
}
.slick-dots .slick-active button:before {
  display: inline-block;
}

.first-steps-wrap__arrow {
  position: fixed;
  top: 0;
  height: var(--app-height);
  width: 15vw;
  z-index: 10;
}
.first-steps-wrap__arrow.--left {
  left: 0;
}
.first-steps-wrap__arrow.--right {
  right: 0;
}


.first-steps__img.--step-1.animated ._img {
  -webkit-animation: fade-in 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: fade-in 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.first-steps__img.--step-2, .first-steps__img.--step-3 {
  position: relative;
}
.first-steps__img.--step-3 ._img {
  transform: translate(150%);
  transition: all .6s ease-in;
}
.first-steps__img.--step-3.animated ._img {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.first-steps__img.--step-2 ._coin {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 160px;
  transform: translate(-50%, -50%);
  /* transition: all .3s ease-in; */
  z-index: 10;
}
.first-steps__img.--step-2 ._chevrons {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 260px;
  transform: translate(-50%, -50%);
}
.first-steps__img.--step-2.animated ._chevrons {
  -webkit-animation: anim-rotation-1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: anim-rotation-1 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.first-steps__img.--step-2 ._left {
  position: absolute;
  width: 76px;
  top: 55%;
  left: 80%;
  transform: translate(-60px, -50%) scale(0.3) rotate(45deg);
  transition: all .7s ease-in;
  z-index: 9;
}
.first-steps__img.--step-2 ._right {
  position: absolute;
  width: 76px;
  top: 55%;
  left: 20%;
  transform: translate(24px, -50%) scale(0.3) rotate(45deg);
  transition: all .7s ease-in;
  z-index: 9;
}
.first-steps__img.--step-2.animated ._coin {
  /* width: 160px; */
  -webkit-animation: anim-rotation-2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: anim-rotation-2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.first-steps__img.--step-2.animated ._left {
  left: 50%;
  transform: translate(-160px, -50%) scale(1)  rotate(0deg);
}
.first-steps__img.--step-2.animated ._right {
  left: 50%;
  transform: translate(84px, -50%) scale(1)  rotate(0deg);
}


@keyframes fade-in {
  0% {
    opacity: 0;
  }
  85% {
    opacity: .85;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
    opacity: 0;
  }
  85% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
    opacity: .85;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes anim-rotation-1 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-270deg);
    transform: translate(-50%, -50%) rotate(-270deg);
    opacity: 0;
  }
  85% {
    -webkit-transform: translate(-50%, -50%) rotate(10deg);
    transform: translate(-50%, -50%) rotate(10deg);
    opacity: .85;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
}
@keyframes anim-rotation-2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(270deg);
    transform: translate(-50%, -50%) rotate(270deg);
    opacity: 0;
  }
  85% {
    -webkit-transform: translate(-50%, -50%) rotate(-10deg);
    transform: translate(-50%, -50%) rotate(-10deg);
    opacity: .85;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
}


.desktop-block {
  display: none;
}

@media screen and (min-width: 960px) {
  .desktop-block {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    background: linear-gradient(180.37deg, rgba(0, 0, 0, 0) 0.33%, #000000 99.03%), #271C1A;
    background: linear-gradient(180.37deg, color(display-p3 0.000 0.000 0.000 / 0) 0.33%, color(display-p3 0.000 0.000 0.000) 99.03%), color(display-p3 0.149 0.114 0.102);
    backdrop-filter: blur(50px);
  }
  .desktop-block > div {
    max-width: 403px;
    text-align: center;
  }
  .desktop-block__partners {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 269px;
  }
  .desktop-block__icon {
    margin: 32px 0;
  }
  .desktop-block__text {
    font-family: "TT Fors Trial Regular";
    font-size: 26px;
    line-height: 124%;
    color: rgba(255, 255, 255, 0.4);   
    max-width: 403px;
    text-align: center;
    margin: 0 auto;
  }
  .desktop-block__title {
    max-width: 100%;
  }
  .desktop-block__button {
    width: 310px;
    margin-top: 32px;
    cursor: pointer;
  }
}

@media screen and (max-height: 740px) {
  .desktop-block > div {
    max-width: 353px;
  }
  .desktop-block__text {
    font-size: 20px;
  }
  .desktop-block__icon {
    width: 260px;
  }
  .desktop-block__button {
    width: 270px;
  }
}
