Monday.com

This post was originally published on this site.

Trusted by 245,000+ customers, from startups to enterprises

/* Animation for the second left to right marquee */
@keyframes marquee {
0% {
transform: translateX(0rem);
}
100% {
transform: translateX(-50.5rem);
}
}

.service-integ-moving {
animation: marquee 20s infinite linear; /* Adjust the seconds for a slower or faster animation
animation-direction: reverse;*/
}

.service-integ-moving:hover {
animation-play-state: paused;
}