.animation {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.orbit-container {
    position: relative;
    width: 610px;
    height: 360px;
    transform-style: preserve-3d;
    perspective: 800px;
    margin-top: -50px;
}
.orb-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 116px;
    height: 133px;
    margin: -50px;
    transition: transform 0.05s linear;
}
.orb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.4);
}

:root {
    --radius-x: 200;
    --radius-y: 70;
}

@media (max-width: 1000px) {
    .orbit-container {
        width: 370px;
        height: 220px;
        margin-top: -20px;
    }

    .orb-item {
        width: 70px;
        height: 80px;
        margin: -35px;
    }

    .orb-item img {
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,.3);
    }
    :root {
        --radius-x: 120;
        --radius-y: 40;
    }
}



