/* --- HERO ASSET CYCLE SYSTEM --- */
.hero-cycle-wrapper {
  position: relative;
  min-height: 400px;
  width: 100%;
}

.hero-cycle-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  z-index: 1;
}

.hero-cycle-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 10;
}
