.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.brand-carousel {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
}

.brand-carousel:hover {
    animation-play-state: paused; /* Pause on hover */
}

.bran-logo {
    flex: 0 0 auto;
    margin: 0 20px;
}

.thumbnail {
    height: 80px; /* Adjust as needed */
    width: auto;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}