.hero{
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
	height: calc(63vh  - 65px);
	min-height: 800px;
	max-height: 1920px;
	background: #ffffff;
	position: relative;
	overflow: hidden;
	animation: showup 1s;
}
.hero video{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 104%;
	max-width: 2000px;
}
.hero h1{
	font-size: 50px;
	line-height: 70px;
	margin: 0;
}
.hero h2{
	font-size: 30px;
	font-weight: 400;
}
.hero .text{
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	padding: 8vh 8px 5vh;
	width: 100%;
	text-align: center;
	background: linear-gradient(to bottom, #262626 0%,rgba(38,38,38,0) 100%);
}
.hero .links{
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-around;
}
.hero a{
	padding: 8px;
	margin: 0 4px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.25s;

	
}
.hero img{
	z-index: 9;
    width: auto;
    height: auto;
    position: fixed;
    right: 1%;
	opacity: 0.7;
	/* box-shadow: 1px 1px 1px rgba(0,0,0,.5); */
}
.code{
	z-index: 50;
    width: 120px;
    height: 120px;
    position: fixed;
    right: 5px;
	top: 81%;
	opacity: 0.9;

}
.code img{
	width: 100px;
	height: 100px;
}
/* .code text{
	color: #fff;
	display: block;
	margin: 10px auto;
	text-align: center;
} */

.label{
	z-index: 50;
    width: 500px;
    height: 278px;
    position: fixed;
    right: 5px;
	top: 12%;
	opacity: 0.8;

}
.label img{
	width: 100%;
	height: 100%;
    box-shadow: 2px 2px 2px rgba(48, 77, 55, 0.5);
}

.hero a[all]{
	background: #666;
	color: #fff;
}
.hero a[all]:hover{
	background: #555;
}
.hero a[more]{
	background: #00a9ec;
	color: #fff;
}
.hero a[more]:hover{
	background: #0092cc;
}
.promo{
	display: flex;
	justify-content: center;
	text-align: center;
}
.promo > a{
	width: 25%;
	max-width: 500px;
	height: 275px;
	padding: 16px;
	position: relative;
	display: block;
	overflow: hidden;
}
.promo img{
	position: absolute;
	left: calc(50% - 250px);
	top: 0;
}
.promo h1, .promo p{ 
	margin: 0 !important;
	font-weight: 400;
	z-index: 1;
	position: relative;
}
.promo a :hover{
	transform: scale(1.1);
	transition: all 0.5s ease-in-out;
	
}
@keyframes showup{
	from{opacity: 0; transform: scale(1.05);}
	to{opacity: 1; transform: scale(1);}
}
@media (max-width:999px) {
	.promo{
		flex-wrap: wrap;
		padding-bottom: 0;
	}
	.promo > a{
		width: 50%;
	}
	.hero{
		min-height: 330px;
	    background-color: #808080;
		/* background: linear-gradient(to bottom, #262626 0%,#808080 100%); */
	}
}
@media (max-width:500px) {
	.hero {
		height: auto;
		min-height: 330px;
		width: 100%;
		max-width: 500px;
	}
	.hero h1{
		font-size: 40px;
		line-height: 60px;
	}
	.hero h2{
		font-size: 20px;
	}
	.hero .links{
		width: 100%;
		bottom: 8px;
		left: 0;
		transform: none;
		padding: 8px;
	}
	.hero a{
		width: calc(50% - 16px);
		text-align: center;
	}
	.hero img{
		width: 100%;
	    vertical-align: bottom;
	}
	.promo{
		padding-bottom: 0;
	}
	.promo > a{
		width: 100%;
	}
	.code{
		z-index: 15;
		width: 80px;
		height: 80px;
		position: fixed;
		right: 3%;
		top: 70%;
		opacity: 0.9;
	}
	.code img{
		width: 80px;
		height: 80px;
	}
	.label{
		z-index: 0;
		height: auto;
		width: 100%;
		max-width: 500px;
		position: relative;
		right: 0px;
		top: 2px;
		bottom: 2px;
		opacity: 1;
	}
	.label img{
		width: 100%;
		height: 100%;
	}	
}