.animationHolder{
    overflow: hidden;
   height: 75px;
}




.animationModule1 {
    background-color: red;
    position: relative;
    animation-name: module1Frames;
    animation-duration: 4s;
    left: 0;
    top: 0;
}

@keyframes module1Frames {
    0% {
        background-color: red;
        left: -200px;
        top: 0px;
    }
    /*25% {*/
    /*    background-color: yellow;*/
    /*    left: 50px;*/
    /*    top: 0px;*/
    /*}*/
    /*50% {*/
    /*    background-color: blue;*/
    /*    left: 100px;*/
    /*    top: 0px;*/
    /*}*/
    /*75% {*/
    /*    background-color: green;*/
    /*    left: 150px;*/
    /*    top: 0px;*/
    /*}*/
    100% {
        background-color: red;
        left: 0px;
        top: 0px;
    }
}
