.banner{
	position: relative;
}
.banner h4{
	position: absolute;
	top: 0;
	left: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	
	color: #fff;
	font-size:2rem;
	font-weight: bold;
}
.main-wrapper{
	width: 100%;
	background: #f2f2f2;
}
.main{
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	background: #f2f2f2;
	box-sizing: border-box;
	padding:3rem 2rem;
	min-height: 436px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main div.right{
	width:65%;
	margin-left: 5%;
}
.main div.right h4{
	font-size: 0.63rem;
	color: #666;
	font-weight: bold;
}
.main div.right p{
	font-size: 0.5rem;
	color: #999;
	margin: 0.5rem 0;
}
.main div.right p a{
	margin-right:20px;
}
.main div.right p a span{
	color: #00ccff;
	font-size: 14px;margin-left: 10px;
}

@media screen and (max-width:960px) {
	.main{
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		padding: 2rem;
	}
	.main div.right{
		width:100%;
		margin: 1rem 0;
	}
}

@media screen and (max-width:640px){
	.main div.right p{
		font-size: 14px !important;
	}
	.main div.right p a{
		display: block;
		margin:1rem 0;
	}
}


