@keyframes infiniteScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } } #group4 { overflow: hidden; animation: infiniteScroll 10s linear infinite; display: flex; }
top of page
bottom of page