html,
body {
  padding: 0;
  margin: 0;
  height: 100vh;
  color: #ffffff;
  background-color: #000000;
  font-family: Integral CF;
  font-style: normal;
  font-weight: normal;
  line-height: 1.2;
}

html,
body {
  overflow-x: hidden;
}

img,
picture,
source,
video {
  pointer-events: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 1.7rem;
  background-color: #adff00;
}

::-webkit-scrollbar-track {
  background-color: #2d2d2d;
}

::selection {
  color: #a723ce;
}

html {
  /* font-size: 48.25%; */
  /* font-size: 7.72px; */

  /* font-size: 62.5%; */
  font-size: 10px;
}

/* @media only screen and (max-width: 115.625em) { */
@media only screen and (max-width: 1850px) {
  html {
    /* font-size: 59.375%; */
    font-size: 9.5px;
  }
}

/* @media only screen and (max-width: 93.75em) { */
@media only screen and (max-width: 1500px) {
  html {
    /* font-size: 48.25%; */
    font-size: 7.72px;
  }
}

/* @media only screen and (max-width: 84.375em) { */
@media only screen and (max-width: 1350px) {
  html {
    /* font-size: 44.25%; */
    font-size: 7.08px;
  }
}

/* @media only screen and (max-width: 75em) { */
@media only screen and (max-width: 1200px) {
  html {
    /* font-size: 42.25%; */
    font-size: 6.76px;
  }
}

/* @media only screen and (max-width: 68.75em) { */
@media only screen and (max-width: 1100px) {
  html {
    /* font-size: 40%; */
    font-size: 6.4px;
  }
}

/* @media only screen and (max-width: 56.25em) { */
@media only screen and (max-width: 900px) {
  html {
    /* font-size: 38%; */
    font-size: 6.08px;
  }
}

/* @media only screen and (max-width: 50em) { */
@media only screen and (max-width: 800px) {
  html {
    /* font-size: 36%; */
    font-size: 5.76px;
  }
}

/* @media only screen and (max-width: 43.75em) { */
@media only screen and (max-width: 700px) {
  html {
    /* font-size: 34%; */
    font-size: 5.44px;
  }
}

/* @media only screen and (max-width: 28.125em) { */
@media only screen and (max-width: 450px) {
  html {
    /* font-size: 33%; */
    font-size: 5.28px;
  }
}

/* @media only screen and (max-width: 21.875em) { */
@media only screen and (max-width: 350px) {
  html {
    /* font-size: 32%; */
    font-size: 5.12px;
  }
}

/* @media only screen and (min-width: 93.75em) { */
/* @media only screen and (min-width: 1500px) {
  html {
        font-size: 59.375%;
    font-size: 9.5px;
  }
} */
/* @media only screen and (min-width: 115.625em) { */
/* @media only screen and (min-width: 1850px) {
  html {
       font-size: 62.5%;
    font-size: 10px;
  }
} */

/* @media only screen and (min-width: 125em) { */
@media only screen and (min-width: 2000px) {
  html {
    /* font-size: 69%; */
    font-size: 11.04px;
  }
}

/* @media only screen and (min-width: 137.5em) { */
@media only screen and (min-width: 2200px) {
  html {
    /* font-size: 79%; */
    font-size: 12.64px;
  }
}

/* @media only screen and (min-width: 150em) { */
@media only screen and (min-width: 2400px) {
  html {
    /* font-size: 86%; */
    font-size: 13.76px;
  }
}

.block {
  position: relative;
  margin-bottom: 8rem;
}

.block-height {
  height: 100vh;
  min-height: 50rem;
}

.bigBgBlock {
  position: relative;
}

.bigBg {
  position: absolute;
  height: 100%;
  width: 100%;
}

.bigBgImg {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: url("../media/faqBg.webp") top 30% center / cover;
}

.bigBgBlock .topShadow {
  position: absolute;
  top: 0;
  height: 20vh;
  width: 100%;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

/* preloader */

.preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: #000;
}

.progressBar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progressBar canvas {
  position: absolute;
  width: 60rem;
}

.progressBar img {
  position: absolute;
  width: 24rem;
  height: 24rem;
  animation: preloader-coin 5s infinite linear;
}

