.banner {
	width: 100%;
	height: 350px;
	background-image: url(../images/banner.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.web_text {
	position: absolute;
	top: 20%;
	left: 15%;
	width: 644px;
	height: auto;
	padding: 32px;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.7);
}

.web_text h1 {
	font-size: 28px;
	line-height: 2;
}

.web_text p {
	font-size: 17px;
	line-height: 1.7;
}

.web_btn {
	display: inline-block;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 400;
	background-color: rgb(0, 120, 212);
	color: #fff;
	margin-top: 10px;
}


@media(max-width:760px) {

	.web_text {
		width: 86%;
		left: 0;
		right: 0;
		margin: auto;
		padding: 10px;
	}

	.web_text h1 {
		font-size: 23px;
	}
	.web_btn {
		width: 100px;
		display: block;
		text-align: center;
		margin: 10px auto;
	}
}