#top-marquee {
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    animation: marquee 80s linear infinite;
}

.marquee-content p {
    font-weight: 600;
    line-height: 50px;
    margin: 0 15px;
}

.marquee-gap {
    width: 150px;
}

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

#top-marquee .marquee-content a{
    color: #fff;
    line-height: 50px;
    text-decoration: underline;
}