/**************************************************
* HOMEPAGE VIDEO
***************************************************/
.page-home .video-banner {
	background-color: #f8f9fa;
    position: relative;
}
.page-home .video-banner .video-container {
	position: relative;
    width: 100%;
    height: auto;
    object-fit: none;
    display: block;
	background: #006f71;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-home .video-banner .video-list,
.page-home .video-banner .video-posters,
.page-home .video-banner .video-posters img {
	display: none;
}
.page-home .video-banner .video-container video {
	position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: none;
    z-index: 0;
	background: transparent;
}
.page-home .video-banner .video-container video.active {
	z-index: 1;
	display: block;
}
.page-home .video-banner .video-container img.video-poster {
	position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.page-home .video-banner .video-pause {
	position: absolute;
    right: 3px;
    bottom: 15px;
    width: 45px;
    height: 30px;
    z-index: 5;
    opacity: 0.75;
    transition: opacity 100ms cubic-bezier(0.39, 0.58, 0.57, 1);
}
.page-home .video-banner .video-pause:hover,
.page-home .video-banner .video-pause:focus {
    opacity: 1;
}
.page-home .video-banner .video-pause a {
	line-height: 1em;
	font-size: 30px;
	color: #fff;
}

.page-home .video-banner .video-content-container {
    width: 100%;
    flex-grow: 1;
    display: flex;
    z-index: 2;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
    position: absolute;
    padding-top: 0;
    top: 0;
    bottom: 0;
}
.page-home .video-banner .video-content {
    color: #fff;
    width: 45%;
	/* padding: 1.5rem 2.5rem; */
	padding: 1.5rem 2.15rem;
	transform-origin: bottom left;
}

.page-home .video-banner .video-content.image-only {
	width: 92%;	
}

.page-home .video-banner .video-content.image-only .homepage-btn {
	color: #fff;
  padding: .5em 1em;
  border: 3px solid #006f71;
  margin-top: 1rem;
  display: block;
  width: fit-content;
  text-transform: uppercase;
	transition: all 0.35s ease;
	background-color: #006f71;
}

.page-home .video-banner .video-content.image-only .homepage-btn:hover {
	color: #cc9933;
	border-color: #cc9933;
	transition: all 0.35s ease;
}

.page-home .video-banner .video-content .video-banner-header {
	font-family: "Gotham Black", "Gotham", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.65rem;
    line-height: 1.1em;
    margin-bottom: 0.35rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgb(0 0 0 / 15%);
    text-transform: uppercase;
}
.page-home .video-banner .video-content .video-banner-copy {
    font-size: 1.1em;
	line-height: 1.45em;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.65);
}

.page-home .video-banner .video-content.image-only .video-banner-copy {
	font-size: 1.75em;	
}

.page-home .video-banner .video-content .video-banner-btns {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
	flex-flow: row wrap;
}
.page-home .video-banner .video-content .video-banner-btns li {
    margin-right: 0.35rem;
}
.page-home .video-banner .video-content .video-banner-btns a {
	display: block;
	color: #ffffff;
}
.page-home .video-banner .video-content .video-banner-btns a::after {
    content: "\f0da";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin-left: .7em;
    font-size: 14px;
    color: #41ae4a;

    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.page-home .video-banner .video-content .video-banner-btns a:hover::after {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

/* NOTICES */
.page-home .video-banner.banner-priority-notice .video-content-container {
	justify-content: center;
}
.page-home .video-banner.banner-priority-notice .video-content-container .video-notice-content {
	width: 100%;
}
.page-home .video-notice-content .fsc-notice.standard-notice {
	top: calc(82px + 3.5rem);
    padding: 1.5rem;
	z-index: 5;
}
.page-home .video-notice-content .fsc-notice.standard-notice .fsc-notice-header {
	margin: 0;
    margin-bottom: 0.4em;
    line-height: 1.15em;
}
.page-home .video-notice-content .fsc-notice.standard-notice .fsc-notice-content {
	margin-bottom: 0;
    font-size: 1rem;
}

/* CARDS */
.page-home .cards > .container > h2 {
    font-family: "Gotham", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600 !important;
}
.page-home .cards .card .card-front h3 {
    font-family: "Gotham", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

/**************************************************
* MEDIA QUERIES
***************************************************/
@media (max-width: 1199px) {
    .page-home .cards .card .card-front h3 {
		font-size: 1rem !important;
	}
}
@media (max-width: 991px) {
    .page-home .video-notice-content .fsc-notice.standard-notice {
		position: static;
		width: 100%;
		padding-top: 3rem;
	}
	.page-home .cards .card .card-front h3 {
		font-size: 1rem !important;
	}
}
@media (max-width: 767px) {
    .page-home .video-banner .video-content-container {
		background: rgba(0, 0, 0, 0.2);
	}
	.page-home .video-banner .video-content {
		padding: 1rem;
	}
	.page-home .video-notice-content .fsc-notice.standard-notice {
		position: static;
		width: 100%;
		padding-top: 1.5rem;
	}
}

@media (max-width: 1300px) {
		.page-home .video-banner .video-content.image-only {
			width: 45%;
		}
	
	.page-home .video-banner .video-content.image-only .video-banner-header {
		font-size: 2.65rem;
	}
	
	.page-home .video-banner .video-content.image-only .video-banner-copy {
		font-size: 1.1rem;
	}
}

@media (max-width: 1100px) {
		.page-home .video-banner .video-content.image-only {
			width: 50%;
		}
	
	.page-home .video-banner .video-content.image-only .video-banner-header {
		font-size: 2rem;
	}
	
	.page-home .video-banner .video-content.image-only .video-banner-copy {
		font-size: 1rem;
	}
}

@media (max-width: 784px) {
		.page-home .video-banner .video-content.image-only {
			width: 70%;
		}
	
	.page-home .video-banner .video-content.image-only .video-banner-header {
		font-size: 2rem;
	}
	
	.page-home .video-banner .video-content.image-only .video-banner-copy {
		font-size: 1rem;
	}
}

@media (max-width: 600px) {
		.page-home .video-banner .video-content.image-only {
			width: 100%;
		}
	
	.page-home .video-banner .video-content.image-only .video-banner-header {
		font-size: 1rem;
	}
	
	.page-home .video-banner .video-content.image-only .video-banner-copy {
		font-size: .9rem;
	}
}

@media (max-width: 575px) {
	.page-home .video-banner .video-content .video-banner-copy {
		line-height: 1.35em;
		font-size: 1.5rem;
	}
	.page-home .video-banner .video-content .video-banner-btns a {
		font-size: 1.25rem;
	}
	.page-home .video-banner.banner-priority-notice .video-content-container {
		position: static;
		background: #016f71;
	}
	.page-home .video-banner.banner-priority-notice .fsc-notice.priority-notice {
		border: none;
	}
}
@media (max-width: 420px) {
	.page-home .video-banner .video-content-container {
		position: static;
		background: #016f71;
	}
	.page-home .video-banner .video-content {
		padding: 15px;
		width: auto !important;
		transform: none !important;
	}
	.page-home .video-banner .video-content .video-banner-header {
		font-size: 1.5rem;
		text-shadow: none;
	}
	.page-home .video-banner .video-content .video-banner-copy {
		font-size: 1rem;
		line-height: 1.25em;
		text-shadow: none;
	}
	.page-home .video-banner .video-content .video-banner-btns a {
		font-size: 1rem;
		text-shadow: none;
		box-shadow: none;
	}
	.page-home .video-banner .video-content .video-banner-header br,
	.page-home .video-banner .video-content .video-banner-copy br {
		display: none;
	}
}