@keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                /* Move by the width of one set of icons */
                transform: translateX(-1408px); 
            }
        }
        
        @keyframes fadeIn {
            0%, 49.9%, 100% { opacity: 0; }
            50%, 99.9% { opacity: 1; }
        }

        @keyframes fadeOut {
            0%, 49.9%, 100% { opacity: 1; }
            50%, 99.9% { opacity: 0; }
        }