.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  margin-top:-30px;
}

/* Top Black Box */
.display-box {
  width: 82%;
  height: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position:absolute;
  left:15px;
  right:0;
  z-index: 1;
  top: 67px;
}

.display-box img {
  max-height: 355px;
  opacity: 1;
  transition: opacity 0.2s ease;
  width: 1580px;
  border-radius: 5px;
}

.scene {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1200px;
}

/* Projector */
.projector-wrapper {
  position: relative;
}

.projector {
  width: 1300px;
}
.owl-carousel .owl-stage-outer{
  padding-top:50px !important;
}
.carousel {
  position: absolute !important;
  width: 80% !important;
}
.owl-carousel .owl-item{
  padding-bottom:20px;
  opacity:0;
}
.owl-carousel .owl-item .item{
    transition: all 0.2s ease;
    transform-origin: center center;
}
/* Thumbnails */
.item {
    position: relative;
    width: 90px;
    height: 90px;
    object-fit: cover;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    pointer-events: auto;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    background: radial-gradient(
    circle at 30% 30%, /* Position of the light source (e.g., top-left) */
    transparent, /* Highlight color */
    #ccc  /* Shadow color */
  );
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    cursor: pointer;
}
.item span{
    font-weight: 400;
    font-size: 9px;
    animation: counter-spin 40s linear infinite;
    color: #fff;
    line-height: 1;
    width: 50px;
    position: absolute;
    bottom: -20px;
    height:16px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}