/* Homepage Hero Block Styles */

.homepage-header {
	position: relative;
	color: #fff;
	display: block;
	width: 100%;
}

/*.homepage-header:after {
	content: '';
	display: block;
	padding-top: 50.89%;
}*/

.homepage-header .overlay-columns {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: flex;
	height: 100%;
	width: 100%;
}

.overlay-col {
	width: 50%;
	height: 100%;
}

.overlay-columns .overlay-col:first-of-type {
	background-color: var(--secondary-color);
	opacity: 0.4;
}

.overlay-columns .overlay-col:last-of-type {
	background-color: var(--primary-color);
	opacity: 0.2;
}

.homepage-hero-vid {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

.homepage-hero-img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
}

.homepage-hero-content {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	min-height: 500px;
	z-index: 10;
	display: block;
	padding: 8.5% 0 17%;
	z-index: 10;
}

.homepage-hero-content-container {
	display: block;
	width: 100%;
	padding: 0 50px;
}

.homepage-hero-content-container .wp-block-columns .wp-block-column {
	margin-left: 0 !important;
}

.homepage-hero-columns .homepage-hero-column:first-of-type {
	padding-right: 50px;
}

.homepage-hero-columns .homepage-hero-column:last-of-type {
	padding-left: 50px;
}



/* Responsive Styles */
@media screen and (max-width: 1201px) {
	h1, h2 {
		font-size: 2.35em;
	}

	.homepage-hero-content {
		padding: 8.5% 0;
	}
}

@media screen and ( min-width: 769px ) {
	.homepage-hero-columns .homepage-hero-column {
		flex-basis: 50%;
	}
}

@media screen and ( max-width: 768px ) {
	.overlay-col {
		width: 100%;
	}

	.overlay-columns .overlay-col:last-of-type {
		display: none;
	}

	h1, h2 {
		font-size: 2em;
	}

	.homepage-hero-content {
		padding: 0;
		min-height: auto;
	}

	.homepage-hero-content-container {
		padding: 1.5em 1.25em 0.25em;
	}

	.homepage-hero-columns {
		flex-direction: column;
	}

	.homepage-hero-columns .homepage-hero-column {
		flex-basis: auto;
	}

	.homepage-hero-columns .homepage-hero-column:first-of-type {
	    padding-right: 0;
	}

	.homepage-hero-columns .homepage-hero-column:last-of-type {
	    padding-left: 0;
	}
}


/* Editor Override Styles */
.block-editor-block-list__block.wp-block.homepage-hero-columns,
.block-editor-block-list__block.wp-block.homepage-hero-column {
	margin-top: 0;
	margin-bottom: 0;
}