/* Loader Styles */
#loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2C0407;
  transform: translateY(0%);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
#loader-overlay.loader-hide {
  transform: translateY(-100%);
}
.loader-logo {
  max-width: 220px;
  height: auto;
}
@media screen and (max-width: 767px) { .loader-logo { max-width: 160px; } }
@media screen and (max-width: 576px) { .loader-logo { max-width: 130px; } }
/* Loader Styles */