/* This stylesheet is RENDER-BLOCKING */
/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
PRIORITY
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	/*fonts*/
	font-size: 16px;
	--font-size-h1: 3.2rem;
	--font-size-h2: 2.25rem;
	--font-size-h3: 1.375rem;
	--font-size-h4: 1.125rem;
	--font-size-h5: 1rem;
	--font-body-size: 1.125rem;

	/******** colors **************/
	--color-body-text: #171717;
	/*black*/
	/*--color-heading: #bb8453;*/

	--color-heading: #171717;
	
	/*gold / brown hello*/

	--color-primary: #0086b3;
	/*blue hello/*/

	/*button color*/
	--color-button: #0086b3;

	/******** colors **************/


	--color-secondary: #02395f;
	/*mid dark green*/

	--color-light-bg: #0086b3;
	/*light green*/

	--color-medium-bg: #02395f;
	/*med/dark darl green*/

	--color-dark-bg: #02395f;
	/*darker green, footer*/

	--color-link: #008af8;
     /*	fb.twitter blue*/


	--color-black: #000;
	--color-pure-white: #fff;
	--color-special-bg: #c70037; /*red*/
	--color-border: #d0d0d0; /*gray */ 
	--color-gray: #eaebef;
	


	/*footer*/
	--footer-text-color: #fff;
	--footer-bottom-color: #fff;
	/*footer*/

	/*--font-family-body: "Roboto", serif;*/
	/*--font-family-body: "Archivo", serif;*/
	--font-family-body: "Hanken Grotesk", serif;
	--font-family-heading: "Montserrat", serif;
	--font-family-special: "Caveat", serif;

	--sides-size: 30px;
}

@media screen and (min-width: 768px) {
	/*TABLET*/
	:root {
		--font-body-size: 1.125rem;
	}
}

.padesktop {
	padding: 30px 0;
}

#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
	min-height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

