.fp-lite-body {
  overflow-x: hidden;
}

.fp-lite-root {
  position: relative;
}

.fp-lite-nav {
  position: fixed;
  right: 16px;
  top: 50%;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.fp-lite-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.fp-lite-dot:hover,
.fp-lite-dot.is-active {
  background: #cb333b;
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .fp-lite-nav {
    right: 10px;
    gap: 8px;
  }

  .fp-lite-dot {
    width: 10px;
    height: 10px;
  }
}

/* Image reveal and parallax */
.fp-img {
  opacity: 0;
  transform: translateY(8vh) scale(1.05);
  transition: transform 800ms ease, opacity 800ms ease;
  will-change: transform, opacity;
}

.fp-img.img-visible {
  opacity: 1;
  transform: translateY(var(--fp-parallax, 0px)) scale(1.0);
}

.fp-img.fp-inset-right {
  opacity: 0;
  transform: translateX(18vw) scale(1.02);
  clip-path: inset(0 0 0 14%);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease, clip-path 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-img.fp-inset-right.img-visible {
  opacity: 1;
  transform: translateX(var(--fp-parallax-x, 0px)) scale(1);
  clip-path: inset(0 0 0 0);
}

.fp-img.fp-inset-left {
  opacity: 0;
  transform: translateX(-18vw) scale(1.02);
  clip-path: inset(0 14% 0 0);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease, clip-path 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-img.fp-inset-left.img-visible {
  opacity: 1;
  transform: translateX(var(--fp-parallax-x, 0px)) scale(1);
  clip-path: inset(0 0 0 0);
}

.fp-text {
  opacity: 0;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease, clip-path 850ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.fp-text.fp-inset-right {
  transform: translateX(10vw);
  clip-path: inset(0 0 0 12%);
}

.fp-text.fp-inset-left {
  transform: translateX(-10vw);
  clip-path: inset(0 12% 0 0);
}

.fp-text.img-visible {
  opacity: 1;
  transform: translateX(var(--fp-text-parallax-x, 0px));
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .fp-img {
    transition: opacity 300ms ease;
    transform: none;
  }
  .fp-img.img-visible {
    transform: none;
  }
  .fp-img.fp-inset-left,
  .fp-img.fp-inset-right,
  .fp-img.fp-inset-left.img-visible,
  .fp-img.fp-inset-right.img-visible,
  .fp-text,
  .fp-text.fp-inset-left,
  .fp-text.fp-inset-right,
  .fp-text.img-visible {
    clip-path: none;
    transform: none;
    opacity: 1;
  }
}
