/* Basics */
html, body {
	height: 100%;
}
body {
	font-family: 'Source Sans Pro', sans-serif;
	color: #000500;
	background-color: #ebebed;
	display: flex;
	flex-direction: column;
}
a {
	color: #004684;
	text-decoration: underline;
}
a:hover, a:focus {
	text-decoration: none;
	color: #000;
}
.btn {
	text-decoration: none;
	border-radius: 0;
}
.btn-primary {
	background-color: #004684;
	border-color: #004684;
}
.btn-primary:hover, .btn-primary:focus {
	color: #000;
	background-color: #00bfba;
	border-color: #004684;
}
.btn-light {
	background-color: #00bfba;
	border-color: #00bfba;
	color: #000;
	text-align: left;
}
.btn-light:hover, .btn-light:focus {
	background-color: #004684;
	border-color: #00bfba;
	color: #fff;
}
.btn-secondary {
	background-color: #c5c2c4;
	border-color: #c5c2c4;
	color: #000;
	padding-right: 40px;
	position: relative;
	text-align: left;
	font-size: 20px;
	font-weight: 700;
}
.btn-secondary:hover, .btn-secondary:focus {
	background-color: #d8d6d7;
	border-color: #d8d6d7;
	color: #000;
}
.btn-secondary:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	position: absolute;
	right: 12px;
	top: 10px;
}
.btn-secondary[aria-expanded="false"]:after {
	content: "\f078";
}
.btn-secondary[aria-expanded="true"]:after {
	content: "\f053";
}
.btn-box-primary {
	background-color: #ffbc33;
	border-color: #ffbc33;
	border-width: 2px;
	color: #000;
	font-size: 1.15rem;
}
.btn-box-primary:hover, .btn-box-primary:focus {
	background-color: transparent;
	border-color: #ffbc33;
	color: #fff;
}
.btn-box-outline {
	background-color: transparent;
	border-color: #ffbc33;
	border-width: 2px;
	color: #fff;
	font-size: 1.15rem;
}
.btn-box-outline:hover, .btn-box-outline:focus {
	background-color: #ffbc33;
	border-color: #ffbc33;
	color: #000;
}