main {
	padding: 30px 0;
	min-height: 450px;
	display: block;
	width: 100%;
	overflow: hidden;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.single-post.no-banner main {
	padding-top: 145px;
	padding-bottom: 0;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	display: block !important;
	line-height: 1.88;
	color: var(--color-body-text);
	font-size: var(--font-body-size);
	font-family: var(--font-family-body);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*:focus {
	outline: auto;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Hidden elements */
.hide {
	display: none !important;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin: 0 0 30px;
	color: var(--color-heading);
	font-weight: 700;
	font-family: var(--font-family-heading);
	line-height: 1.3;
}

h1,
.h1 {
	font-weight: 300;
	font-size: var(--font-size-h1);
}

h2,
.h2 {
	font-size: var(--font-size-h2);
}

h2:after {
	content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #000;
    left: .775rem;
    margin-top: .9375rem;
}

h2 strong {
	font-family: "Caveat", serif;
    color: var(--color-body-text);
    font-size: 53px;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--color-medium-bg);
}

h3,
.h3 {
	margin-bottom: 10px;
	font-size: var(--font-size-h3);
}

h4,
.h4 {
	font-size: var(--font-size-h4);
	color: var(--color-dark-bg);
}

h5,
h6,
.h5,
.h6 {
	font-weight: 700;
	font-size: var(--font-size-h5);
}

p {
	margin: 0 0 25px;
}

ul {
	list-style: none;
}

/* CORE > Links and Buttons */
a {
	/*color: #36c;*/
	color: var(--color-link);
	text-decoration: none;
}

a:hover,
a:focus {
	/*color: var(--color-secondary);*/
	text-decoration: underline;
}

.content a {
	font-weight: 700;
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a,
button,
.button,
.wp-element-button {
	transition: color 200ms ease-out, 
	background 200ms ease-out, 
	transform 60ms ease-in;
}

button,
.button,
.wp-element-button {
	
	color: var(--color-pure-white);
	font-weight: 700;
	width: 100%;
	max-width: 450px;

	font-family: var(--font-family-body);
	font-size: 1.063rem;
	line-height: 1.2;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 16px 35px;
	border-radius: 2.6em;
	text-align: center;
	display: inline-block;
	letter-spacing: 1px;
	background-color: var(--color-button);
	text-decoration: none;
}

button:active,
.button:active,
.wp-element-button:active {
	transform: translateY(1px);
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
	background-color: var(--color-secondary);
	color: var(--color-pure-white);
	text-decoration: none
}


.button.alt-btn {
	background: none;
border: 2px solid var(--color-primary);
color: var(--color-primary);

}

button.no-button,
.button.no-button {
	padding: 6px 0;
	letter-spacing: normal;
	background: none;
	font-size: var(--font-body-size);
	color: var(--color-primary);
	text-transform: none;
	position: relative;
}

button.no-button i,
.button.no-button i {
	color: var(--color-secondary);
}

button.no-button:after,
.button.no-button:after {
	left: 0;
	bottom: 0;
	display: block;
	width: 0;
	height: 4px;
	content: "";
	position: absolute;
	transition: width 200ms ease-out;
	background-color: var(--color-secondary);
}

button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
	color: var(--color-primary);
	text-decoration: none;
}

button.no-button:hover:after,
button.no-button:focus:after,
.button.no-button:hover:after,
.button.no-button:focus:after {
	width: 100%;
}

img {
	max-width: 100%;
}

/* CORE > Page Structure */
main {
	padding: 60px 0;
	min-height: 450px;
	display: block;
	width: 100%;
	overflow: hidden;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.no-banner main {
	padding-top: 145px;
}

.content.full-width {
	float: none;
}

.content img {
	max-width: 100%;
	height: auto;
}

.content section:not(:last-of-type) {
	margin-bottom: 30px;
}

.columns,
.column {
	padding: 0 var(--sides-size);
}

.row,
.row-wide,
.row-narrow {
	width: 100%;
	max-width: 1300px;
	margin-right: auto;
	margin-left: auto;
}

.row-narrow {
	max-width: 1024px;
}

.row-wide {
	max-width: 1599px;
}

.row::after {
	clear: both;
}

.row:not(.main-inner)::before,
.row:not(.main-inner)::after {
	display: table;
	content: " ";
	flex-basis: 0;
	order: 1;
}

.row.main-inner::before,
.row.main-inner::after {
	display: none;
}

@media screen and (min-width: 768px) {
	main {
		padding-bottom: 50px;
	}	

	.home main {
		margin-top: 85px;
	}

	.padesktop {
		padding: 50px 0;
	}

	.main-inner {
		display: flex;
	}

	.content.full-width {
		width: 100%;
		padding-right: var(--sides-size);
	}

	.content section:not(:last-of-type) {
		margin-bottom: 50px;
	}

	button,
	.button,
	.wp-element-button {
		width: auto;
	}

}

@media screen and (min-width: 1024px) {
		.home main {
		/*margin-top: 112px;*/
		/*margin-top: 80px;*/
		margin-top: 114px;
	}
}

.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.zero-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

img.responsive-img,
.responsive-img img {
	max-width: 100%;
	height: auto;
}

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.position-absolute,
.absolute {
	position: absolute;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.visually-hidden { 
	height: 1px !important;
	margin: -1px !important;
	border: none !important;
	clip: rect(0 0 0 0) !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.no-background {
	background: none !important;
}

.animate-in-view,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.uppercase {
	text-transform: uppercase;
}


.bold,
.font-bold {
	font-weight: 700;
}


@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}

	.single-post.no-banner main {
		padding-top: 105px;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/*******************
HEADER
********************/

.header {
	z-index: 9;
	position: fixed;
	top: 0;
	width: 100%;
	background-color: var(--color-pure-white);
	transition: background-color 200ms ease-out;
}

.header-search {
	opacity: 0;
}

body.scrolled .header {
	background-color: var(--color-pure-white);
     box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
}

.header > .row {
	height: 100%;
	max-width: unset;
}

.header a {
	text-decoration: none;
}

.header-desktop {
	display: none;
}

.header-logo {
	width: 188px;
	display: flex;
	align-items: center;
	padding: 8px 0;
}

.header-mobile-inner {
	display: flex;
	min-height: 70px;
	padding: 0 var(--sides-size);
}

.header-mobile-buttons {
	display: flex;
	margin-left: 4%;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
	display: flex;
	font-size: 1.5rem;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 45px;
	width: 45px;
	height: 45px;
}

.header-mobile-buttons a {
	display: none;
	color: var(--color-pure-white);
	background: var(--color-primary);
}

.header-mobile-buttons button {
	margin-left: 6px;
	background: var(--color-dark-bg);
	color: var(--color-pure-white);
	border: 1px solid;
}

.header-mobile-buttons button i {
	font-weight: 500;
}

.header-mobile-buttons strong {
	display: none;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 18px;
	font-size: 0.938rem;
	letter-spacing: 1px;
	font-weight: 800;
	height: 60px;
	padding: 0 13px;
	margin-left: 6px;
	text-transform: uppercase;
	color: var(--color-primary);
	background: var(--color-secondary);
}

.header-mobile-top {
	display: flex;
}

.header-mobile-top-phone,
.header-mobile-top-contact {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 9px;
}

.header-mobile-top-phone {
	font-weight: 800;
	font-size: 17px;
	color: var(--color-pure-white);
	background: var(--color-medium-bg);
}

.header-mobile-top-phone i {
	font-size: 75%;
	font-weight: 700;
}

.header-mobile-top-contact {
	font-size: 0.813rem;
	font-weight: 800;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	background: var(--color-light-bg);
}

.header-mobile-top-contact:focus,
.header-mobile-top-contact:hover {
	color: #fff;
}

.mega-menu {
	display: none;
}

.header-right {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-self: flex-end;
	transition: padding-bottom 200ms ease-out;
}

.header-right-top {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-top: 12px;
}

.header-right-top-contact {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: none;
	text-align: center;
	color: var(--color-pure-white);
	background-color: var(--color-primary);
	line-height: normal;
}

.scrolled .header-right-top-contact:hover,
.scrolled .header-right-top-contact:focus {
	background: #fff;
	color: var(--color-primary);
}

.header-right-top cite {
	font-style: normal;
}

.header-phone {
	color: #000;

	font-weight: 700;
	
	font-size: 1.4rem;
	margin-left: 20px;
	display: inline-flex;
	align-items: center;
}

.header-phone i {
	width: 30px;
	height: 30px;
	display: flex;
	margin-right: 2px;
	align-items: center;
	justify-content: center;
	color: #000;
}

.header-phone:hover,
.header-phone:focus {

}

.header-right-bottom {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-ms-align-items: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	justify-content: flex-end;
}

@media screen and (min-width: 480px) {
	.header-mobile-top-phone {
		font-size: 20px;
	}
}

.header-logo {max-width: 55px}
@media screen and (min-width: 768px) {
	.header-logo {
		max-width: 100px;
		padding: 28px 0;
		width: 100%;
	}

	.header-mobile-buttons a,
	.header-mobile-buttons button {
		height: 60px;
		width: 60px;
		max-width: 60px;
	}

	.header-mobile-buttons a,
	.header-mobile-buttons strong {
		display: flex;
	}

	.header-mobile-top {
		display: none;
	}
}

@media screen and (min-width: 1025px) {
	.header {
		background-color: var(--color-pure-white);
	}

	.header-mobile {
		display: none;
	}

	.header-desktop {
		display: block;
	}

	.header-logo {
		padding: 0;
	}

	.header-right {
		flex: 1;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}

	.header-inner {
		padding: 0 var(--sides-size);
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-align-items: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		height: 100%;
		position: relative;
	}

	.header-logo {
		/*width: 247px;*/
	}

	.header-logo img {
		padding: 0;
	}

	.header-right-top-contact {
		font-size: .9rem;
		padding: 0 25px;
		text-transform: uppercase;
	}

	body.scrolled .header {
	    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
	    -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
	    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
	}

}

@media screen and (min-width: 1281px) {
	.header-inner {
		padding-left: 45px;
		padding-right: 45px;
	}
}

@media screen and (min-width: 1441px) {
	.header-logo {
		width: 296px;
	}

	.header-inner {
		padding-left: 85px;
		padding-right: 85px;
	}
}

/********************************************
MENUS -
********************************************/
.main-navigation-menu {
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	font-size: 1rem;
	justify-content: space-between;
}

.main-navigation-menu li {
	display: block;
	position: relative;
	padding: 0;
}

.main-navigation-menu > li {
	margin-right: 30px;
}

.main-navigation-menu > li:last-of-type {
	margin-right: 0;
}

.main-navigation-menu > li:last-of-type > a {
	margin-right: 0;
	letter-spacing: .2px;
}

.main-navigation-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 206px;
	margin: 0;
	left: -15px;
}

.main-navigation-menu > a:hover + .mega-menu,
.main-navigation-menu > a:focus + .mega-menu,
.main-navigation-menu > li.active > .mega-menu,
.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideDown 200ms both;
	animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus:after,
.main-navigation-menu a:hover:after,
.main-navigation-menu li:hover > a:after {
	width: 100%;
}

.main-navigation-menu > li > a {
	position: relative;
	display: block;
	height: 100%;
	color: var(--color-body-text)
	line-height: 1;
	font-weight: 700;
	padding: 15px 0;
}

.main-navigation-menu > li > a:after {
	left: 0;
	width: 0;
	height: 4px;
	content: "";
	bottom: 0;
	display: block;
	position: absolute;
	transition: width 200ms ease-out;
	background: var(--color-medium-bg);
}

/* MENUS > Main Nav Dropdowns */
#desktop-navigation .sub-menu li {
	background: var(--color-primary);
	transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
	position: relative;
	cursor: pointer;
	color: var(--color-pure-white);
}

#desktop-navigation .sub-menu li a {
	color: inherit;
	font-size: 0.938rem;
	display: block;
	padding: 15px;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
}

.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
	color: var(--color-primary);
	background: var(--color-gray);
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
	position: absolute;
	left: 30px;
	top: 100%;
}

#desktop-navigation .sub-menu .menu-item-has-children ul li a {
	font-weight: 500;
	color: var(--color-primary);
	background: var(--color-pure-white);
}

