html,
body {
  position: relative;
  height: 100%;
}

body {
  background-color: #f0f0f0;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  height: 100vh;
  width: auto;
}

@media only screen and (max-width: 675px) {
  .swiper-slide img {
    height: auto;
    width: 100vw;
  }
}

@media (min-aspect-ratio: 7/5) {
  .swiper-slide:nth-child(odd)  .swiper-zoom-container { justify-content: flex-end; }
  .swiper-slide:nth-child(even) .swiper-zoom-container { justify-content: flex-start; }
}

#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #111;
  text-align: center;
  animation: loaderPulse 2.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.loader-bar-track {
  width: 180px;
  height: 1px;
  background: #ddd;
  margin: 2rem auto 0.6rem;
}
.loader-bar {
  height: 1px;
  background: #111;
  width: 0%;
  transition: width 0.25s ease;
}
.loader-count {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #aaa;
  text-align: center;
}
