.flex-content.main-banner {
	overflow: hidden;
	padding: 170px 0 146px;
  position: relative;
}

.flex-content.main-banner h1 {
	color: var(--White);
}

.flex-content.main-banner .bg-vid {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: unset;
	z-index: 1;
	transform: translate(-50%, -50%);
}

.flex-content.main-banner .container {
	position: relative;
	z-index: 2;
}

.flex-content.main-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
	z-index: 1;
}


.flex-content.main-banner.gradient[data-theme="light"]::after {
	background: linear-gradient(208deg, rgba(225, 239, 253, 0.71) 16.32%, rgba(225, 239, 253, 0.9) 46%);
}

.flex-content.main-banner.gradient[data-theme="navy"]::after {
	background: linear-gradient(
		to bottom,
		rgba(0, 56, 107, 0) 0%,
		rgba(0, 56, 107, 1) 17.7666%
	);
}

.flex-content.main-banner.gradient[data-theme="sky"]::after {
	background: linear-gradient(208deg, rgba(225, 239, 253, 0.71) 16.32%, rgba(225, 239, 253, 0.90) 46%);
	opacity: 1;
}

.flex-content.main-banner.gradient[data-theme="stone"]::after {
	background: linear-gradient(263deg, rgba(240, 237, 232, 0.00) 31.13%, #F0EDE8 57.87%), linear-gradient(179deg, rgba(240, 237, 232, 0.00) -11.13%, rgba(240, 237, 232, 0.70) 61.12%);
	opacity: 1;
}

.flex-content.main-banner .no-image .content {
	max-width: 100%;
}

.flex-content.main-banner .content * {
	position: relative;
}

.flex-content.main-banner.dark .content,
.flex-content.main-banner.light .content {
	padding: 0 60px;
	position: relative;
}

.flex-content.main-banner .main-img {
	display: block;
	position: relative;
	left: -36px;
	top: 5px;
	width: calc(100% + 36px);
	overflow: hidden;
}

.flex-content.main-banner .main-img.scale-to-content {
	height: calc(100% - 20px);
}

.flex-content.main-banner .main-img.rounded-corners {
	border-radius: 10px;
}

.flex-content.main-banner .main-img.drop-shadow {
	box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.17);
}

.flex-content.main-banner .main-img img {
	width: 100%;
}

.flex-content.main-banner .main-img.scale-to-content img {
	height: 100%;
	object-fit: cover;
}

.flex-content.main-banner .eyebrow {
	color: var(--Text);
	margin: 0 0 8px;
}

.flex-content.main-banner .main-title {
	color: var(--Text);
	margin: 0 0 56px;
}

.flex-content.main-banner .text {
	padding: 0 0 17px;
}

.flex-content.main-banner .text > *:last-child {
	margin-bottom: 0;
}

.flex-content.main-banner.dark .main-title {
	color: var(--White);
}

.flex-content.main-banner .buttons {
	margin: 0 -12px;
}

.flex-content.main-banner .buttons a {
	margin: 15px 12px 0;
}

.flex-content.main-banner.dark .content > *:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
	.flex-content.main-banner .row:not(.fullwidth) .content {
		padding-right: 60px;
	}
}

@media only screen and (max-width: 991px) {
	.flex-content.main-banner {
		padding: 80px 0 !important;
	}

	.flex-content.main-banner.no-padding {
		padding: 0 !important;
	}

	.flex-content.main-banner.no-padding .masked-section {
		padding: 80px 0 !important;
	}

	.flex-content.main-banner.dark .content,
	.flex-content.main-banner.light .content {
		padding: 30px;
		width: 100%;
		max-width: unset;
	}

	.flex-content.main-banner.dark .content:before,
	.flex-content.main-banner.light .content:before {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transform: none;
	}

	.flex-content.main-banner .main-img {
		left: 0;
		top: 0;
		width: auto !important;
		height: auto !important;
		margin: 30px 0 0;
	}

}