#desktop-navigation .sub-menu .menu-item-has-children ul li a:hover,
#desktop-navigation .sub-menu .menu-item-has-children ul li a:focus {
	color: var(--color-gray);
	background: var(--color-primary);
}

#desktop-navigation .sub-menu .sub-menu .sub-menu a {
	background: var(--color-gray);
}

#desktop-navigation .sub-menu .menu-item-has-children:hover > ul,
.menu-item-has-children.active > .sub-menu {
	display: block;
	-webkit-animation: menuSlideRight 200ms both;
	animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
	display: none;
}

/*********************************
BANNER - Page-top image and title
*********************************/

.banner {
	height: 250px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: center;
	margin-top: 125px;
}

.banner::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	background: rgba(20, 23, 47, 0.5);
	pointer-events: none;
	/*background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);*/
	background: rgb(0 0 0 / 51%);
}

.banner img {
	position: relative;
	width: 100%;
}

.banner > .row {
	height: 100%;
}

.banner-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-wrap: wrap;
	height: 100%;
	float: none;
	align-items: center;
  	
  	display: flex;
    flex-flow: column;
    height: 100%;
    /*justify-content: space-around;*/

}

.banner-title {
	font-size: 2.125rem;
	font-weight: 700;
	text-align: center;
	color: var(--color-pure-white);
	margin-bottom: 0px;
	font-family: var(--font-family-heading);
	line-height: normal;
	
}

.banner-button {margin-top: 15px;}

@media screen and (min-width: 768px) {
	.banner {
		margin-top: 88px;
	}

	.banner-title {
		font-size: 3.125rem;
	}
}

@media screen and (min-width: 1025px) {
	.banner {
		height: 475px;
		margin-top: 0;
		padding-top: 115px;
	}

	.banner-title {
		/*max-width: 650px;*/
		margin-bottom: 0;
		text-align: left;
		line-height: 1.3;
	}

	.banner-inner {
		align-items: center;
		/*justify-content: flex-start;*/
	}

	.banner::after {
		left: 0;
		top: 0;
		width: 100%;
		height: 132px;
		content: "";
		display: block;
		position: absolute;
		background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	}

	.banner::before {
		top: 0;
		width: 100%;
		height: 100%;
		/*background: linear-gradient(to right, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0) 100%);*/
	}
}