﻿
@keyframes bounce-marquee {
    0%

{
    transform: translateX(0%);
}

50% {
    transform: translateX(50%);
}

100% {
    transform: translateX(0%);
}

}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 10px;
    text-align: center;
}

.marquee-text {
    display: inline-block;
    color: red;
    font-weight: bold;
    position: relative;
    /*animation: bounce-marquee 4s ease-in-out infinite;*/
}

/* 🔽 MEDIA QUERY for small devices */
@media (max-width: 768px) {
    .marquee-text {
        animation: none; /* Stop animation on small screens */
        display: block;
        text-align: center;
        margin: 0 auto;
        font-size:10px;
    }
}

/*@keyframes bounce-marquee {
    0%

{
    transform: translateX(0%);
}

50% {
    transform: translateX(50%);
}

100% {
    transform: translateX(0%);
}

}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 10px;
    text-align: left;
    padding-left:3%;
}

.marquee-text {
    display: inline-block;
    color: red;
    font-weight: bold;
    position: relative;*/
    /*animation: bounce-marquee 10s ease-in-out infinite;*/
    /*animation:  ease-in-out infinite;
}*/


