
.lsp-logo-slider {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}
.lsp-logo-item {
    display: inline-block;
    margin: 0 20px;
}
.lsp-logo-item img {
    max-height: 80px;
}
@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
