#nw-preloader {
  position: fixed;
  inset: 0;
  background: #003843;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.nw-preloader-center {
  text-align: center;
}
.nw-brand {
  display: flex;
  align-items: center;
  justify-content: center;
 font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f7f2ea;
}
.nw-gap {
  width: 16px;
}
.nw-brand span {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation-delay: calc(var(--i) * 0.28s);
  animation: 0.6s forwards letterIn, 2.4s ease-in-out infinite letterWave;
  animation-delay: calc(var(--i) * 0.28s), calc(2.6s + var(--i) * 0.12s);
}
@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes waveFlow {
  0% {
    opacity: 1;
    background-position: 0 50%;
  }
  100% {
    opacity: 1;
    background-position: 200% 50%;
  }
}
@keyframes letterWave {
  0%,
  100%,
  60% {
    transform: translateY(0);
    color: #f7f2ea;
  }
  30% {
    transform: translateY(-8px);
    color: #c89b63;
  }
}
.nw-wave-wrap {
  position: relative;
  width: 180px;
  margin: 18px auto 0;
}
.nw-wave-line {
  margin: 18px auto 0;
  background: linear-gradient(90deg, #c89b63, #f7f2ea, #c89b63);
  background-size: 200% 100%;
  animation: 2.2s ease-in-out 2.6s infinite forwards waveFlow;
  opacity: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
}
.brand-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #003843;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.brand-logo-centered {
  height: 50px;
  width: 150px;
  display: block;
}
@media (max-width: 480px) {
  .nw-brand {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .nw-gap {
    width: 8px;
  }

  .nw-brand span {
    transform: translateY(10px);
  }

  .nw-wave-wrap {
    width: 120px;
    margin-top: 12px;
  }

  .nw-wave-line {
    height: 2px;
  }

  .brand-container {
    padding: 4px 10px;
  }

  .brand-logo-centered {
    width: 110px;
    height: 36px;
  }
}
@media (max-width: 360px) {
  .nw-brand {
    font-size: 26px;
    letter-spacing: 0.5px;
  }

  .nw-wave-wrap {
    width: 100px;
  }

  .brand-logo-centered {
    width: 95px;
    height: 32px;
  }
}
