#orbitDemo {
    position: relative;
    width: 980px;
    max-width: 100%;
    aspect-ratio: 980 / 330;
}

#orbitDemo a {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease-in-out;
}

#orbitDemo a.active {
    opacity: 1;
    z-index: 2;
}

#orbitDemo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Orbit navigation dots */
.orbit-bullets {
    position: absolute;
    bottom: -28px; /* below the image */
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.orbit-bullets li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #999;
    opacity: .5;
    cursor: pointer;
}

.orbit-bullets li.active {
    opacity: 1;
    background: #333;
}