.lms-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: transparent;
    padding: 20px 0;
}

.lms-marquee-track {
    display: flex;
    width: max-content;
    animation: lms-scroll 30s linear infinite;
}

.lms-logo {
    flex: 0 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lms-logo img {
    max-height: 80px;
    height: auto;
    width: auto;
}

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

@media (max-width: 768px) {
    .lms-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .lms-logo img {
        max-height: 50px;
    }
}