/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/

.moveify {
    position: relative;
    animation: moveRightToLeft 30s linear infinite;
}

@keyframes moveRightToLeft {
    0% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(-120%);
    }
}
