.body-3 {
  z-index: 10;
  position: fixed;
  background: #000000;
  height: 100vh;
  width: 100vw;
  transition: 0.5s;
}

.load {
  position: absolute;
  width: 600px;
  height: 36px;
  left: 50%;
  top: 40%;
  margin-left: -300px;
  overflow: visible;
  user-select: none;
  cursor: default;
}

.load div {
  position: absolute;
  /* width: 20px;
  height: 36px; */
  opacity: 0;
  font-weight: 900;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  animation: move 2s ease-in-out infinite;
  transform: rotate(-180deg);
  color: #27ae60;
}

.load div:nth-child(2) {
  animation-delay: 0.2s;
}
.load div:nth-child(3) {
  animation-delay: 0.4s;
}
.load div:nth-child(4) {
  animation-delay: 0.6s;
}
.load div:nth-child(5) {
  animation-delay: 0.8s;
}
.load div:nth-child(6) {
  animation-delay: 1s;
}
.load div:nth-child(7) {
  animation-delay: 1.2s;
}

@keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }
  35% {
    left: 41%;
    transform: rotate(0deg);
    opacity: 1;
  }
  65% {
    left: 59%;
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    left: 100%;
    transform: rotate(-180deg);
    opacity: 0;
  }
}
