﻿.marquee-container {
    margin: 0;
    padding: 0;
    color: black;
    font-size: 2rem;
    margin-bottom:50px;
    /*font-weight: bold;*/
}


@media all and (max-width:1024px) {
    .marquee-container {
        margin-top: -50px;
    }
}

@media all and (min-width:1024px) {
    .marquee-container {
        margin-top: -66px;
    }
}


.marquee {
    background: white;
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 50px;
    overflow-x: hidden;
}

.marquee .content span{
    margin:0px 50px;
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 120s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
