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;
	filter: saturate(0);
}

section.main-image:after {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: linear-gradient(45deg, rgba(4, 144, 185, 0.36) 0%, rgba(116, 3, 132, 0.22) 100%);
}

section.main-image .info-wrapper {
	position: absolute;
	width: 100%;
	text-align: center;
	padding: 0 4%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin-top: 3rem;
	z-index:10;
}

section.main-image .info{
	
}

section.main-image .info h1 {
	font-weight: 700;
	font-size: clamp(1.75rem,2.5vw,2.5rem);
	line-height: 1em;
	color:#fff;
	margin:0 auto;
	max-width:900px;
}

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: var(--brand-light-color);
	max-width: 640px;
	margin: .5em auto;
	/* line-height: 1.2em; */
	background: #466478b2;
	width: fit-content;
	padding: 0 .25rem;
	text-transform: uppercase;
	font-size: .875rem;
	letter-spacing: .05em;
	backdrop-filter: blur(4px);
}


