section.main-image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 50vh;
	transition:all 0.3s;
}
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-weight: 300;
	font-size: 3.5vw;
	line-height: 1em;
	color: #fff;
	margin: 0 auto;
	margin-bottom: 1rem;
	max-width: 900px;
	padding: 1rem 2rem;
	background: rgba(19, 182, 199, 0.28);
	width: fit-content;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

section.main-image .info h1:after{
	display:none;
}

section.main-image .info p.text {
	margin: 15px 0;
	transition: all 1.5s 0s;
	transform: translateY(0);
	font-size: 1.5em;
	font-weight: 400;
	color: #fff;
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.2em;
	width: fit-content;
	background: rgba(19, 182, 199, 0.28);
	display: block;
	padding: 0.25rem 1rem;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

section.main-image div.image::after {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(19, 123, 199, 0.5);
	mix-blend-mode: soft-light;
}

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