.page__banner-outer-section{
	height: var(--banner-mheight);
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-image: var(--bg-image);
	overflow: hidden;
}

.page__banner-inner-container.text-split{
	justify-content: center;
}

.text-split .page__banner-content-holder.page__banner-with-content{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.page__banner-outer-section:before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--img-overlay);
}

.page__banner-inner-container {
	position: relative;
	z-index:2;
	color: var(--white);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.page__banner-inner-container.text-left{
	justify-content: center;
	align-items: flex-start;
}

.page__banner-inner-container.text-center{
	justify-content: center;
}

.page__banner-inner-container.text-right{
	justify-content: center;
	align-items: flex-end;
}

.page__banner-heading h1,
.page__banner-heading h2,
.page__banner-heading h3,
.page__banner-heading h4{
	font-size: inherit;
	margin: 0;
}

.page__banner-heading{
	margin: 0;
}

.page__banner-with-content .page__banner-heading h1,
.page__banner-with-content .page__banner-heading h2,
.page__banner-with-content .page__banner-heading h3,
.page__banner-with-content .page__banner-heading h4{
	margin-bottom: 32px;
	font-size: inherit;
}

.page__banner-outer-section .gb_inner-standardcontainer,
.page__banner-outer-section .gb_inner-medium-container{
	width: 100%;
}

@media screen and (min-width: 769px){
	.page__banner-outer-section{
		height: var(--banner-dheight);
	}

	.page__banner-with-content .page__banner-heading h1,
	.page__banner-with-content .page__banner-heading h2,
	.page__banner-with-content .page__banner-heading h3,
	.page__banner-with-content .page__banner-heading h4{
		margin-bottom: 0px;
	}
	
	.text-split .page__banner-content-holder.page__banner-with-content{
		grid-template-columns: repeat(2, 1fr);
			gap: 24px;
	}
}