.fc_hero_banner {
	background: center / cover no-repeat;
	display: flex;
	gap: 60px;
	justify-content: space-between;
	position: relative;
	flex-flow: column;
	min-height: clamp(400px, 45vw, 650px);
	padding: clamp(130px, 13vw, 170px) var(--width-xl) 10px;
	&.home_hero {
		min-height: clamp(400px, 45vw, 1000px);
		padding: 130px var(--width-xl) 10px;
	}
	&:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--deep-grey);
		opacity: 0.7;
	}
	.wp_content {
		max-width: 1050px;
		flex: 1;
		display: flex;
		flex-flow: column;
		justify-content: center;
	}
	.hero_usps {
		&.align_centre {
			justify-items: center;
		}
		&.align_right {
			justify-items: flex-end;
		}
	}
	> * {
		position: relative;
		z-index: 5;
	}
}
.header_solid {
	.fc_hero_banner {
		.the_usps {
			background: transparent;
		}
	}
}

@media ( width < 1024px) {
	.fc_hero_banner {
		.hero_usps {
			justify-items: center;
		}
	}
}