section.main-image {
	overflow: hidden;
	position: relative;
	width: 100%;
	min-height: 50vh;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-bottom: 4px solid var(--yellow-color);
}

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 {
	background: var(--blue-color);
	position: relative;
	padding-left:5%;
	clip-path:polygon(0 0, 100% 0, calc(100% - 90px) 100%, 0 100%);
	margin:150px 0;
	width:fit-content;
	max-width:720px;
}

section.main-image .info-inner{
	padding: 0;
	background: var(--yellow-color);
	color: var(--blue-color);
	padding: 30px 90px 30px 90px;
	position: relative;
	clip-path: polygon(90px 0, 100% 0, 100% 100%, 0 100%);
}

section.main-image .info h1 {
	font-weight: 700;
	font-size: 7vw;
	line-height: 1em;
	color:#fff;
	margin:0 auto;
	max-width:900px;
}

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

section.main-image .info p {
	margin: 0.5em 0;
	line-height: 1.5em;
	font-weight: 600;
}

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

section.main-image .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(180deg, rgba(6, 31, 104, 0.45) 0%, rgba(10, 32, 128, 0.2) 200px); */
	opacity: 1;
	pointer-events: none;
	background: #00377d3b;
	/* mix-blend-mode: saturation; */
}

@media screen and (max-width:640px){
	
	section.main-image {
		align-items:flex-end;
	}
	section.main-image .info h2 {
		font-size: 1.5em;
		max-width: 320px;
		padding: 0;
		line-height: 1.1em;
	}
	
	section.main-image .info p{
		font-size:0.875em;
	}
	
	section.main-image .info{
		padding-left:0;
		margin:0;
		width:95%;
		clip-path: polygon(0 0, calc(100% - 90px)  0, 100% 100%, 0 100%);
	}
	
	section.main-image .info-inner{
		padding: 20px 90px 10px 5%;
		clip-path:none;
		
	}
}