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

 
.marquee {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    /*animation: marqueeAnimation 10s linear infinite alternate;*/
}
#slider .slider-title{
	margin-top:100px;
}
.marquee {
    color: white;
    background-color: #be161e;
    margin-top:152px;
}

.marquee {
        white-space: nowrap;
        overflow: hidden;
        animation: scroll 55s linear infinite;
        animation-delay: -19s; /* Adjust the time (10s) to set the scroll speed */
    }

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