#unicorn-hero, #unicorn-hero-2 {
  position: absolute;
  bottom: calc(-15px - 2vh);
  left: 50%;
  transform: translateX(-50%);
  height: 72%;
  aspect-ratio: 3700 / 2764;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#unicorn-hero {
  opacity: 0;
  transition: opacity 0.8s ease;
}

#unicorn-hero-2 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 3; /* Stacked on top of Unicorn1 */
}

@media (max-width: 768px) {
  #unicorn-hero, #unicorn-hero-2 {
    height: 53.6vh;
    bottom: 10.3vh;
  }
}

.hero2-img {
  transition: opacity 0.8s ease;
}
