section.main-image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 66vh;
	transition:all 0.3s;
}
section.main-image:before {
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:50%;
	background:linear-gradient(0deg, rgba(49, 97, 125, 0) 0%, rgb(49, 97, 125) 100%);
	mix-blend-mode: multiply;
	z-index:10;
}
section.main-image div.image {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
}
section.main-image div.image:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
}
section.main-image .info {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	padding: 0 4%;
	
}
section.main-image .info h1 {
	font-size: 3em;
	line-height: 1em;
	color:#fff;
	margin:0 auto;
	max-width:900px;
}

section.main-image .info h1:after{
	display:none;
}
section.main-image .info p.text {
	transition: all 1.5s 0s;
	transform: translateY(0);
	font-size: 0.875em;
	font-weight: 400;
	color: #fff;
	max-width: 640px;
	margin: 1em auto;
}

section.main-image div.image:after {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background:rgba(0,0,0, 0.25);
}

@media screen and (max-width:540px){
	section.main-image .info h1{
		font-size:2.25em;
	}
}
@media screen and (min-width:1024px){
	section.main-image .info h1{
		font-size:3em;
	}
}