/* Color Tokens */
.primary {
	color: #2A6091; /* $primary */
}

.secondary {
	color: #A7AEAE; /* $secondary */
}

.tertiary {
	color: #134070; /* $tertiary */
}

.quaternary {
	color: #2A6091; /* $quaternary */
}

.light {
	color: #FFFFFF; /* $light */
}

.off {
	color: #ECF0F1; /* $off */
}

.dark {
	color: #313131; /* $dark */
}

.primary-bg {
	background-color: #2A6091; /* $primary */
}

.secondary-bg {
	background-color: #A7AEAE; /* $secondary */
}

.tertiary-bg {
	background-color: #134070; /* $tertiary */
}

.quaternary-bg {
	background-color: #2A6091; /* $quaternary */
}

.light-bg {
	background-color: #FFFFFF; /* $light */
}

.off-bg {
	background-color: #ECF0F1; /* $off */
}

.dark-bg {
	background-color: #313131; /* $dark */
}
/* End Color Tokens */

/* Fonts */
.font-1 {
	font-family: 'Nunito Sans', sans-serif; /* @mainfont */
}

.font-2 {
	font-family: 'Cabin', sans-serif; /* @accentfont */
}
/* End Fonts */

/* General Reset */
fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
/* End General Reset */

/* Header Styles */
h1, h2, h3, h4, .section-header>strong:first-child {
	margin: 0;
	line-height: 1.1;
	font-family: 'Cabin', sans-serif; /* @accentfont */
	font-weight: 600;
	text-transform: uppercase;
}

.content-panel h1 {
	margin-bottom: 1rem;
}

.content-panel h2, .content-panel h3, .content-panel h4 {
}

h1, h2, .content-panel h2.look-like-h1, .section-header>strong:first-child {
	font-size: 2.5em;
	color: #134070; /* $tertiary */
	letter-spacing: 0.1em;
	max-width: 19em;
}

.light h1, .light h2 {
	color: #FFFFFF; /* $light */
}

.content-panel h2, h3 {
	font-size: 1.5em;
	color: #A7AEAE; /* $secondary */
}

h3 {
	color: #313131; /* $dark */
	font-size: 1.35em;
	margin: 0;
	line-height: 1.2em;
}

h4 {
	letter-spacing: .15em;
	margin: 1em 0 1.5em;
	font-size: 1.2em;
	line-height: 1.2em;
	font-family: 'Nunito Sans', sans-serif;
}

h4, h4 a[href^=tel], h4 a[href^=tel]:hover {
	color: #313131; /* $dark */
}

header.bottom-space {
	margin-bottom: 2em;
}
/* End Header Styles */

/* General Site Styles */
html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Nunito Sans', sans-serif; /* @mainfont */
	background-color: #FFFFFF; /* $light */
	line-height: 2;
	transition: padding-top .2s ease 0s;
	color: #313131; /* $dark */
	position: relative;
}

body.cms-admin {
	background-color: white;
}

form *,form *:before,form *:after {
	box-sizing: border-box;
}

body:not(.cms-admin) main > .section header:empty {
	display: none;
}

a {
	text-decoration: none;
	color: #2082DC; /* adjust($primary,20%,44%,0%) */
	transition: color .25s ease 0s;
}

a:hover {
	text-decoration: none;
	color: #134070; /* $tertiary */
}

a[href^=tel] {
	cursor: default;
	display: inline-block;
}

img {
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input, select, textarea, button {
	font-family: inherit;
	font-size: inherit;
	line-height: 1em;
}

.content-panel ul, .content-format ul {
	list-style: disc;
	margin: 1em 0;
	padding-left: 2.5em;
	list-style-position: inside;
}

.content-panel li > ul, .content-format li > ul {
	margin: 0;
}

html.no-canvas .main {
	width: 1150px;
}

div.zone-editable > * {
	min-height: 15px;
}

body.cms-layout .cms-zone ul.zone-tab li {
	position: relative !important;
	opacity: 1 !important;
	float: none !important;
	overflow: visible !important;
}

body.cms-layout .cms-zone ul.zone-tab {
	overflow: visible !important;
	-webkit-column-count: auto !important;
	-moz-column-count: auto !important;
	column-count: auto !important;
	-webkit-column-gap: 0 !important;
	-moz-column-gap: 0 !important;
	column-gap: 0 !important;
}

body:not(.cms-admin) .content-panel:empty {
	display: none;
}

.sidebox {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}

.sidebox #MainZone {
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 0 5% 0 0;
	width: 65%;
}

.sidebox #SideZone {
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 30%;
}