@keyframes preloader-coin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* block one */

.block.one {
  display: flex;
  overflow: hidden;
  justify-content: center;
}

.block.one .content {
  flex: 1;
  padding: 6.2rem 8.5rem 5.4rem 8.5rem;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  z-index: 4;
}

.header_br {
  display: none;
}

@media only screen and (max-width: 750px) and (min-height: 500px) {
  .header_br {
    display: block;
  }
}

.block.one .content .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block.one .content .line .b {
  font-weight: 900;
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
}

.block.one .content .line .btn {
  padding: 1.4rem 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: bold;
  font-size: 1.8rem;
  background: #adff00;
  clip-path: polygon(8% 0, 100% 0, 100% 50%, 92% 100%, 0 100%, 0% 50%);
  cursor: pointer;
  transition: 0.2s;
}

.block.one .content .line .btn:hover {
  background: #a600ff;
  color: #ffffff;
}

.block.one .content .title {
  margin: 8rem 0 0 19.3rem;
}

.block.one .content .title .logo {
  font-weight: 900;
  font-size: 15.9rem;
  text-shadow: 0 0 3.6rem rgba(192, 73, 255, 0.75),
    0 0 10.4rem rgba(164, 0, 252, 0.75);
}

.block.one .content .title .div {
  height: 0.5rem;
  width: 39.6rem;
  margin: 5rem 0 3rem 0;
  background-color: #adff00;
}

.block.one .content .title .desc {
  font-family: DM Sans;
  font-size: 3.6rem;
}

.block.one .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block.one .bg .divLine {
  width: 100%;
  margin-bottom: -11.6%;
  z-index: 3;
}

.block.one .bg .gridShadow {
  position: absolute;
  width: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    #000000 100%
  );
  z-index: 2;
}

.block.one .bg .gridShadow.top {
  top: 61%;
  height: 10%;
  background: linear-gradient(0deg, transparent 0%, #000000 100%);
}

.block.one .bg .gridShadow.bottom {
  bottom: 0;
  height: 29%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    #000000 100%
  );
}

@media only screen and (max-width: 1000px) {
  .block.one .content {
    /* padding: 0; */
    justify-content: center;
    /* align-items: center; */
  }

  .block.one .content .title {
    margin: 0;
    margin-top: 5rem;
  }
}

@media only screen and (max-width: 700px) {
  .block.one .content .title .logo {
    font-size: 12.9rem;
  }
}

@media only screen and (max-width: 500px) {
  .block.one .content .title .logo {
    font-size: 11.4rem;
  }

  .block.one .content .title .desc {
    font-size: 3.2rem;
  }

  .block.one .content {
    padding: 6.2rem 5rem 5.4rem;
  }
}

@media only screen and (max-width: 400px) {
  .block.one .content .title .logo {
    font-size: 11rem;
  }

  .block.one .content .title .desc {
    font-size: 3rem;
  }
}

.block.one .bg .grid {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -50%;
  width: 200%;
  height: 65%;
  background-position-y: 0;

  --grid-color: rgba(166, 0, 255, 0.7);
  --grid-size: 9rem;
  --grid-size-v: 4rem;
  --grid-blur: 0.2rem;
  --grid-blur-v: 0rem;

  background-image: repeating-linear-gradient(
      90deg,
      var(--grid-color) 0%,
      transparent calc(0.1rem + var(--grid-blur)),
      transparent var(--grid-size),
      var(--grid-color) calc(var(--grid-size) + 0.1rem + var(--grid-blur))
    ),
    repeating-linear-gradient(
      180deg,
      var(--grid-color) 0%,
      transparent calc(0.1rem + var(--grid-blur-v)),
      transparent var(--grid-size-v),
      var(--grid-color) calc(var(--grid-size-v) + 0.1rem + var(--grid-blur-v))
    );

  transform: perspective(30vh) rotateX(70deg) translateZ(1rem);

  animation: moving-grid 0.5s infinite linear;
  z-index: 0;
}

@keyframes moving-grid {
  0% {
    transform: perspective(30vh) rotateX(70deg) translateZ(1rem)
      translateY(-var(--grid-size));
  }
  100% {
    transform: perspective(30vh) rotateX(70deg) translateZ(1rem)
      translateY(var(--grid-size));
  }
}

