section.main-image {
	overflow: hidden;
	position: relative;
	width: 100%;
	transition: all 0.3s;
	/* padding: 0 5%; */
	display: flex;
	/* border-radius: 12px; */
	align-items: stretch;
	justify-content: center;
	height: 30vw;
	/* margin-top: 90px; */
	min-height: 400px;
}

section.main-image .wrapper {
	width: 100%;
	/* max-width: 1300px; */
	margin: 0 auto;
	position: relative;
	/* border-radius: 12px; */
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

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: relative;
	text-align: center;
	bottom: 10%;
	background: var(--second-color);
	max-width: 90%;
	padding: 20px 40px;
	border-radius: 16px;
}
section.main-image .info h1 {
	font-weight: 700;
	font-size: 1.5em;
	line-height: 1em;
	color:#fff;
	margin:0;
}

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;
}

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){

}
@media screen and (min-width:1024px){

}