
.services-cinema-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  transform: translateZ(0);
}


.services-cinema-wrap .slideshow:not(.is-split):not(.is-stack):not(.is-horizontal) {
  background-color: var(--at-neutral-50);
}

.slideshow .project-desc {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 34ch;
}


.explore-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(17, 16, 15, 0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.7);
  transition: opacity 0.25s ease;
  will-change: transform, opacity;
}
.explore-cursor svg {
  flex: none;
}
.explore-cursor.is-visible {
  opacity: 1;
}
@media (max-width: 991.98px), (hover: none), (pointer: coarse) {
  .explore-cursor {
    display: none !important;
  }
}
