/*--------------------------------------------------------------*\
*------------------------ GLOBAL STYLING ------------------------*
\*--------------------------------------------------------------*/

html {
	background-color: #f6f6f6;
}




/*--------------------------------------------------------------*\
*------------------------- BODY STYLING -------------------------*
\*--------------------------------------------------------------*/
body {
	font-family: proxima-nova, sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #FFF;
	color: #465462;
	font-size: 18px;
	max-width: 1920px;
	line-height: 1.4em;
	display: block;
	margin: 0 auto;
}
.content-area {
	padding: 2em;
}
.container {
	max-width: 1440px; /* Default 1140px */
}
.content-area .container {
	padding: 0 !important;
}



/*--------------------------------------------------------------*\
*------------------------ HEADER STYLING ------------------------*
\*--------------------------------------------------------------*/

/*--- Top Bar ---*/

#header-bottom-bar {
    display: flex;
	align-items: center;
    max-width: 1920px;
    margin: 0 auto;
	padding: 0.33em 2em 0.25em 2em;
    background-color: #063c76;
	position: relative;
}
	#header-bottom-bar .container {
	    padding: 0;
	}
	#header-bottom-bar p {
	  	margin-bottom: 0;
	  	font-size: 1em;
	    font-weight: 600;
	}
	.top-bar-contact {
	  	display: flex;
	  	align-items: center;;
	  	padding: 10px 0;
	    color: #fff;
	}
	.top-bar-contact p {
		 color: #fff;
	}
	.top-bar-contact a {
	    color: #fff;
	}
	.social-icons {
	    display: flex;
	    justify-content: flex-end;
	}
	.social-icons img {
	    width: 20px;
	    position: relative;
	    top: 0px;
	    margin-left: .5em;
	}


/*--- Header ---*/

#header {
	background-color: #0150a6;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
	max-height: 120px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2em;
    position: relative;
    z-index: 100;
    width: 100%;
    transition: background-color .5s ease-in-out;
}
	#header .container {
	    padding: 0;
	    max-width: 1440px;
	}
.sticky {
  position: fixed !important;
  background-color: blue !important;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 102px;
}
.navbar {
	padding: 1em 0 !important;
}

/*--------------------------------------------------------------*\
*----------------------- BRANDING STYLING -----------------------*
\*--------------------------------------------------------------*/
.logo {
	max-width: 250px;
	padding: 1em 0;
	position: relative;
	z-index: 999999;
}



/*--------------------------------------------------------------*\
*------------------------- MENU STYLING -------------------------*
\*--------------------------------------------------------------*/

/*--- Edit menu styling using menu.css ---*/



/*--------------------------------------------------------------*\
*------------------------ FOOTER STYLING ------------------------*
\*--------------------------------------------------------------*/
.footer {
	margin: 0 auto;
	background-color: #063c76;
	padding-top: 3em;
	color: #fff;
	font-size: 1em;
	font-weight: 400;
	max-width: 1920px;
	margin: 0 auto;
	text-align: unset;
	font-family: proxima-nova, sans-serif;
}
	.footer a {
		color: #fff;
		font-family: proxima-nova, sans-serif;
		font-weight: 400;
	}
	.footer a:hover {
		color: #fff;
		font-family: proxima-nova, sans-serif;
	}
	.footer p {
		color: #fff;
		font-family: proxima-nova, sans-serif;
		font-weight: 600;
	}
	.footer span {
		display: inline;
	}
	.footer strong {
		color: #fff;
	}

.copyright.row {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	font-size: 1em;
}
	.copyright.row p span {
		font-size: 0.9em !important;
	}
	.copyright-name-date,
	.copyright-address,
	.copyright-phone {
		display: inline-block;
	}
	.copyright-name-date:after,
	.copyright-address:after {
		content: '•';
		display: inline-block;
		padding: 0 10px;
	}

.print-footer {
	display: none;
}


