.marquee-container {
    /* width: 100vw; */
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    height: 43px;
    padding-left: 100vw;
    display: inline-block;
    animation: marquee 20s linear infinite;
    animation-play-state: running;
}

.marquee img{
    height:35px; 
    border-radius:10px; 
    margin-right:10px;
    position: relative;
    top: 3px;
}

.marquee span{
    position: relative;
    /* bottom: 9px; */
}

.marquee.paused, .marquee-container:hover .marquee {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.marquee .with-image {
    bottom: 9px;
    /* Additional styles for spans with images */
}

.marquee .without-image {
    top: 13px;
    /* Additional styles for spans without images */
}