.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #10462C;
    color: #fff;
    padding: 8px 0;
    position: relative;
    z-index: 100;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 10s linear infinite;
}

.marquee-track a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    white-space: nowrap;
    font-weight: 500;
}

.marquee-track a:hover {
    color: #fff;
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}