/* Preloader styles */
#preloader-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
#preloader-logo {
  max-width: 320px;
  width: 45vw;
  height: auto;
  animation: preloader-zoom-fade 1.9s cubic-bezier(.6,-0.28,.74,.05) forwards;
}
@keyframes preloader-zoom-fade {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
