.banner.banner__home {
	position: relative;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.banner.banner__home::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(5,45,110);
	background: linear-gradient(90deg, var(--brand-bright-blue), var(--brand-blue));
	opacity: 0.5;
}
.banner.banner__home .banner--container {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 3rem 2rem;
	position: relative;
}
.banner.banner__home .banner--content {
	width: auto;
}
.banner.banner__home .banner--subheading {
    text-transform: uppercase;
}
.banner.banner__home .banner--content .banner--heading h1 {
	color: var(--theme-white, #fff);
	position: relative;
	display: inline-block;
	line-height: 1.314;
	text-transform: uppercase;
}
.banner.banner__home .banner--content .banner--body {
	color: var(--theme-white, #fff);
	max-width: 910px;
}

.banner.banner__home .banner--content .banner--actions {
	margin-top: 1.5rem;
}

.banner.banner__home .banner--content .banner--actions .button {
	padding: .5em 2em;
}