/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.roket {
    position: absolute;
    left: 140px;
    top: 40%;
    transform: translateX(-50%);
	animation: rocket 20s linear infinite;
}
@keyframes rocket{
	0%{
		top: 40%;
		left: 140px;
	}
	20%{
		top: 0%;
		left: 140px;
	}
	40%{
		top: 0%;
		left: 40px;
		transform: rotate(180deg);
	}
	60%{
		top: 40%;
		left: 40px;
		transform: rotate(180deg);
	}
	80%{
		top: 100%;
		left: 140px;
		transform: rotate(360deg);
	}
	100%{
		top: 40%;
		left: 140px;
	}
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}