.marquee-w {
    position: relative;
    display: block;
    max-width: 100%;
    height: 34px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.marquee {
    position: absolute;
    display: block;
    margin: auto auto;
    white-space: nowrap;
    overflow: hidden;
    min-width: 100%;
    height: 100%;
}
.marquee span {
    color: white;
    display: inline-block;
    padding-left: 100%;
    font-family: 'poppinsbold';
    text-align: center;
    white-space: nowrap;
    line-height: 40px;
    font-size: 16px;
    animation: marquee 50s linear infinite;
}
.marquee2 span {
    animation-delay: 25s;
    color: white;
}
.marquee3 span {
    animation-delay: 25s;
    color: white;
}
@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}
