/* Old School CSS goodness */
/* Do a find/replace to swap out colors, no SASS or CSS variables here... we're kicking it old school! */
/* Color used for topbar and headings - #154f91 */
/* Color used for body text, logo bg and heading-title - #121c4e */

html {
    font-size: 18px;
	line-height: 28px;
}
* {
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
body, html {
    height: 100%;
    overflow-x: hidden;
}
body {
    background-color: #343840;
    color: #efeee9;
    font-family: Muli,sans-serif;
    font-size: 18px;
    line-height: 28px;
    word-wrap: break-word;
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    color: #efeee9;
}
.wrapper {
    left: 0;
    position: relative;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    z-index: 5;
}
.wrapper.fixed-header {
    padding-top: 140px;
}
@media (max-width: 767px) {
	.wrapper.fixed-header {
	    padding-top: 60px;
	}	
}
header {
    background-color: transparent;
    height: 140px;
    position: relative;
    top: 0;
    -webkit-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
    z-index: 1200;
}
.fixed-header header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}
.topbar {
    background-color: #154f91;
    color: #fff;
    min-height: 35px;
    padding: 5px 0;
}
.container {
    max-width: 1170px;
}
@media (max-width: 1199px) {
    .container {  
      	padding-left: 15px;
		padding-right: 15px;
		width: auto;
	}
}
.container, .container-fluid {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
}
.site-header {
    color: transparent;
    margin: 0;
    padding: 15px 0;
    -webkit-transition: all .3s !important;
    transition: all .3s !important;
}
.site-header .logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column: 1/2;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
}
a.logo-link {
    display: inline-block;
    margin: 15px auto;
    padding: 15px 20px 5px;
    position: relative;
}
.site-header .logo-link img {
    /* height: 100px;
    width: 164px; */
}
@media (max-width: 767px) {
	 .site-header .logo-link img {
	    height: 60px;
	    width: auto;
	}   
}
.splash-hero {
    background-image: url(../images/image-hero.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
}
.splash-row {
    margin: 30px auto 80px;
    position: relative;
    text-align: center;
    width: 70%;
}
.splash-row::before {
    background-image: url(../images/shape-marlin.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    display: inline-block;
    height: 42px;
    width: 119px;
}

@media (max-width: 992px) {
	.splash-row {
		width: 80%;
	}
}
@media (max-width: 575px) {
    .splash-hero {
        height: 60vh;
    }

	.splash-row {
		width: 100%;
		margin-top: 20px;
	}
}
@media (max-width: 1199px) {
	.splash-row {
		margin-top: 50px;
	}
}
.heading-title {
	margin: 0 0 20px;
	color: #121c4e;
	font-size: 1.5rem;
	line-height: 1.66rem;
	font-weight: 800;
}
.hero-title {
	font-size: 4rem;
	line-height: 4rem;
	font-weight: 800;
	margin: 0;
	text-shadow: #fff 0 0 25px;
}
.hero-title em, .hero-title.script {
    font-family: Allura,cursive;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
}
.mt10 {
	margin-top: 10px;
}
@media (max-width: 575px) {
	.heading-title {
		font-size: 1.25rem;
	}
	.hero-title {
		font-size: 2.5rem;
		line-height: 3.2rem;
	}
	.hero-title em, .hero-title.script {
	    font-size: 2.5rem;
	}
}

.image-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.image-square {
    flex-basis: 25%;
}

@media (max-width: 575px) {
    .image-square {
        flex-basis: 50%;
    }
}

.image-square img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

form {
	margin-bottom: 4rem;
    margin-top: 2rem;
}
label {
	color: #121c4e;
	cursor: text;
	font-size: 14px;
	font-weight: 700;
    line-height: 1;
	margin: 25px 20px;
	position: absolute;
	text-transform: uppercase;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
label.active {
	color: #efeee9;
	margin: 0;
	padding: 0 10px;
	-webkit-transform: translate(-8px,-20px);
	-ms-transform: translate(-8px,-20px);
	transform: translate(-8px,-20px);
	z-index: 10;
}
.field:not(:last-of-type) {
	margin-bottom: 30px;
}
.field-extra {
    display: none;
}
input,
textarea {
    font-size: 1rem;
    max-width: 50%;
	padding: 20px 15px;
	width: 100%;
}
@media (max-width: 575px) {
    input,
    textarea {
        max-width: 90%;
    }
}
button {
	background-color: #fafafb;
	color: #343840;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1rem;
	text-transform: uppercase;
	padding: 20px 60px;
}
button:hover, button:focus {
	background-color: rgba(250,250,251, 0.7);
}
.notification-alert {
    background-color: #29af29;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.25;
    padding: 20px 0;
}
.copyright {
    font-size: 12px;
    line-height: 1;
    padding-bottom: 20px;
    text-align: center;
}

.copyright a,
.copyright a:visited {
    color: #ffffff;
}
.wdc-badge {
    height: 20px;
    vertical-align: middle;
    width: 28px;
}
.g-recaptcha {
    display: inline-block;
    margin: 0 auto;
}