.marquee-container {
    width: 100%;
    height: 50px;
    background-image: url('../images/marquee-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1001;
    transition: transform 0.3s ease-in-out;
}

.marquee-container.hide-marquee {
    transform: translateY(-100%);
}

.navbar-hide {
    transform: translateY(-100%) !important;
}

.marquee-content {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite;
}

.marquee-slide {
    display: flex;
    width: 50%;
    justify-content: space-around;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0 30px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marquee-separator {
    color: white;
    font-size: 14px;
    margin: 0 20px;
    display: inline-block;
}

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

@media (max-width: 768px) {
    .marquee-container {
        height: 40px;
    }

    .marquee-text {
        font-size: 12px;
        margin: 0 15px;
    }

    .marquee-separator {
        font-size: 12px;
        margin: 0 8px;
    }
    .marquee-content .marquee-slide:last-child{
        display: none;
    }
}