/* marquee div container */
.marquee {
    height: 35px !important;
    overflow: hidden;
    position: relative;
}
.marquee div {
    display: block;
    width: 200%;
    position: absolute;
    overflow: hidden;
    animation: marquee 40s linear infinite;
}
.marquee span {
    font-size: 2vw;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    float: left;
    width: fit-content;
    justify-content: center;
    align-items: center;
    display: flex;
}
@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}

@media screen and (max-width: 767px) {
    .marquee {
        height: 25px !important;
    }
}