section.main-image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 50vh;
	min-height:540px;
	transition:all 0.3s;
}

section.main-image.medium{
	height:50vh;
}

section.main-image.tall{
	height:66vh;
}

section.main-image div.image {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	z-index:-1;
}

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%;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
}

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

section.main-image .info p.text {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.375em;
	font-weight: 600;
	text-wrap: balance;
}

section.main-image div.image::after {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: linear-gradient(rgba(43, 53, 66, 0.8) 0%, rgba(43,53,66,0.2) 400px);
}

/* BLOG POST */
section.main-image.blog-post-hero {
	height: 66vh;
}

section.main-image.blog-post-hero div.outer-wrapper {
	width: 100%;
}

/* PARTNERS */

section.main-image .partner-logo{
	width:280px;
	height:auto;
	display:inline-block;
}
section.main-image .partner-benefits{
	position:absolute;
	bottom:2rem;
	left:0;
	width:100%;
	display:flex;
	justify-content:center;
	z-index:10;
}

section.main-image .partner-benefits .wrapper{
	display:flex;
	gap:1rem;
}


section.main-image .partner-benefits .benefit {
	display: flex;
	flex-direction: column;
	color: #fff;
	align-items: center;
	width: 200px;
	padding: 1rem;
	text-align: center;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.5);
}

section.main-image .partner-benefits .benefit i{
	font-size:2rem;
}

section.main-image .partner-benefits .benefit p {
	line-height: 1.25em;
	text-wrap: balance;
	font-size:0.65em;
	margin-bottom: 0;
	margin-top: 0.5rem;
}

/* BENEFITS */

section.main-image .benefits{
	position:absolute;
	bottom:2rem;
	left:0;
	width:100%;
	display:flex;
	justify-content:center;
	z-index:10;
}

section.main-image .benefits .wrapper{
	display:flex;
	gap:1rem;
}


section.main-image .benefits .benefit {
	display: flex;
	flex-direction: column;
	color: #fff;
	align-items: center;
	width: 150px;
	padding: 1rem;
	text-align: center;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.5);
}

section.main-image .benefits .icon{
	width: 40px;
	height: 40px;
	display:flex;
	align-items:center;
	justify-content:center;
}
section.main-image .benefits .benefit i{
	font-size:2rem;
	font-weight:300;
}

section.main-image .benefits .benefit p {
	line-height: 1.25em;
	text-wrap: balance;
	font-size: 0.65em;
	margin-bottom: 0;
	margin-top: 0.5rem;
}

section.main-image .benefits .benefit svg {
	width: 40px;
	height: 40px;
}

section.main-image .benefits svg .st0{
	fill:#fff;
}

section.main-image .benefits .benefit:hover{
	border: 1px solid rgba(255,255,255,0.75);
}