@charset "utf-8";

/*******************************************************************************************/
/*/////////////////////////////////////////////////////////////////////////////////////////*/
/*
 * Created by : http://www.uplusweb.com
 *
 * uplusweb CSS v1.17.1027 = info@uplusweb.com
 *
 * Copyright (c) 2017 www.uplusweb.com
 *
 *
 */
/*/////////////////////////////////////////////////////////////////////////////////////////*/
/*******************************************************************************************/


/*******************************************************************************************/
/*****  header animation Str.  *****/

.header {
/* For Chrome, Safari and Opera */
	-webkit-animation-name: header_rotate;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-timing-function: all;
	-webkit-animation-iteration-count: 1;
/* Standard syntax */
	animation-name: header_rotate;
	animation-duration: 0.5s;
	animation-timing-function: all;
	animation-iteration-count: 1;
}

@-webkit-keyframes header_rotate {
	100% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes header_rotate {
	100% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/*****  header animation End.  *****/
/*******************************************************************************************/