/* @media (max-width: 1100px) {
  .block.one {
    height: 60vh;
    margin-bottom: 5rem;
  }

  .block.one .content {
    padding: 3.2rem 2rem 0 2rem;
  }

  .block.one .content .line .b {
    font-size: 1rem;
  }

  .block.one .content .line .btn {
    padding: 0.7rem 1.2rem;
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .block.one .content .title {
    margin: 6rem 0 0 0;
  }

  .block.one .content .title .logo {
    font-size: 4.9rem;
  }

  .block.one .content .title .div {
    width: 60vw;
    margin: 3rem 0 3rem 0;
  }

  .block.one .content .title .desc {
    font-size: 1.6rem;
  }

  .block.one .bg .divLine {
    margin-bottom: -25%;
  }

  .block.one .bg .gridShadow {
    height: 39%;
  }

  .block.one .bg .grid {
    bottom: -20%;
    height: 100%;
  }

  .block.one .bg .gridShadow.top {
    top: 58%;
  }
}

@media (min-width: 600px) and (max-width: 800px) {
  .block.one {
    height: 40vh;
  }

  .block.one .content {
    padding: 6.2rem 7rem 0 7rem;
  }

  .block.one .content .title {
    margin: 6rem 0 0 4.5rem;
  }

  .block.one .bg .divLine {
    margin-bottom: -9%;
  }
}

@media (min-width: 800px) and (max-width: 1100px) {
  .block.one {
    height: 50vh;
  }

  .block.one .content {
    padding: 4.2rem 5rem 0 5rem;
  }

  .block.one .content .line .b {
    font-size: 2rem;
  }

  .block.one .content .line .btn {
    padding: 1.2rem 2.4rem;
    font-size: 2.2rem;
  }

  .block.one .content .title {
    margin: 9rem 0 0 4.5rem;
  }

  .block.one .content .title .logo {
    font-size: 6.3rem;
  }

  .block.one .content .title .div {
    width: 24vw;
  }

  .block.one .content .title .desc {
    font-size: 2.2rem;
  }

  .block.one .bg .divLine {
    margin-bottom: -13%;
  }

  .block.one .bg .grid {
    bottom: -20%;
    height: 100%;
  }

  .block.one .bg .gridShadow.top {
    top: 58%;
  }
} */

@media (min-width: 3000px) {
  .block.one .bg .divLine {
    margin-bottom: -10%;
  }
}

/* quest block */

