.hero {
  background-image: url("../assets/img/background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.loader {
  position: fixed;
  background: #111827 !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.custom-loader {
  position: relative;
  width: 56px;
  height: 56px;
}

.custom-loader::before,
.custom-loader::after {
  content: "";
  width: 100%;
  height: 100%;
  animation: spinner-rfi6tk 1s infinite linear;
  box-sizing: border-box;
  border: 11.2px solid rgba(158, 30, 255, 0.1);
  border-radius: 50%;
  position: absolute;
}

.custom-loader::before {
  animation-direction: reverse;
  border-right-color: #9e1eff;
  right: calc(50% - 5.6px);
}

.custom-loader::after {
  border-left-color: #9e1eff;
  left: calc(50% - 5.6px);
}

@keyframes spinner-rfi6tk {
  0% {
    transform: rotate(0deg);
  }

  50%,
  100% {
    transform: rotate(360deg);
  }
}
