@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

body {
  width: 100%;
  height: auto;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  word-wrap: break-word;
}

.content {
  background: url("../img/bg.png") no-repeat center / cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.content > * {
  position: relative;
  z-index: 1;
}

/* .content:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47px;
  right: 0;
  background: url("../img/bg-layer.png") no-repeat center / cover;
} */

.header {
  padding: 2.9vh 3.5vw 0;
}

.logo img {
  display: block;
    max-height: 127px;
  margin-left: auto;
  margin-right: auto;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: row;
  padding: 56px 8.45vw 0 75px;
  align-items: flex-start;
  justify-content: space-between;
}
.logo.desk-logo {
  margin-bottom: 45px;
}
.main__img {
  display: block;
  position: absolute;
  right: 0vw;
  bottom: -78px;
  max-width: 79%;
  z-index: 2;
}

.cryptex__wrap {
  /* background: url("../img/cryptex-bg.png") no-repeat top center / cover;
  width: clamp(600px, 48.3vw, 927px);
  padding: 33px 20px;
  position: relative;
  z-index: 0; */
  background: url(../img/cryptex-bg.png) no-repeat top center / cover;
  width: 1049px;
  height: 577px;
  padding: 50px 30px 50px 30px;
  position: relative;
  z-index: 0;
}

.cryptex__wrap.hide {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.cryptex__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* max-height: clamp(330px, 27.5vw, 528px); */
  overflow: hidden;
}

.cryptex__col {
  width: clamp(71px, 5.834vw, 112px);
}

.cryptex__col li {
  height: clamp(71px, 5.834vw, 111px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cryptex__col li + li {
  margin-top: clamp(-8px, -0.4vw, -4px);
}

.cryptex__col li img {
  display: block;
}

.cryptex__col.animate {
  -webkit-animation: col 0.8s cubic-bezier(0.13, 0.55, 0.24, 1) forwards;
  -moz-animation: col 0.8s cubic-bezier(0.13, 0.55, 0.24, 1) forwards;
  -ms-animation: col 0.8s cubic-bezier(0.13, 0.55, 0.24, 1) forwards;
  -o-animation: col 0.8s cubic-bezier(0.13, 0.55, 0.24, 1) forwards;
  animation: col 0.8s cubic-bezier(0.13, 0.55, 0.24, 1) forwards;
}

.cryptex__col:nth-child(2).animate {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.cryptex__col:nth-child(3).animate {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.cryptex__col:nth-child(4).animate {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.cryptex__col:nth-child(5).animate {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -ms-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.cryptex__col:last-child.animate {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

.cryptex__button:hover {
  transform: scale(1.05);
}

.footer {
  padding: 15px 20px 20px 20px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  gap: 20px;
}

.footer__list img {
  display: block;
  max-height: 50px;
  object-fit: contain;
  object-position: center;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10vw 8vh;
  background: transparent;
  transform: scale(0);
  transition: all 0.5s;
  overflow-y: auto;
}

.popup.active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(13, 17, 23, 0.9) 0%,
    rgba(13, 17, 23, 0.9) 100%
  );
  backdrop-filter: blur(15px);
}

.popup__content {
  background: url(../img/popup.png) no-repeat center / cover;
  margin-left: auto;
  width: 100%;
  height: 100%;
  max-width: 376px;
  max-height: 700px;
  margin-right: auto;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}
.popup__content .logo-popup {
  width: 115px;
  height: 115px;
  margin: -87px auto 30px auto;
}
.popup__title {
  font-weight: 800;
  font-size: clamp(30px, 2.1vw, 40px);
}

.popip__deposit {
  font-size: clamp(82px, 5.65vw, 100px);
  margin-top: -9px;
}
.popup__title {
  font-family: "Montserrat";
  margin-top: 110px;
font-weight: 800;
font-size: 30.0494px;
line-height: 37px;
text-transform: uppercase;
color: #E40636;


}
.popup__info {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 19.3944px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 52px;
  
font-weight: 700;
font-size: 19.3944px;
line-height: 24px;
flex: none;
order: 0;
flex-grow: 0;

}
.popip__deposit,
.popup__upto,
.popup__bonus {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 38.1114px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 42px;
}
.popip__deposit {
  margin-top: 40px;
}

.popup__button {
  display: inline-block;
  width: 299px;
  padding: 20px;
  margin-top: 90px;

  font-family: "Montserrat";
  font-weight: 700;
  font-size: 23.14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0px 2.7px 2.7px rgba(0, 0, 0, 0.41);

  border-radius: 17px;
  border: 4px solid transparent;

  background:
    linear-gradient(
        180deg,
        #cc9500 0%,
        #ffe100 50%,
        #d19a00 87.5%,
        #8f6a00 98.56%
      )
      padding-box,
    linear-gradient(180deg, #978500 0%, #fddf00 100%) border-box;

  box-shadow:
    0 0 10px rgba(255, 223, 0, 0.7),
    0 0 20px rgba(255, 223, 0, 0.4);

  animation: btn 1s linear infinite alternate;
}

.popup__button:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

@-webkit-keyframes col {
  100% {
    -webkit-transform: translateY(clamp(-1775px, -92.5vw, -1138px));
    transform: translateY(clamp(-1775px, -92.5vw, -1138px));
  }
}

@-moz-keyframes col {
  100% {
    -moz-transform: translateY(clamp(-1775px, -92.5vw, -1138px));
    transform: translateY(clamp(-1775px, -92.5vw, -1138px));
  }
}

@-o-keyframes col {
  100% {
    -o-transform: translateY(clamp(-1775px, -92.5vw, -1138px));
    transform: translateY(clamp(-1775px, -92.5vw, -1138px));
  }
}

@keyframes col {
  100% {
    -webkit-transform: translateY(clamp(-1775px, -92.5vw, -1138px));
    -moz-transform: translateY(clamp(-1775px, -92.5vw, -1138px));
    -ms-transform: translateY(clamp(-1775px, -92.5vw, -1138px));
    -o-transform: translateY(clamp(-1775px, -92.5vw, -1138px));
    transform: translateY(clamp(-1775px, -92.5vw, -1138px));
  }
}

@-webkit-keyframes btn {
  0% {
    box-shadow:
      0px 7.49px 29.97px 0px #acffab inset,
      0px 0px 35.03px 0px #239535;
  }

  100% {
    box-shadow:
      0px 7.49px 29.97px 0px #acffab inset,
      0px 0px 35.03px 10px #239535;
  }
}

@-moz-keyframes btn {
  0% {
    box-shadow:
      0px 7.49px 29.97px 0px #acffab inset,
      0px 0px 35.03px 0px #239535;
  }

  100% {
    box-shadow:
      0px 7.49px 29.97px 0px #acffab inset,
      0px 0px 35.03px 10px #239535;
  }
}

@-o-keyframes btn {
  0% {
    box-shadow:
      0px 7.49px 29.97px 0px #acffab inset,
      0px 0px 35.03px 0px #239535;
  }

  100% {
    box-shadow:
      0px 7.49px 29.97px 0px #acffab inset,
      0px 0px 35.03px 10px #239535;
  }
}

@keyframes btn {
  0% {
    box-shadow:
      0px 7.49px 29.97px 0px #acffab inset,
      0px 0px 35.03px 0px #239535;
  }

  100% {
    box-shadow:
      0px 7.49px 29.97px 0px #acffab inset,
      0px 0px 35.03px 10px #239535;
  }
}

.main {
  position: relative;
  overflow: visible;
}
.footer-text {
  display: none;
}

.main::after {
  content: "";
  position: absolute;
  bottom: -46px;
  right: 66px;
  width: 316px;
  height: 316px;
  /* background: url(../img/star.png) no-repeat center; */
  background-size: contain;
  pointer-events: none;
  z-index: 3;
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.popup__close::before,
.popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.3s;
}

.popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup__close:hover::before,
.popup__close:hover::after {
  background: #f5b400;
}
.main-container__link,
.main-container__additional {
  display: block;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 6.75878px;
  line-height: 8px;
  color: #ffffff;
  text-align: left;
}
.main-container__link {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 9.09836px;
  line-height: 11px;
  text-decoration-line: underline;
  color: #ffffff;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* ТУТ */
.cryptex__wrap {
  background: url(../img/cryptex-bg.png) no-repeat top center / cover;
  width: 1049px;
  height: 577px;
  padding: 0;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  margin-top: 45px;
}

.cryptex__main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 90%;
}

.cryptex__chart {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cryptex__area {
  fill: rgba(235, 0, 65, 0.62);
}

.cryptex__line {
  fill: none;
  stroke: #ff2b5f;
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px #ff2b5f);
}

.cryptex__plane {
  position: absolute;
  left: 55px;
  bottom: 30px;
  width: 99px;
  z-index: 5;
  transform: translate(0, 0) rotate(-8deg);
  opacity: 1;
  pointer-events: none;
}

.cryptex__main.is-animate .cryptex__plane {
  animation: flyPlane 2.7s linear forwards;
}

.cryptex__col {
  position: absolute;
  left: 52%;
  top: 47%;
  transform: translate(-65%, -47%);
  z-index: 6;
  margin: 0;

  font-weight: 800;
  font-size: 61.5385px;
  line-height: 75px;

  color: #d9b6ff;

  display: flex;
  flex-wrap: nowrap;

  text-shadow:
    0 0 18px #a600ff,
    0 0 45px #a600ff;

  position: absolute;
}

.cryptex__col::before {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 220px;
  height: 140px;

  background: radial-gradient(
    50% 50% at 50% 50%,
    #9041ff 0%,
    rgba(255, 65, 255, 0) 100%
  );

  filter: blur(52.1803px);

  z-index: -1;

  pointer-events: none;

  width: 437.82px;
  height: 186.49px;
}
@keyframes flyPlane {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(-8deg);
  }

  15% {
    transform: translate(120px, -15px) rotate(-8deg);
  }

  30% {
    transform: translate(240px, -40px) rotate(-10deg);
  }

  45% {
    transform: translate(370px, -85px) rotate(-12deg);
  }

  60% {
    transform: translate(510px, -170px) rotate(-14deg);
  }

  75% {
    transform: translate(650px, -260px) rotate(-16deg);
  }
  90% {
    transform: translate(820px, -410px) rotate(-18deg);
  }
  100% {
    opacity: 1;
    transform: translate(820px, -370px) rotate(-2deg);
  }
}
.cryptex__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 577px;
  height: 101px;
  margin: 47px auto 21px auto;

  border: 2px solid #cf3859;
  border-radius: 17px;

  background: linear-gradient(
    180deg,
    #cf3859 0%,
    #ff1f51 50%,
    #891c33 88%,
    #701d2f 100%
  );

  box-shadow:
    0 0 12px rgba(255, 31, 81, 0.45),
    inset 0 3px 5px rgba(255, 255, 255, 0.35),
    inset 0 -7px 10px rgba(0, 0, 0, 0.35);
  font-weight: 700;
  font-size: 33.2342px;
  line-height: 41px;
  text-transform: uppercase;

  color: #ffffff;

  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.41);

  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.45);

  position: relative;
  overflow: hidden;
  cursor: pointer;

  animation: none !important;
  transition: 0.25s ease;
}

.cryptex__button::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 8px;
  height: 38%;
  border-radius: 12px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );

  pointer-events: none;
}

.cryptex__button:hover {
  background: linear-gradient(
    180deg,
    #d94362 0%,
    #ff2a5c 50%,
    #941e38 88%,
    #7a1c31 100%
  );

  box-shadow:
    0 0 18px rgba(255, 31, 81, 0.55),
    inset 0 3px 5px rgba(255, 255, 255, 0.35),
    inset 0 -7px 10px rgba(0, 0, 0, 0.35);

  transform: none;
}

.popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 299px;
  padding: 20px;
  margin-top: 90px;

  font-family: "Montserrat";
  font-weight: 700;
  font-size: 23.14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #fff;

  text-shadow:
    0px 2.7px 2.7px rgba(0, 0, 0, 0.41);

  border-radius: 17px;
  border: 2px solid #38ff78;

  position: relative;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    #2ebf57 0%,
    #39ff78 48%,
    #25a44a 82%,
    #1a6f33 100%
  );

  box-shadow:
    0 0 10px rgba(57, 255, 120, 0.65),
    0 0 22px rgba(57, 255, 120, 0.35),
    inset 0 3px 6px rgba(255,255,255,0.3),
    inset 0 -6px 10px rgba(0,0,0,0.35);

  transition: 0.25s ease;

  animation: popupBtn 1s linear infinite alternate;
}

.popup__button::before {
  content: "";

  position: absolute;

  left: 10px;
  right: 10px;
  top: 7px;

  height: 38%;

  border-radius: 12px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.05) 100%
  );

  pointer-events: none;
}

.popup__button:hover {
  background: linear-gradient(
    180deg,
    #36cf63 0%,
    #4dff8b 48%,
    #2cb854 82%,
    #20863d 100%
  );

  box-shadow:
    0 0 16px rgba(57,255,120,0.8),
    0 0 28px rgba(57,255,120,0.45),
    inset 0 3px 6px rgba(255,255,255,0.3),
    inset 0 -6px 10px rgba(0,0,0,0.35);
}

@keyframes popupBtn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.03);
  }
}