/*Home section*/

.home-section {
	background: transparent;
	position: relative;
}

.home-section .inner-section {
	background: rgba(0,0,0,0.5);
}

	/* Chrome, Safari, Opera */
	@-webkit-keyframes myfirst
	{
	0%   { top:4px;opacity: 0;}
	30% { top:9px;opacity: 1;}
	100% { top:25px;opacity: 0;}
	}

	/* Standard syntax */
	@keyframes myfirst
	{
	0%   { top:4px;opacity: 0;}
	30% { top:9px;opacity: 1;}
	100% { top:25px;opacity: 0;}
	}