@font-face {
	font-family: 'Golden Hopes';
	/*src: url('fonts/GoldenHopes-Regular.woff2') format('woff2'),*/
	/*url('fonts/GoldenHopes-Regular.woff') format('woff');*/
	src: local('Golden Hopes Regular'), url('fonts/GoldenHopes-rgAlA.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* START object-fit:cover Fix for IE & IE Edge */
/* Note, requires JS to write the "compat-object-fit class to appropriate container element */
.compat-object-fit {
	background-size: cover;
	background-position: center center;
}

.compat-object-fit-x-left {
	background-size: cover;
	background-position-x: left;
}

.compat-object-fit-x-center {
	background-size: cover;
	background-position-x: center;
}

.compat-object-fit-x-right {
	background-size: cover;
	background-position-x: right;
}

.compat-object-fit-y-top {
	background-size: cover;
	background-position-y: top;
}

.compat-object-fit-y-center {
	background-size: cover;
	background-position-y: center;
}

.compat-object-fit-y-bottom {
	background-size: cover;
	background-position-y: bottom;
}

/* Hide the image if object fit is not supported in IE/Edge - opacity to 0 for the link area */
.compat-object-fit img {
	opacity: 0;
}

.landing-page #main-header-lp,
.landing-page footer {
	background: #043673 url(../images/ripple_tile.svg);
	background-size: 40px 6px;
	padding: 0;
	border-bottom: 5px solid #d0a379;
	z-index: 3000;
	width: 100%;
	color: white;
}

.landing-page #main-header-lp .header-inner,
.landing-page footer .header-inner {
	display: grid;
	grid-template-columns: 1fr 130px;
}

.landing-page #main-header-lp .column-1,
.landing-page footer .column-1 {
	padding: 15px;
	text-align: left;
}

.landing-page #main-header-lp .column-2,
.landing-page footer .column-2 {
	display: flex;
	flex-direction: column;
	padding: 15px;
	align-items: flex-end;
	justify-content: center;
	text-align: right;
}

.landing-page #main-header-lp .logo,
.landing-page footer .logo {
	width: 100%;
	max-width: 173px;
	height: auto;
}

.landing-page #main-header-lp .cta-block a,
.landing-page footer .cta-block a {
	display: inline-block;
	opacity: 1;
	transition: opacity .2s
}

.landing-page #main-header-lp .cta-block a:hover,
.landing-page #main-header-lp .cta-block a:focus,
.landing-page #main-header-lp .cta-block a:active,
.landing-page footer .cta-block a:hover,
.landing-page footer .cta-block a:focus,
.landing-page footer .cta-block a:active {
	opacity: .7;
}

.landing-page #main-header-lp .cta-block a:not(:last-child),
.landing-page footer .cta-block a:not(:last-child) {
	margin-right: 15px;
}

.landing-page #main-header-lp .cta-block img,
.landing-page footer .cta-block img {
	width: 35px;
	height: auto;
}

.full-width-hero-img-wrap {
	position: relative;
	min-height: 600px;
}

.full-width-hero-img-wrap.has-badge {
	margin-top: 100px;
}

.full-width-hero-img-wrap.has-badge .badge-overlay {
	position: absolute;
	top: -50px;
	right: 30px;
	width: 160px;
	z-index: 100;
}

.full-width-hero-img-wrap.has-badge .badge-overlay img {
	width: 100%;
	height: auto;
}

.full-width-hero-img-wrap .cover {
	min-height: 600px;
}

.full-width-hero-img-wrap.short,
.full-width-hero-img-wrap.short .cover {
	min-height: 400px;
}

.full-width-hero-img-wrap .cover .top-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 60%;
	background: linear-gradient(0, rgba(0, 0, 0, 0) 30%, #000000 100%);
	opacity: 0;
	transition: opacity .3s;
}

.full-width-hero-img-wrap .cover .bottom-overlay {
	position: absolute;
	top: 60%;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, #000000 100%);
	opacity: 0;
	transition: opacity .3s;
}

.full-width-hero-img-wrap .cover.show-overlay .top-overlay,
.full-width-hero-img-wrap .cover.show-overlay .bottom-overlay {
	opacity: .7;
}

.full-width-hero-img-wrap .cover > img {
	display: none;
}

.full-width-hero-img-wrap .hero-text-wrap {
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.full-width-hero-img-wrap .hero-text {
	position: absolute;
	width: 100%;
	max-width: 90%;
	/*bottom: 80px;*/
	color: white;
	text-align: left;
}

.full-width-hero-img-wrap .hero-cta.add-drop-shadow {
	box-shadow: 2px 2px 5px #000000;
}

.full-width-hero-img-wrap .hero-text.top-left,
.full-width-hero-img-wrap .hero-cta.top-left {
	top: 80px;
}

.full-width-hero-img-wrap .hero-text.top-center {
	top: 80px;
	left: 0;
	max-width: 100%;
	text-align: center;
}

.full-width-hero-img-wrap .hero-cta.top-center {
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 100%;
	text-align: center;
}

.full-width-hero-img-wrap .hero-text.top-right,
.full-width-hero-img-wrap .hero-cta.top-right {
	top: 80px;
	right: 0;
	text-align: right;
}

.full-width-hero-img-wrap .hero-text.center-left,
.full-width-hero-img-wrap .hero-cta.center-left {
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	text-align: left;
}

.full-width-hero-img-wrap .hero-text.center-center {
	top: 50%;
	/*transform: translateY(-50%);*/
	/*left: 0;*/
	/*max-width: 100%;*/
	text-align: center;
	left: 50%;
	transform: translate(-50%, -50%);
}

.full-width-hero-img-wrap .hero-cta.center-center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.full-width-hero-img-wrap .hero-text.center-right,
.full-width-hero-img-wrap .hero-cta.center-right {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	text-align: right;
}

.full-width-hero-img-wrap .hero-text.bottom-left,
.full-width-hero-img-wrap .hero-cta.bottom-left {
	bottom: 80px;
}

.full-width-hero-img-wrap .hero-text.bottom-center {
	bottom: 80px;
	left: 0;
	max-width: 100%;
	text-align: center;
}

.full-width-hero-img-wrap .hero-cta.bottom-center {
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.full-width-hero-img-wrap .hero-text {
	max-width: 65%;
}

.full-width-hero-img-wrap .hero-text.bottom-right,
.full-width-hero-img-wrap .hero-cta.bottom-right {
	bottom: 80px;
	right: 0;
	text-align: right;
}

.full-width-hero-img-wrap .hero-text .text-1,
.full-width-hero-img-wrap .hero-text .text-2 {
	font-family: 'Golden Hopes', serif;
	font-size: 3.1em;
	line-height: 1;
	margin-bottom: 0;
}

.full-width-hero-img-wrap .hero-text .text-1 + .text-2 {
	padding-top: 1rem;
}

.full-width-hero-img-wrap .hero-text.text-shadow .text-1,
.full-width-hero-img-wrap .hero-text.text-shadow .text-2 {
	text-shadow: 2px 2px 3px #000000;
}

.full-width-hero-img-wrap .hero-text.medium-text {
	font-size: 1.25em;
}

.full-width-hero-img-wrap .hero-text.large-text {
	font-size: 1.5em;
}

.full-width-hero-img-wrap .btn.btn-secondary {
	font-size: 1.2em;
}

.full-width-hero-img-wrap:not(.top-hero) {
	margin-bottom: 40px;
}

.full-width-hero-img-wrap .hero-cta {
	position: absolute;
}

.landing-page h1,
.landing-page h2 {
	font-weight: 400;
	text-transform: uppercase;
	font-size: 2.6em;
	word-spacing: 0.075em;
	color: #444;
}

.landing-page h2 {
	font-size: 2.2em;
}

.landing-page h3 {
	font-weight: 600;
	font-size: 1.5em;
	word-spacing: 0.075em;
	color: #444;
	/*font-style: italic;*/
}

.landing-page h4 {
	font-size: 1.3em;
	font-weight: 400;
	color: #444;
}

/* Testimonials */
.landing-page .testimonials {
	margin-top: 2em;
}

.landing-page .testimonials .testimonial {
	display: grid;
	grid-template-columns: 115px 1fr;
	grid-gap: 30px;
}

.landing-page .testimonials .testimonial:not(:last-child) {
	margin-bottom: 40px;
}

.landing-page .testimonials .testimonial .text-box {
	padding-top: .3em;
}


.landing-page .testimonials .photo-box img {
	border-radius: 50%;
}

.landing-page .testimonials .testimonial-text {
	font-style: italic;
}

.full-width .hero-image-wrap {
	position: relative;
	min-height: 855px;
}

.full-width .hero-image-wrap .cover {
	/*padding: 150px 0 70px;*/
	min-height: 855px;
}

.full-width .hero-image-wrap .cover > img {
	display: none;
}

@media only screen and (max-width: 780px) {
	.full-width-hero-img-wrap,
	.full-width-hero-img-wrap .cover {
		min-height: 500px;
	}

	.full-width-hero-img-wrap .hero-text {
		max-width: 85%;
	}

	.full-width-hero-img-wrap.has-badge .badge-overlay {
		top: -50px;
		right: 30px;
		width: 130px;
	}
}

@media only screen and (max-width: 768px) {
	.landing-page h1 {
		font-size: 2.08em;
	}

	.landing-page h2 {
		font-size: 1.76em;
	}
}

@media only screen and (max-width: 680px) {
	.full-width-hero-img-wrap .hero-text .text-1,
	.full-width-hero-img-wrap .hero-text .text-2 {
		font-size: 2.6em;
	}
}

@media only screen and (max-width: 580px) {
	.full-width-hero-img-wrap,
	.full-width-hero-img-wrap .cover {
		min-height: 360px;
	}

	.full-width-hero-img-wrap .hero-text.top-left,
	.full-width-hero-img-wrap .hero-cta.top-left,
	.full-width-hero-img-wrap .hero-text.top-center,
	.full-width-hero-img-wrap .hero-cta.top-center,
	.full-width-hero-img-wrap .hero-text.top-right,
	.full-width-hero-img-wrap .hero-cta.top-right {
		top: 50px;
	}

	.full-width-hero-img-wrap .hero-text .text-1,
	.full-width-hero-img-wrap .hero-text .text-2 {
		font-size: 2.1em;
	}
}

@media only screen and (max-width: 450px) {
	.landing-page .testimonials .testimonial {
		grid-template-columns: 95px 1fr;
		grid-gap: 20px;
	}
}

@media only screen and (max-width: 380px) {
	.landing-page .testimonials .testimonial {
		grid-template-columns: 1fr;
		grid-gap: 15px;
	}

	.landing-page #site-body .testimonials .photo-box {
		text-align: center;
	}

	.landing-page #site-body .testimonials .photo-box img {
		width: 100%;
		max-width: 180px;
	}
}