.block.quest {
  height: auto;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.block.quest .row {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  width: 95%;
  /* align-items: center; */
  /* justify-content: center; */
}

.block.quest .row .title {
  /* max-width: 110.4rem; */
  padding: 5rem 0;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 4.8rem;
  cursor: pointer;
  /* background-color: burlywood; */
}

.block.quest .row .title img {
  margin: 1.1rem 4rem 0 0;
  transition: 0.3s;
}

.block.quest .row .answer {
  display: none;
  width: 85rem;
  padding-left: 4.4rem;
  margin: 1rem 0 5rem 14rem;
  border-left: 0.2rem solid #adff00;
  font-family: DM Sans;
  font-size: 2.6rem;
  line-height: 150%;
}

.block.quest .row .div {
  /* width: 116.4rem; */
  width: 100%;
  height: 4px;
  margin-top: 4rem;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 255, 255, 0) 0%,
    rgba(229, 186, 255, 0.8) 46.35%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media only screen and (max-width: 800px) {
  .block.quest .row .answer {
    width: 80%;
    margin: 1rem 0 5rem 5rem;
    font-size: 2.8rem;
  }

  .block.quest .row .title {
    padding: 5rem 0;
    font-size: 4.8rem;
    width: 95%;
  }

  .block.quest .row {
    width: 100%;
  }
}

/* @media (max-width: 1100px) {
  .block.quest {
    margin-bottom: 5rem;
  }

  .block.quest .row {
    margin-top: 2.4rem;
  }

  .block.quest .row .title {
    padding: 0 0 0 1rem;
    font-size: 1.8rem;
  }

  .block.quest .row .title img {
    margin: 0.2rem 1.6rem 0 0;
    height: 1.2rem;
  }

  .block.quest .row .div {
    width: 100%;
    margin-top: 3rem;
  }

  .block.quest .row .answer {
    width: 70%;
    padding-left: 1.8rem;
    margin: 2.6rem 0 0 6.4rem;
    font-size: 1.2rem;
    line-height: 140%;
  }
} */

.block.eight {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 69.9rem;
  margin-bottom: 0;
  user-select: none;
}

.block.eight .div.v {
  height: 22.6rem;
  width: 0.2rem;
  margin: -1.4rem 0 5.2rem 0;
  background-color: #555555;
  z-index: 3;
}

.block.eight .subtitle {
  font-size: 1.7rem;
  letter-spacing: -0.23181.8rem;
  opacity: 0.5;
  margin-bottom: 1.7rem;
  z-index: 3;
}

.block.eight .title {
  font-size: 3.6rem;
  letter-spacing: -0.436364px;
  margin-bottom: 6.6rem;
  z-index: 3;
}

.block.eight .btn {
  display: inline-flex;
  padding: 1rem 4.1rem 1.4rem 4.1rem;
  background: #adff00;
  box-shadow: 0 0 5rem rgba(173, 255, 0, 0.25);
  border: 1px solid #adff00;
  font-weight: bold;
  font-size: 2.4rem;
  color: #000000;
  cursor: pointer;
  transition: 0.2s;
  z-index: 3;
  text-decoration: none;
}

.block.eight .btn:hover {
  color: #ffffff;
  background: transparent;
  box-shadow: none;
}

.block.eight .div.h {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #a600ff;
  z-index: 3;
}

.block.eight .bgI {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../media/unsplash.webp") center / cover;
  z-index: 1;
  mix-blend-mode: screen;
}

.block.eight .bgG {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 44.5rem;
  background: linear-gradient(
    180deg,
    rgba(166, 0, 255, 0) 0%,
    rgba(166, 0, 255, 0.25) 100%
  );
  z-index: 2;
}

.block.eight .content {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 600px) {
  .block.eight {
    overflow: hidden;
  }

  .block.eight .bgI {
    width: 100%;
    height: 120%;
  }

  .block.eight .bgG {
    width: 100%;
    height: 74.5rem;
  }

  .block.eight .div.v {
    display: none;
  }

  .block.eight .content {
    transform: scale(1.3);
  }
}

@media only screen and (min-width: 2600px) {
  .block.eight {
    min-height: 85rem;
  }
}

/* block footer */

.block.footer {
  height: auto;
  /* padding-bottom: 4rem; */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  z-index: 10;
  margin-bottom: 0 !important;
}

.block.footer .div {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0400ff 0%, #a40cea 53.13%, #ec0a7a 100%);
}

.block.footer .logo {
  font-weight: 900;
  font-size: 4.8rem;
  line-height: 5.9rem;
  margin: 7.4rem 0 2.4rem 0;
  color: #adff00;
}

.block.footer .desc {
  max-width: 67.7rem;
  font-family: Montserrat;
  font-size: 2.26rem;
  letter-spacing: -0.309091px;
  text-align: center;
  color: #ffffff;
  opacity: 0.5;
}

@media only screen and (max-width: 500px) {
  .block.footer .desc {
    max-width: 300px;
  }
}

.block.footer .nav {
  display: flex;
  align-items: center;
  margin: 8rem 0;
  font-family: DM Sans;
  font-size: 2rem;
  line-height: 2.6rem;
  user-select: none;
}

.block.footer .nav .e {
  margin-right: 7.8rem;
  transition: 0.2s;
  cursor: pointer;
}

@media only screen and (max-width: 500px) {
  .block.footer .nav .e {
    margin-right: 4rem;
  }
}

.block.footer .nav .e:last-child {
  margin-right: 0;
}

.block.footer .nav .e:hover {
  color: #adff00;
}

.block.footer .socials {
  display: flex;
  align-items: center;
}

.block.footer .socials .s {
  margin-right: 5.4rem;
  opacity: 0.6;
  cursor: pointer;
}

.block.footer .socials .s:last-child {
  margin-right: 0;
}

.block.footer .socials .s:hover {
  opacity: 1;
}
