.marquee {
    width: 100%;
    overflow: hidden;
    text-align: center;
    white-space: pre;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
}

.zcs_aspect_ratio_2.zpapply-height{
    aspect-ratio: 2.32/1;
    min-height: 33px!important;
}



.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 100s linear infinite;
}

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

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