/* CSS Document */



/*------------------- var----------------------*/





/*------------------- global ----------------------*/
*{
	margin: 0px;	
}

a{
	text-decoration: none;
}

#v2_body_main{
	background-color: gray;
}


/*------------------- header----------------------*/

.v2_header{
	z-index: 200;
	background-image: radial-gradient(54.97% 272.54% at 27.36% -134.72%,rgba(108,148,255,.92) 0,rgba(0,0,0,.92) 100%);
/*	animation: show_header 0.5s linear 0.5s;*/
/*	animation-fill-mode:forwards;*/
	align-content: center;
	display: flex; 
	text-align: center;
	height: 0;
	background-color: aqua;
}

.v2_header_span{
/*	float: left;*/
	color: white !important;	
	text-align: center;
	flex: 1;
/*	animation: show_header 0.5s linear 0.5s;*/
/*	animation-fill-mode: forwards;*/
	padding: 14px;
	font-size: 16px;
	
}

@keyframes show_header{
	0%{
		height: 0px;	
		opacity: 0;
	}
	100%{
		height: 50px;
		opacity: 1;
	}
}



/*------------------- logo ----------------------*/
.v2_logo_div{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 250;
/*	background-color: green;*/
}

.v2_logo_div img{
	width: 150px;
	margin: 10px 30px;
}

@media screen and (max-width: 1200px) {
	.v2_logo_div img{
		width: 60px;
		margin: 5px 10px;
	}
}

/*------------------- nav ----------------------*/
.v2_nav{
	position: fixed;	
	width: 100%;
	top: 0px;
	text-align: center;
	z-index: 160;
/*	background-color: yellow;*/
}

.v2_nav_ul{
	list-style-type: none;
	margin: 0;
  	padding: 0;
}

.v2_nav_ul li{
	display: inline-block;
  	font-size: 20px;
  	padding: 10px;
}

@media screen and (max-width: 1200px) {
	.v2_nav_ul li{
		display: inline-block;
  		font-size: 10px;
  		padding: 2px;
	}
}

.v2_nav a{
	color: black;
	
}

/*------------------- products ----------------------*/
#v2_products_div{
	background-color: #ddd;
	width: 100%;
	height: 0;
	visibility:visible;
	position: relative;
	opacity: 1;
	text-align: center;
	
}

#v2_products_div ul{
	list-style-type: none;
	margin: 0;
  	padding: 0;
}


#v2_products_div li{
	display: inline-block;
	font-size: 16px;
	margin: 20px 15px;
	text-align: center;
}

#v2_products_div img{
	width: 180px;
	height: 150px;
}

#v2_products_div a{
	color: black;
}
#v2_products_div p{
	max-width: 180px;
	text-align: center;
}

@media screen and (max-width: 1200px) {
	#v2_products_div li{
		display: inline-block;
		font-size: 10px;
		margin: 10px 7px;
	}
	#v2_products_div img{
		width: 90px;
		height: 75px;
	}
	#v2_products_div p{
		max-width: 90px;
		text-align: center;
	}
}



/*------------------- section ----------------------*/
.v2_section{
	z-index: 100;
	position: relative;
}


.v2_section_img{
	width: 100%;
	height: auto;
}

.v2_section_btn_div{
	position: absolute;
	width: 100%;
	bottom :25%;
	text-align: center;	
}


.v2_section button{
	margin: 0 20px 0 20px;
	width: 260px;
	height: 40px;

	font-size: 14px;
	opacity: 0.9;
	border-radius: 10px;
}

.v2_section_buttonL{
	color: white;
	background-color: #2e2f33;
}
.v2_section_buttonL_a{
	color: white;
}


@media screen and (max-width: 1200px) {
	.v2_section button{
		margin: 0 10px 0 10px;
		width: 90px;
		height: 26px;

		font-size: 10px;
		opacity: 0.9;
		border-radius: 6px;
	}	
	.v2_section_btn_div{
		position: absolute;
		width: 100%;
		bottom :15%;
		text-align: center;	
	}
	
}

/*------------------- footer ----------------------*/
.v2_footer{
	position:relative;
	bottom: 2px;
	left:auto;
	z-index: 300;
	width: 100%;
}


.v2_footer_p{
	text-align: center;
	align-items: center;
	color: white;
	line-height: 20px;
	font-size: 14px;
}

.v2_footer_p_ul{
	text-align: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.v2_footer_p_ul li{
	display: inline-block;
  	font-size: 14px;
  	padding: 5px;
}

.v2_footer a{
	color: white;
}


