#home-banner .container span{
	-webkit-animation: movingline5 1.5s ease-in-out;
	animation: movingline5 1.5s ease-in-out;
}
@keyframes movingline5
{
	0%{right:0; opacity:0; }
	100%{right:100px; opacity:1; }
}
@-webkit-keyframes movingline5	/* Safari and Chrome */
{			
	0%{right:0; opacity:0; }
	100%{right:100px; opacity:1; }
}