
.sl-logo-container {
    overflow: hidden;
    position: relative;
    direction: ltr;
}

.sl-logo-track {
    display: flex;
    gap: 30px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.sl-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sl-logo img {
    display: block;
    max-height: 100%;
    height: auto;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