body > iframe {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.privacy-policy.main h2 {
	font-size: 1.5em;
}

.cms-admin div.ui-dialog div.jl-items {
	overflow: scroll;
}

html body div.ui-dialog ul.jl-list li:after {
	color: #6689A9;
	display: initial;
}

em {
	font-style: normal;
}

input, textarea, keygen, select, button {
	font-family: inherit;
}
/* End General Site Styles */

/* Contact Form Styles */
.input-text select {
	background-color: transparent;
	width: 100%;
	font-size: 1em;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.input-text select option {
	color: #070707;
}

.select:after {
	content: '\e969';
	font-family: 'icomoon-ult';
	color: #2A6091; /* $primary */
	position: absolute;
	top: 50%;
	right: .5em;
	pointer-events: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-weight: 700;
}

.input-text, .input-text input, .input-text textarea, .input-text select {
	font-size: 18px;
	overflow: hidden;
	height: 100%;
}

.input-text select::-ms-expand {
	display: none;
}

fieldset li:not(:last-child) {
	margin-bottom: .5rem;
}

fieldset .validation {
	position: absolute;
	left: 0;
	padding: .5em 1em;
	background-color: rgba(0,0,0,0.8);
	top: 100%;
	z-index: 2;
	color: #F2F2F2;
	font-size: .8em;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(10%);
	-ms-transform: translateY(10%);
	transform: translateY(10%);
	transition: .25s;
	white-space: nowrap;
	pointer-events: none;
}

fieldset .invalid .validation {
	-webkit-transform: translate(0);
	-ms-transform: translate(0);
	transform: translate(0);
	visibility: visible;
}

fieldset .invalid.focused .validation, fieldset .invalid:hover .validation {
	opacity: 1;
}

fieldset .invalid {
	box-shadow: 0 0 0em 1px #FF070B;
}

fieldset .validation:before {
	content: '';
	display: block;
	position: absolute;
	height: 0;
	width: 0;
	border-left: solid .5em transparent;
	border-right: solid .5em transparent;
	border-bottom: solid .5em rgba(0,0,0,0.8);
	bottom: 100%;
	left: 1em;
}

fieldset .input-text:after {
	font-family: 'icomoon-ult';
	display: block;
	position: absolute;
	top: 50%;
	right: 1.85em;
	opacity: 0;
	transition: opacity .5s ease 0s;
	line-height: 1.6;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

fieldset .invalid .input-text:after {
	opacity: 1;
	content: '\e747';
	color: #FF070B;
}

fieldset .valid .input-text:after {
	content: '\e7bd'; /* Valid Icon */
	color: #22C022;
	opacity: 1;
}

fieldset li.message .input-text:after {
	top: .5em;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

fieldset .input-text input, fieldset .input-text textarea, fieldset .input-text select {
	display: block;
	width: 100%;
	color: #2C3E50;
	padding: 0.7em .5em;
	border-radius: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: 1.2em;
	resize: none;
	outline: none;
	background-color: transparent;
	transition: border-color .35s ease;
	border: none;
	border-bottom: solid 1px #E2E2E2;
	height: 100%;
}
/* End Contact Form Styles */

/* Responsive */
@media screen and (min-width:451px) {
}

@media screen and (min-width:801px) {
}

@media screen and (min-width:1151px) {
}

@media screen and (min-width:1501px) {
}

@media screen and (max-width:1700px) {
}

@media screen and (max-width:1500px) {
	.full {
		font-size: 1.1vw;
	}

	html {
		font-size: 1.25vw;
	}

	h1, h2, .content-panel h2.look-like-h1, .section-header>strong:first-child {
		font-size: 2.2em;
	}
}

@media screen and (max-width:1150px) {
	html {
		font-size: 1.56vw;
	}

	.full {
		font-size: 1em;
	}
}

@media screen and (max-width:800px) {
	html {
		font-size: 2.25vw;
	}

	.sidebox {
		display: block;
	}

	.sidebox #MainZone {
		padding: 0 3%;
		width: 100%;
	}

	.sidebox #SideZone {
		margin: 0;
		width: 100%;
	}

	header.bottom-space {
		margin-bottom: 1em;
	}
}

@media screen and (max-width:550px) {
	html {
		font-size: 3vw;
	}

	h1, h2, .content-panel h2.look-like-h1, .section-header>strong:first-child {
		font-size: 2em;
	}

	h4 {
		margin: 1em 0;
		font-size: 1.1em;
	}

	header.bottom-space {
	}

	.input-text {
		font-size: 16px;
	}
}

@media screen and (max-width:450px) {
	html {
		font-size: 3.65vw;
	}
}
/* End Responsive */

h1:after, .content-half h2:after {
	content: '';
	position: relative;
	display: block;
	width: 4.5rem;
	height: 3px;
	background-color: #A7AEAE;
	margin: 2.25rem 0;
}
