.title{
    height: 320px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 10;
}
.title::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}
.title_text{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 35px;
    line-height: 35px;
    color: #fff;
    text-shadow: #ccc 0px 0 5px;
}
.page_wrapper{
	background-color: #eee;
	padding: 60px 20px;
}
.page_contents{
	background-color: #fff;
	width: 1100px;
	max-width: 100%;
	margin: auto;
	padding: 60px 80px;
	box-sizing: border-box;
}

@media only screen and (max-width: 750px) {
	.page_contents{
		padding: 30px 40px;
	}
}