/* Content */
main {
	flex-shrink: 0;
}
header {
	background-color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #c5c2c4;
}
header .navbar-brand {
	text-decoration: none;
	white-space: normal;
}
@media (min-width: 768px) {  
	header .navbar-brand {
		white-space: nowrap;
	}
}
h1, .h1 {
	color: #004684;
	font-weight: 700;
	font-size: 36px;
	margin-bottom: 0;
	text-decoration: none;
}
h1 span {
	display: block;
	font-size: 80%;
	color: #766f72;
	font-weight: 400;
	font-size: 24px;
	line-height: 16px;
}
h2, .h2 {
	font-size: 36px;
	font-weight: 700;
}
h3, .h3 {
	font-size: 24px;
	font-weight: 700;
}
header .navbar.navbar-expand-md {
	padding: 0;
	flex-flow: row wrap;
}
header .navbar .navbar-toggler {
    color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,.1);
}
header .navbar .nav-item + .nav-item {
	border-left: none;
}
@media (min-width: 768px) {  
	header .navbar .nav-item + .nav-item {
		border-left: 1px solid #766f72;
	}
}
header .navbar .nav-link {
	padding: 10px 5px;
	text-decoration: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-content: center;
	min-width: 125px;
	transition:  color 0.3s;
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
}
header .navbar .nav-link:hover, header .navbar .nav-link:focus {
	color: #fff;
}
header .navbar .nav-link:before {
    content: '';
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    border: 2px solid #37474f;
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
    border-width: 1px;
    border-color: #004684;
    background-color: #004684;
}
header .navbar .nav-link:hover:before, header .navbar .nav-link:focus:before {
	opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
header .navbar .nav-link:after {
	content: '';
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    background: transparent;
}
header .navbar .nav-link:hover:after, header .navbar .nav-link:focus:after {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
}
header .navbar .nav-link i {
	padding-bottom: 8px;
}

.home-banner {
	max-height: 200px;
	overflow: hidden;
}
.home-banner img {
	width: 100%;
	height: auto;
}
.home-banner-boxes {
	background-image: url("/images/banner_mask.png"), url("/images/banner.png");
	background-repeat: no-repeat, no-repeat;
	background-position: bottom left, top left;
	background-size: 100%, cover;
	padding-top: 1.5rem;
}
.banner-box {
	background-color: #004684;
	color: #fff;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
}
.banner-box strong {
	color: #fff;
	display: block;
	margin-bottom: 0.25rem;
}

.banner {
	background-image: url("../img/banner-lt.png");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: cover;
}
.banner h2 {
	font-size: 48px;
	font-weight: 700;
	padding: 25px 0;
	margin: 0;
}

.cta {
	background-color: #00bfba;
	padding: 12px 0;
	font-size: 24px;
}

.content {
	margin-top: 20px;
	margin-bottom: 20px;
}

.sub-heading {
	font-size: 20px;
	text-align: center;
	margin: 5px 0 20px;
}
@media (min-width: 768px) {  
	.sub-heading {
		padding: 0 5%;
	}
}

.home-button {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 140px;
	cursor: pointer;
}
@media (min-width: 430px) {  
	.home-button {
		width: 400px;
	}
}
.home-button img {
	position: relative;
	display: block;
	min-height: 100%;
	min-width: 100%;
}
.home-button figcaption {
	padding: 20px;
	color: #fff;
	backface-visibility: hidden;
}
.home-button figcaption,
.home-button figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.home-button figcaption h3 {
	top: 20px;
	transition: transform 0.35s;
	transform: translate3d(0,10px,0);
	position: absolute;
	right: 20px;
	left: 20px;
	padding: 0;
	margin: 0;
	font-weight: 700;
	font-size: 24px;
}
.home-button:hover figcaption h3 {
	transform: translate3d(0,0,0);
}
.home-button figcaption h3:after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 4px;
	background: #fff;
	content: '';
	transform: translate3d(0,40px,0);
	opacity: 0;
	transition: opacity 0.35s, transform 0.35s;
}
.home-button:hover figcaption h3:after {
	opacity: 1;
	transform: translate3d(0,0,0);
}
.home-button figcaption > a {
	z-index: 99;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
	outline: none;
	text-decoration: none;
}

aside {
	background-color: #fff;
	padding: 20px;
	width: 100%;
}
@media (min-width: 430px) {  
	aside {
		width: 400px;
	}
}

.line-heading {
	text-align: center;
	background-color: #fff;
	position: relative;
	margin-bottom: 20px;
}
.line-heading:before, .line-heading:after {
	content: '';
	position: absolute;
	left: auto;
	right: 0;
	width: 100%;
	height: 0;
	border-top-width: 1px;
	border-top-color: #766f72;
}
.line-heading:before {
	top: 50%;
	border-top-style: solid;
}
.line-heading h3 {
	font-size: 24px;
	color: #004684;
	font-weight: 700;
	position: relative;
	display: inline-block;
	margin-bottom: 0;
	background-color: inherit;
	z-index: 2;
	padding-left: 1rem;
	padding-right: 1rem;
}

.card {
	border: none;
	border-radius: 0;
}
.card-body {
	padding: 0;
}
.card-title {
	padding: 20px;
	background-color: #004684;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}
.card-text {
	padding: 0 20px 20px;
	margin-bottom: 0;
}

.alert.validation-summary-valid,
.alert.field-validation-valid {
	display: none;
}


/* Footer */
footer {
	margin-top: auto;
	background-color: #004684;
	color: #fff;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
footer a {
	color: rgba(255,255,255,0.8);
	text-decoration: underline;
	transition: all 0.3s;
}
footer a:hover, footer a:focus {
	color: rgba(255,255,255,1);
	text-decoration: none;
}