html {}

body {
  overflow-x: hidden;
  -webkit-touch-callout: none;
  background: #001133;
  position: relative;
  height: 100vh;

}


img {
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  display: block;
  font-size: 0;

}

a {
  color: inherit;
  text-decoration: none;
}


li {
  list-style-type: none;
}


.flex {
  display: flex;
}


.content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #000;
  z-index: 9999999;
  overflow: hidden;

}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 24px;

}

.loader-img {
  width: 150px;
  height: 100px;
  background: url(../img/loader.webp);
  animation: loader 1.8s steps(30) infinite;
  background-size: 100% auto;
}

@keyframes loader {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 -3000px;
  }
}

.loading video {

  width: 140px;

  opacity: 1;
  transition-duration: 0.2s;

}

.loading.load .loader {
  opacity: 0;
}

.loading span {
  animation: h2-pop12 1s linear infinite;
  display: inline-block;
  font-weight: 900;
}


@keyframes h2-pop12 {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }

  40% {
    transform: rotate3d(0, 1, 0, 360deg);
  }

  100% {
    transform: rotate3d(0, 1, 0, 360deg);
  }
}

.loading span:nth-child(2) {

  animation-delay: 0.1s !important;

}



.loading span:nth-child(3) {

  animation-delay: 0.2s !important;

}



.loading span:nth-child(4) {

  animation-delay: 0.3s !important;

}



.loading span:nth-child(5) {

  animation-delay: 0.4s !important;

}



.loading span:nth-child(6) {
  animation-delay: 0.5s !important;

}



.loading span:nth-child(7) {
  animation-delay: 0.6s !important;

}

.grid-container {
  display: grid;
  width: calc(100vw + 300px);
  height: calc(100vh +300px);
}

.grid-item {
  background-color: #000;
  opacity: 1;
  transition-duration: 0.8s;
  will-change: opacity;
  transform: translateZ(0);
}

.grid-item.load {
  opacity: 0;
  background: #fff;
  pointer-events: none;
}

.loading.load {
  background: none;
  pointer-events: none;


}

.wrap.load {
  height: 100svh;
  overflow: hidden;
  opacity: 0;
}


@media screen and (max-width: 896px) {

  .loader {
    font-size: 16px;

  }

  .loader-img {
    width: 90px;
    height: 60px;
    background: url(../img/loader.webp);
    animation: loader 1.8s steps(30) infinite;
    background-size: 100% auto;
  }

  @keyframes loader {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 0 -1800px;
    }
  }

}

.wrap {
  position: relative;
  z-index: 2;
}