.slider-track {
    animation: scrollUp 15s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0%); }
    50% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}
.animate-marquee {
    animation: marquee 20s linear infinite;
}
.hover\:pause-animation:hover {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}


.scroll-wrapper:hover .slider-track {
    animation-play-state: paused;
}

.achieved-card{
    background: var(--main-gradient);

}
.achieved-card:hover{
    background: white !important;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}