/* General - Reset */

html {
	font-size: 18px;
	-webkit-text-size-adjust: 100%;
	transition: opacity .4s ease .4s;
	opacity: 1 !important;
}

body {
	position: relative;
	line-height: 2;
	padding: 0;
	margin: 0;
	font-family: var(--primary-font);
	max-width: 100%;
}

.cms-enabled body {
	padding-top: 0 !important;
}

.sub.side main {
	width: 70%;
}

.sub.side aside {
	width: 27%;
}

figure, fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

form *,form *:before,form *:after {
	box-sizing: border-box;
}

body:not(.cms-admin) main > .section header:empty {
	display: none;
}

body:not(.cms-admin) a > span {
	pointer-events: none;
}

p {
	padding: 0;
	margin: 0;
}

p + p {
	margin-top: 1rem;
}

.urgent-message p + p {
	margin-top: 0;
}

a {
	text-decoration: none;
	transition: color .4s ease 0s, text-shadow .4s ease;
}

a:hover {
	text-decoration: none;
}

a[href^=tel] {
	cursor: default;
}

a[href^=tel]:hover {
}

img {
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

body button, body input, body keygen, body textarea, body select {
	line-height: inherit;
	font-family: inherit;
	font-size: inherit;
}

/* End General - Reset */

/* Header Styles */

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	line-height: 1.25;
	font-weight: normal;
}

h1, h2 {
	font-size: 2.22em;
	font-weight: 300;
	margin: 0;
	line-height: 1.3;
	color: var(--primary-color);
}

.primary-bg h1, .primary-bg h2, .tertiary-bg h1, .tertiary-bg h2 {
	color: var(--light-color);
}

h2 {

}

h3, h1 + h2 {
	font-size: 1.167em;
	font-weight: 600;
	line-height: 1.4;
}

h4 {
	font-size: 1.33em;
}

h5 {
	font-size: 1.133em;
}

h6 {
	font-size: 1em;
}

h1 + h2, h2 + h3, h3 + h4, h4 + h5, h5 + h6, p + h2 {
	_margin-top: 1rem;
}

h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h1 + ul, h2 + ul, h3 + ul, h4 + ul, h5 + ul {
	margin-top: 1.5rem;
}

header:blank, header:empty, h2:empty, h3:empty, h4:empty {
	display: none;
	padding: 0;
}

/* End Header Styles */

/* General - CMS */

.cms-admin .flex > * {
	min-height: 25px;
	min-width: 25px;
	flex: 1 1 auto;
}

div.zone-editable > *, div.zone-editable {
	min-height: 15px;
	min-width: 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 li:before {
	content: none !important;
}

body.cms-layout .cms-zone ul.zone-tab {
	overflow: visible !important;
	column-count: auto !important;
	column-gap: 0 !important;
}

body:not(.cms-admin) .content:empty {
	display: none;
}

.cms-admin #HeaderZone {
	position: relative;
}

.cms-admin .ss-group h3 {
	text-align: left;
}

.cms-content-zone.static {
	position: static;
}

center h1 {
	margin-bottom: 1.5rem;
}

.landing-2018.sub-page main .two-columns-container > .two-thirds {
	width: 66.667%;
	flex: 0 1 66.667%;
	max-width: 66.667%;
}

/* End General - CMS */

/* Input Styles */

fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

fieldset .hide {
	display: none;
}

fieldset ul {
	display: block;
	padding-left: 0 !important;
}

fieldset li {
	position: relative;
	border: none;
}

fieldset label {
	display: block;
	text-align: left;
}

fieldset .input-text {
	position: relative;
}

fieldset .input-text input, fieldset .input-text textarea, fieldset .input-text select {
	display: block;
	width: 100%;
	font-size: 18px;
	font-family: inherit;
	font-weight: inherit;
	line-height: 1.3;
	border-radius: 0; /* For no border-radius, put 0. iPhones will add it if you don't */
	resize: none;
	outline: none;
	box-shadow: none;
	border: solid 2px transparent;
	transition: border-color .35s ease;
	padding: .98rem 1.056rem;
	height: 100%;
	color: #53616f;
	background-color: var(--light-color);
}

fieldset .input-text input {
}

fieldset .input-text select {
	-webkit-appearance: none;
	-moz-appearance: none;
}

fieldset .input-text textarea {
	min-height: 8em;
	line-height: inherit;
}

fieldset input:focus, fieldset textarea:focus, fieldset select:focus, fieldset .dropdown-label.visible {
}

fieldset ::-webkit-input-placeholder {
}

fieldset :-moz-placeholder {
	opacity: 1;
}

fieldset ::-moz-placeholder {
	opacity: 1;
}

fieldset ::-ms-input-placeholder {
}

fieldset .validation {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 2;
	font-size: .8em;
	opacity: 0;
	visibility: hidden;
	white-space: nowrap;
	transform: translateY(10%);
	transition: .25s;
	padding: .5em 1em;
	color: #F2F2F2;
	background-color: rgba(0,0,0,0.8);
}

fieldset .invalid.focused .validation, fieldset .invalid:hover .validation {
	opacity: 1;
}

