
.emb-block-hero {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 2rem;
}

.emb-block-hero__image,
.emb-block-hero__pattern,
.emb-block-hero__gradient {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	height: 100%;
	width: 100vw;
}

.emb-block-hero__gradient {
	background: rgb(0,0,128);
	background: linear-gradient(90deg, rgba(0,0,128,1) 0%, rgba(0,94,165,1) 70%);
	z-index: 1;
}

.emb-block-hero__pattern {
	background: url('../../images/hero-pattern.png') top center no-repeat;
	background-size: auto 100%;
	z-index: 3;
}

.emb-block-hero__image {
	z-index: 2;
	mix-blend-mode: overlay;
	opacity: .3;
}

.emb-block-hero__image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.emb-block-hero__content {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 4;
	color: white;
	min-height: 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 0;
	gap: .5rem;
	max-width: var(--widths--content);
	margin: 0 auto;
}

.emb-block-hero__content h1 {
	color: white;
}

.emb-block-hero__content p {
	text-align: center;
}

@media all and (min-width: 960px) {

	.emb-block-hero {
		margin-bottom: 4rem;
	}

	.emb-block-hero__content {
		padding: 5rem 0;
	}
}

@media all and (min-width: 1280px) {
	.emb-block-hero {
		margin-bottom: 5rem;
		display: flex;
		align-items: center;
	}
	.emb-block-hero__content {
		padding: 7rem 0;
		height: 100%;
		bottom: 0;
	}
}

@media all and (min-width: 1440px) {
	.emb-block-hero {
		min-height: 400px;
	}
}