.evblocks-hero {
	position: relative;
	padding: 0;
	text-align: center;
}

.evblocks-hero__container {
	min-height: 300px;
	display: flex;
	align-content: center;
	justify-content: center;
	position: relative;
	padding: var(--ev-padding--block);
	z-index: 2;
}

.evblocks-hero__title {
	font-size: 50px;
	color: #fff;
	max-width: 740px;
	width: 100%;
}

.evblocks-hero__image-wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.evblocks-hero__image {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.evblocks-hero__image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

@media (min-width: 500px) {
	.evblocks-hero__title {
		font-size: 65px;
	}
}

@media (min-width: 769px) {

	.evblocks-hero__container {
		min-height: 300px;
		display: flex;
		align-content: flex-start;
		justify-content: flex-start;
	}

	.evblocks-hero {
		text-align: left;
	}

	.evblocks-hero__title {
		font-size: 90px;
	}

	.evblocks-hero__container {
		min-height: 600px;
	}
}