fieldset li.invalid {
	box-shadow: 0 0 0 2px #FF070B;
}

fieldset .invalid .validation {
	transform: translate(0);
	visibility: visible;
}

fieldset .validation:before {
	content: '';
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	left: 1em;
	bottom: 100%;
	border-left: solid .5em transparent;
	border-right: solid .5em transparent;
	border-bottom: solid .5em rgba(0,0,0,0.8);
}

fieldset .input-text:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0.6rem;
	font-family: 'icomoon-ult';
	opacity: 0;
	line-height: 1.6;
	transform: translateY(-50%);
	transition: opacity .5s ease 0s;
	font-size: 0.8rem;
	width: 1.5em;
	height: 1.5em;
}

fieldset .invalid .input-text:after {
	content: url(/cms/svg/site/icon_close.36.FF070B.svg);
	opacity: 1;
}

fieldset .valid .input-text:after {
	content: url(/cms/svg/site/icon_check_alt.36.22C022.svg);
	opacity: 1;
}

fieldset .select .input-text:after {
	right: 2rem;
}

fieldset .select .input-text svg {
	right: 0.7rem;
	font-size: 1rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: var(--secondary-color);
	pointer-events: none;
}

select::-ms-expand {
	display: none;
}

/* End Input Styles */

/* Scroll Bars */

.ui-scroll {
	overflow: auto;
}

.ui-scroll.horizontal {
	overflow-x: auto;
	overflow-y: hidden;
}

.ui-scroll.vertical {
	overflow-x: hidden;
	overflow-y: auto;
}

.ui-scroll::-webkit-scrollbar {
	width: 12px;
	height: 12px;
	background: none;
	background-image: linear-gradient(to bottom,#deeaf2,#deeaf2);
	background-position: center;
	background-repeat: no-repeat;
}

.ui-scroll::-webkit-scrollbar-track {
	border-radius: 0;
}

.ui-scroll::-webkit-scrollbar-thumb {
	border: solid 0px transparent;
	background-clip: padding-box;
	border-radius: 0;
}

.ui-scroll::-webkit-scrollbar-button {
}

.ui-scroll::-webkit-scrollbar-button:vertical:decrement:start {
	background-image: url(/cms/svg/site/icon_chevron_up.36.00548b.svg);
	dipslay: block;
	height: 14px;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: var(--light-color);
}

.ui-scroll::-webkit-scrollbar-button:vertical:increment:end {
	background-image:url(/cms/svg/site/icon_chevron_down.36.00548b.svg);
	dipslay: block;
	height: 14px;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: var(--light-color);
}

.ui-scroll::-webkit-scrollbar-corner {
	background-color: transparent;
}

.ui-scroll-wrap .ui-scroll-thumb {
	position: absolute;
	margin: 2px;
	border-radius: 0;
	background-color: var(--primary-color);
}

.ui-scroll-wrap .ui-scroll-thumb.vertical {
	top: 0;
	right: 0;
	bottom: auto;
	left: auto;
	width: 8px;
	height: 100px;
	min-height: 8px;
}

.ui-scroll-wrap .ui-scroll-thumb.horizontal {
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	height: 8px;
	width: 100px;
	min-width: 8px;
}

.ui-scroll.horizontal .ui-scroll-thumb.vertical {
	display: none !important;
}

.ui-scroll.vertical .ui-scroll-thumb.horizontal {
	display: none !important;
}

/* End Scroll Bars */

/* Min Responsive */

@media screen and (min-width:433px) {
}

@media screen and (min-width:1513px) {
}

/* End Min Responsive */

/* Responsive - 1512px */

@media screen and (max-width: 1512px) {
	html {
		font-size: 1.25vw;
	}
}

/* End Responsive - 1512px */

/* Responsive - 1200px */

@media screen and (max-width: 1200px) {
	.landing-2018.sub-page main .two-columns-container > .two-thirds {
	    width: 100%;
	    flex: 0 1 100%;
	    max-width: 100%;
	}
}

/* End Responsive - 1200px */

/* Responsive - 1177px */

@media screen and (max-width: 1177px) {
	html {
		font-size: 1.6vw;
	}
}

/* End Responsive - 1177px */

/* Responsive - 916px */

@media screen and (max-width: 916px) {
	html {
		font-size: 2.05vw;
	}
}

/* End Responsive - 916px */

/* Responsive - 800px (Mobile) */

@media screen and (max-width: 800px) {
	body {
		overflow-x: hidden;
	}
}

/* End Responsive - 800px (Mobile) */

/* Responsive - 713px */

@media screen and (max-width:713px) {
	html {
		font-size: 2.524vw;
	}
}

/* End Responsive - 713px */

/* Responsive - 555px */

@media screen and (max-width:555px) {
	html {
		font-size: 3.243vw;
	}
}

/* End Responsive - 555px */

/* Responsive - 432px */

@media screen and (max-width:432px) {
	html {
		font-size: 4.166vw;
	}

	fieldset input, fieldset textarea, fieldset select {
		font-size: 15px;
	}
}

/* End Responsive - 432px */

/* Min and Max */

@media screen and (max-width:1177px) and (min-width:917px) {
}

/* End Min and Max */
