.xperia-client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.xperia-slider-track {
    display: flex;
    gap: 100px;
    width: max-content;
    animation: xperia-scroll 30s linear infinite;
}

.client-slide img {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s;
}

.client-slide img:hover {
    opacity: 1;
}

@keyframes xperia-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}