#preloader1 {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(216,222,232,.10), transparent 35%),
    linear-gradient(135deg, #071526, #0b1f3a, #102f55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader1-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.spinner1 {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.spinner1::before,
.spinner1::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 18px 36px 18px 36px;
  background:
    linear-gradient(
      135deg,
      rgba(216,222,232,.04),
      rgba(216,222,232,.38),
      rgba(216,222,232,.04)
    );
  border: 1px solid rgba(216,222,232,.18);
  box-shadow:
    0 0 25px rgba(216,222,232,.22),
    inset 0 1px 0 rgba(255,255,255,.12);
  animation: pulseLoader 1.8s infinite ease-in-out;
}

.spinner1::after {
  inset: -2px;
  opacity: .35;
  animation-delay: .45s;
}

.loader1-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(216,222,232,.35);
  box-shadow:
    0 0 25px rgba(216,222,232,.35),
    0 0 55px rgba(216,222,232,.14),
    inset 0 1px 0 rgba(255,255,255,.18);
  z-index: 2;
  animation: logoFloat 2.4s infinite ease-in-out;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translate(-50%,-50%);
  }

  50% {
    transform: translate(-50%,-58%);
  }
}

@keyframes pulseLoader {
  0%, 100% {
    transform: scale(.86) rotate(0deg);
    opacity: .25;
  }

  50% {
    transform: scale(1.08) rotate(8deg);
    opacity: 1;
  }
}