/*------------------------------------------------------------------
		File Name: animation.css
		Developer: Masud Rana
		Version: 0.1
		URL: https://software.baveli.com
-------------------------------------------------------------------*/

/* smooth header sticky start */
@keyframes smoothHeader{
	from{
		-o-opacity: 0;
		-ms-opacity: 0;
		-webkit-opacity: 0;
		-moz-opacity: 0;
		opacity: 0;
	}
	to{
		-o-opacity: 1;
		-ms-opacity: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
		opacity: 1;
	}
}
/* smooth header sticky end */