/*--------------------------------------------------------------*\
*------------------------- FONT STYLING -------------------------*
\*--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-family: utopia-std, serif;
	font-weight: 900;
	font-style: normal;
	color: #063c76;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}
	h1 {
		font-size: 2.4em;
	}
	h2 {
		font-size: 2em;
	}
	h3 {
		font-size: 1.6em;
	}
	h4 {
		font-size: 1.4em;
	}
	h5 {
		font-size: 1.2em;
	}
	h6 {
		font-size: 1em;
	}

p {
	display: block;
	font-family: inherit;
	font-weight: 400;
	letter-spacing: .01em;
	color: inherit;
	margin-bottom: 1em;
}

strong {
	font-weight: 600;
	color: #555555;
}

b {
	font-weight: 900;
}

em {
	color: #465462;
}

i {

}

a {
	font-weight: 600;
	text-decoration: none;
	color: #0075dd;
}
a:hover {
	text-decoration: none;
}
a:not([href]):not([tabindex]) {
	color: #fff;
}
a:not([href]):not([tabindex]):hover {
	color: #f8ad3a;
}
ul {
	margin-top: 0.5em;
}
	ul li {
		font-size: 1em;
		list-style: disc;
		color: #465462;
		margin-bottom: .5em;
	}
	ul li::marker {
		color: #465462;
	}

ol {
	margin-top: 0.5em;
	padding-left: 20px;
}
	ol li {
		font-size: 1em;
		color: #465462;
		margin-bottom: .5em;
	}
	ol li::marker {
		font-weight: 900;
		color: #465462;
	}

a.read-more {
	color: var(--blue);
}



/*--------------------------------------------------------------*\
*------------------------ IMAGE STYLING -------------------------*
\*--------------------------------------------------------------*/
.content-area img {
	margin-bottom: 1em;
}



/*--------------------------------------------------------------*\
*---------------------- RESPONSIVE STYLING ----------------------*
\*--------------------------------------------------------------*/
@media only screen and (max-width: 1400px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {
	.logo {
		max-width: 200px;
		padding: 1em 0;
	}
}

@media only screen and (max-width: 991px) {
	.content-area {
		padding: 2em 1em;
	}
	h1 {
		font-size: 2.4em;
	}
	h2 {
		font-size: 2em;
	}
	h3 {
		font-size: 1.6em;
	}
	h4 {
		font-size: 1.2em;
	}
	h5 {
		font-size: 1em;
	}
	h6 {
		font-size: .8em;
	}
	.copyright-name-date,
	.copyright-address,
	.copyright-phone {
		display: block;
		font-size: 0.8em;
	}
	.copyright-name-date:after,
	.copyright-address:after {
		display: none;
	}
	#header {
    	padding: 0;
    }
	.navbar {
		padding: 1em 2em !important;
	}
	#header-bottom-bar p {
		margin-bottom: 0;
		font-size: .75em;
	}
	.bottom-bar-contact {
		justify-content: center;
	}

}

@media only screen and (max-width: 767px) {
	.home-board-types h1,
	.home-board-types h2,
	.home-board-types h3,
	.home-board-types h4,
	.home-board-types h5,
	.home-board-types h6 {
		white-space: unset;
	}
	.top-bar-contact {
		width: unset;
		text-align: center;
		padding-top: 10px;
    }
    .social-icons {
		justify-content: center;
		margin: 5px 0 0;
    }
	.header {
		padding: 0 1em;
	}
	.logo {
		max-width: 250px;
	}
	.footer span {
		display: block;
	}
	.footer span:last-child {
		margin-top: 1em;
	}
	.navbar {
		padding: 0 1em !important;
		display: flex;
		height: 70px;
	}
	#header-bottom-bar {
		padding: .5em 1em;
	}
}



/*--------------------------------------------------------------*\
*------------------------ PRINT STYLING -------------------------*
\*--------------------------------------------------------------*/
@media print {
	
}


/*--------------------------------------------------------------*\
*------------------------- MISC STYLING -------------------------*
\*--------------------------------------------------------------*/
hr {
	margin: 2em 0;
	background-color: #dddddd;
}

::selection {
	background-color: #ffc874e6;
	color: #465462;
}
