/* Generals */

html {
	font-size: 0.9375vw;
	-webkit-text-size-adjust: 100%;
	position: relative;
}

body {
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	line-height: 1.588;
	font-family: var(--primary-font);
	font-weight: 300;
	color: rgb(var(--dark));
	background-color: rgb(var(--white));
}

main {
	display: block;
	position: relative;
}

section, 
.sub-zone {
	position: relative;
	width: 100%;
	padding: var(--vertical-spacing) var(--horizontal-spacing);
}

.home main > section {
	padding-top: calc(var(--vertical-spacing) * 1.25);
	padding-bottom: calc(var(--vertical-spacing) * 1.25);
}

aside .dark-bg {
	padding: calc(var(--vertical-spacing) * 0.25) var(--horizontal-spacing);
	box-shadow: 0 0.722em 0.889em rgba(var(--black), 0.1);
}

aside section:not(.dark-bg) {
	padding: 0;
}

a {
	color: rgb(var(--blue));
	transition: color 0.3s ease 0s;
	text-decoration: none;
}

a:hover, a:focus {
	color: rgb(var(--red));
}

a[href^=tel] {
	cursor: default;
}

.anchor-link {
	position: absolute;
	top: 0;
	left: 0;
}

img, video {
	display: block;
	max-width: 100%;
}

img[style*="background-image"] {
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

img[style*="background-image"][style*=".png"] {
	background-size: contain;
}

picture img[src*=".jpg"] {
	object-fit: cover;
}

ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

p, dl, dt, dd {
	margin: 0;
}

p, dl, dt, dd, fieldset, figure, figcaption, address, picture, blockquote, time, svg {
	margin: 0;
	padding: 0;
	display: block;
	border: none;
	font-style: normal;
	text-align: inherit;
}

button {
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    color: inherit;
    background-color: transparent;
}

svg:not([data-use]) {
    height: 1em;
}

svg use {
    opacity: 0;
}

svg * {
    pointer-events: none;
}

svg use:empty {
    display:none;
}

.ninja {
	visibility: hidden !important;
}

.el-panel {
	display: none;
	visibility: hidden;
}

.active.el-panel {
	display: block;
	visibility: visible;
}

.bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.bg-img img {
	position: relative;
	width: 100%;
	height: 100%;
}

.rel {
	position: relative;
}

.ui-scroll {
	overflow: auto;
}

.ui-scroll::-webkit-scrollbar {
	width: 4px;
    border-radius: 5em;
	background-color: rgb(var(--grey));
}

.ui-scroll::-webkit-scrollbar-thumb {
    border: none;
    border-radius: 5em;
    background-color: rgb(var(--blue));
}

.ot-floating-button__front svg,
.ot-floating-button__open svg,
.ot-floating-button__close svg {
	margin: 0 auto;
}

/* Generals */

/* Site Structure */

aside > * + * {
	margin-top: calc(var(--vertical-spacing) * 0.2);
}

.thin, .main, .wide {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.thin {
	max-width: var(--thin-width);
}

.main {
	max-width: var(--main-width);
}

.wide {
	max-width: var(--wide-width);
}

.half {
	width: 50%;
}

[class*='spaced'] > .half {
	max-width: calc(50% - (var(--general-spacing) / 2));
}

.third {
	width: 33.333%;
}

[class*='spaced'] > .third {
	max-width: calc(33.333% - (var(--general-spacing) / 3 * 2));
}

.two-thirds {
	width: 66.667%;
}

[class*='spaced'] > .two-thirds {
	max-width: calc(66.667% - (var(--general-spacing) / 3));
}

.fourth {
	width: 25%;
}

[class*='spaced'] > .fourth {
	max-width: calc(25% - (var(--general-spacing) / 4 * 3));
}

.three-fourths {
	width: 75%;
}

[class*='spaced'] > .three-fourths {
	max-width: calc(75% - (var(--general-spacing) / 4));
}

.fifth {
	width: 20%;
}

[class*='spaced'] > .fifth {
	max-width: calc(20% - (var(--general-spacing) / 5 * 4));
}

.two-fifths {
	width: 40%;
}

[class*='spaced'] > .two-fifths {
	max-width: calc(40% - (var(--general-spacing) / 5 * 3));
}

.three-fifths {
	width: 60%;
}

[class*='spaced'] > .three-fifths {
	max-width: calc(60% - (var(--general-spacing) / 5 * 2));
}

.four-fifths {
	width: 80%;
}

[class*='spaced'] > .four-fifths {
	max-width: calc(80% - (var(--general-spacing) / 5));
}

.sixth {
	width: 16.66%;
}

[class*='spaced'] > .sixth {
	max-width: calc(16.66% - (var(--general-spacing) / 6 * 5));
}

.five-sixths {
	width: 83.333%;
}

[class*='spaced'] > .five-sixths {
	max-width: calc(83.333% - (var(--general-spacing) / 6));
}

.full {
	width: 100%;
}

/* End Site Structure */

/* Panel Properties */

.text-center {
	text-align: center;
}

.light-bg + .light-bg,
.light-bg + form .light-bg,
.dark-bg + .dark-bg,
.dark-bg + form .dark-bg {
	padding-top: 0;
}

.light-bg {}

.dark-bg {
	color: rgb(var(--white));
	background-color: rgb(var(--blue));
}

.dark-bg a:not([class*='btn']) {
	color: inherit;
}

.dark-bg a:not([class*='btn']):hover, 
.dark-bg a:not([class*='btn']):focus {
	color: rgb(var(--sky-blue));
}

/* Panel Properties */

/* Headers Titles */

section header {
	position: relative;
	margin-bottom: calc(var(--vertical-spacing) * 0.3);
}

aside section header {
	margin-bottom: calc(var(--vertical-spacing) * 0.15);
}

section header:last-child, 
[class*="nlf"]:not([class*="-column"]) > header:not(.full) {
	margin-bottom: 0;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child {
	margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child {
	margin-bottom: 0;
}

h1, h2, h3, h4, h5 {
	font-family: inherit;
	font-weight: inherit;
	color: rgb(var(--dark-blue));
	line-height: 1.333;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5 {
	color: inherit;
}

h1, 
header > h2:first-child, 
.content > h2:first-child {
	font-size: 3.056rem;
	font-weight: 900;
	line-height: 1;
}

h1 small, 
header > h2:first-child small {
	display: block;
	font-weight: 700;
	line-height: 1.333;
	letter-spacing: 0.006em;
	font-size: 0.944rem;
	color: rgb(var(--dark));
}

h2, 
aside header > h2:first-child,
header > h2:first-child + h3, 
.content > h2:first-child + h3 {
	font-size: 1.667rem;
}

h3 {
	font-size: 1.333rem;
}

h4 {
	font-size: 1.167rem;
	color: inherit;
}

h5 {
	font-size: 1rem;
	color: inherit;
}

header p {
	font-size: 0.944rem;
}

header:not([class*='nlf']) > p {
	margin-top: 1.444rem;
}

/* End Headers Titles */

/* Content Styles [General] */

.content {
	position: relative;
}

.content > *:first-child {
	margin-top: 0;
}

.content > *:last-child {
	margin-bottom: 0;
}

.content p {
	margin: 1.444rem 0;
	font-size: 0.944rem;
}

.content ul, .content ol {
	margin: 1.444rem 0;
	padding-left: 2.5em;
}

.content ul {
	list-style: disc;
}

.content ol {
	list-style: decimal;
}

.content ul ul, .content ul ol, .content ol ol, .content ol ul {
	margin: 0;
}

.content a:not([class*='btn']) {
	text-decoration: underline;
}

/* End Content Styles [General] */

/* Content Images */

.media-right,
.media-left {
	max-width: 50%;
}

.content-images {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.content-images > * {
	display: block;
	margin: 0.25em;
	width: calc(33.333% - 0.5em);
}

.content-images > * img {
	width: 100%;
}

/* Content Images */

/* Button Styles */

.btn {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1;
	border-radius: 0.278em;
	color: rgb(var(--white));
	background-color: rgb(var(--red));
	padding: 1.25em 2.111em;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.btn:hover, a:hover .btn, 
.btn:focus, a:focus .btn {
	background-color: rgb(var(--light-blue));
	color: rgb(var(--white));
}

.btn.v2 {
	color: rgb(var(--dark-blue));
	box-shadow: 0 0 0 4px currentColor inset;
	background-color: transparent;
}

.btn.v2:hover, a:hover .btn.v2, 
.btn.v2:focus, a:focus .btn.v2 {
	color: rgb(var(--white));
	background-color: rgb(var(--red));
	box-shadow: none;
}

.btn.v3 {
	color: rgb(var(--white));
	box-shadow: 0 0 0 4px currentColor inset;
	background-color: transparent;
}

.btn.v3:hover, a:hover .btn.v3, 
.btn.v3:focus, a:focus .btn.v3 {
	background-color: rgb(var(--light-blue));
}

.btn svg {
	flex: 0 0 auto;
	margin-left: 1em;
}

.simple-btn {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1;
	color: rgb(var(--blue));
	border-bottom: solid 3px;
	font-size: 1rem;
	font-weight: 900;
	text-transform: uppercase;
	transition: color 0.35s ease, opacity 0.35s ease;
}

.simple-btn:hover, a:hover .simple-btn, 
.simple-btn:focus, a:focus .simple-btn {
	color: rgb(var(--red));
}

.simple-btn.v2 {
	color: rgb(var(--white));
}

.simple-btn.v2:hover, a:hover .simple-btn.v2, 
.simple-btn.v2:focus, a:focus .simple-btn.v2 {
	opacity: 0.75;
}

.btn-list {
	display: flex;
	flex-wrap: wrap;
	margin: -0.389rem;
}

.text-center .btn-list {
	justify-content: center;
}

.btn-list li {
	margin: 0.389rem;
	display: flex;
}

/* End Button Styles */

/* Scrolling Lists */

[data-role='container'] {
	position: relative;
	overflow: hidden;
}

[data-role='list'] {
	transition: transform 0.5s ease;
	display: flex;
}

[data-role='item'] {
	flex: 0 0 auto;
}

/* End Scrolling Lists */

/* Scrolling List Nav */

.scroll-nav {
	margin-top: 2.5rem;
	font-size: 0.944em;
	line-height: 1.222;
}

.start.end .scroll-nav,
.tabbing .scroll-nav {
	display: none;
	visibility: hidden;
}

[data-action='Prev'],
[data-action='Next'] {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	padding: 0.25em;
	transition: color 0.35s ease, opacity 0.35s ease;
}

.start [data-action='Prev'],
.end [data-action='Next'] {
	opacity: 0.3;
	pointer-events: none;
}

[data-action='Prev'] {
	margin-right: 1em;
}

[data-action='Next'] {
	margin-left: 1em;
}

[data-action='Prev'] svg,
[data-action='Next'] svg {
	flex: 0 0 auto;
	color: rgb(var(--blue));
	transition: color 0.35s ease;
}

[data-action='Prev']:hover svg,
[data-action='Prev']:focus svg,
[data-action='Next']:hover svg,
[data-action='Next']:focus svg {
	color: rgb(var(--red));
}

[data-action='Prev'] svg {
	margin-right: 0.5em;
}

[data-action='Next'] svg {
	margin-left: 0.5em;
}

/* Scrolling List Nav */

/* Paging */

.paging {
	margin-top: 2.5rem;
	font-size: 0.944em;
	line-height: 1.222;
}

.paging a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.paging .disable {
	opacity: 0.3;
	pointer-events: none;
}

.paging [href*='Start'] {
	margin-right: auto;
}

.paging [href*='Prev'] {
	margin-right: 1em;
}

.paging [href*='Next'] {
	margin-left: 1em;
}

.paging [href*='End'] {
	margin-left: auto;
}

.paging input {
	width: 0.75em;
	border: none;
	box-shadow: none;
	color: inherit;
	background-color: transparent;
	padding: 0;
	margin: 0 0.15em 0 0.2em;
}

/* Paging */

/* Map */

.map {
	position: relative;
	background-color: rgb(var(--light));
}

.imap {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

/* End Map */

/* Popup */

.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
	text-align: left;
	width: calc( 100% - (var(--horizontal-spacing) * 2) );
	max-width: 49rem;
	padding: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.open .popup, 
.active.popup {
	opacity: 1;
	visibility: visible;
}

.popup:before {
	content: '';
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(var(--black), 0.8);
	z-index: -1;
}

.popup:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgb(var(--white));
	box-shadow: 0 0.5em 1.5em rgba(var(--black), 0.25);
	z-index: -1;
}

.popup > svg:first-child {
	position: absolute;
	bottom: 100%;
	right: 0;
	margin-bottom: 0.25em;
	font-size: 1.333em;
	cursor: pointer;
	color: rgb(var(--white));
	transition: color 0.3s ease;
}

.popup > svg:first-child:hover, 
.popup > svg:first-child:focus {
	color: rgb(var(--light-blue));
}

.popup .ui-scroll {
	padding-right: 0.5rem;
	max-height: calc(100vh - 20rem);
}

.popup video, 
.popup figure {
	margin: -2rem;
}

.popup video {
	max-width: none;
	width: calc(100% + 4rem);
}

.popup figure {
	height: 0;
	padding-bottom: calc(56.25% + 2.5rem);
}

.popup iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

/* Popup */

/* 1921px Responsive */

@media screen and (min-width:1921px) {
	html {
		/* Font size for 1921px up to 4k. Goes from 18px to 22px */
		font-size: calc(18px + (22 - 18) * ((100vw - 1921px) / (3840 - 1921)));
		overflow-x: hidden;
	}
	
	body,
	.masthead {
		max-width: 105em;
		margin: 0 auto;
	}
}

/* End 1921px Responsive */

/* Responsive [1440px] */

@media screen and (max-width: 1440px) {
	html {
		font-size: 1.0408vw;
	}
}

/* End Responsive [1440px] */

/* Responsive [1200px] */

@media screen and (max-width: 1200px) {
	html {
		font-size: 1.24875vw;
	}
}

/* End Responsive [1200px] */

/* Responsive [1000px] */

@media screen and (max-width: 1000px) {
	html {
		font-size: 1.7vw;
	}
	
	.menu-open main, 
	.menu-open footer {
	    display: none;
	}
	
	section, 
	.sub-zone, 
	.home main > section {
		padding-top: calc(var(--vertical-spacing) * 0.75);
		padding-bottom: calc(var(--vertical-spacing) * 0.75);
	}
	
	.two-col[class*='nlf'] > * + *, 
	.two-col > [class*='nlf'] > * + * {
		margin-top: calc(var(--vertical-spacing) * 0.75);
	}
	
	h1, 
	header > h2:first-child, 
	.content > h2:first-child {
		font-size: 2.556rem;
	}
}

/* End Responsive [1000px] */

/* Responsive [800px] */

@media screen and (max-width: 800px) {
	html {
		font-size: 2.123vw;
	}
	
}

/* End Responsive [800px] */

/* Responsive [650px] */

@media screen and (max-width: 650px) {
	html {
		font-size: 2.47vw;
	}
	
	.media-right,
	.media-left {
		width: 100%;
		max-width: 100%;
	}
}

/* End Responsive [650px] */

/* Responsive [550px] */

@media screen and (max-width: 550px) {
	html {
		font-size: 3.7143vw;
	}
	
	section, 
	.sub-zone, 
	.home main > section {
		padding: calc(var(--vertical-spacing) * 0.5) calc(var(--horizontal-spacing) * 0.5);
	}
	
	.two-col[class*='nlf'] > * + *, 
	.two-col > [class*='nlf'] > * + * {
		margin-top: calc(var(--vertical-spacing) * 0.5);
	}
	
	section header {
		margin-bottom: calc(var(--vertical-spacing) * 0.15);
	}
	
	h1, 
	header > h2:first-child, 
	.content > h2:first-child {
	    font-size: 2rem;
	}
	
	h2, 
	aside header > h2:first-child, 
	header > h2:first-child + h3, 
	.content > h2:first-child + h3 {
		font-size: 1.444rem;
	}
	
	h3 {
	    font-size: 1.222rem;
	}
	
	header p {
		font-size: 1rem;
	}
	
	.content p {
		font-size: 1rem;
	}
	
	.btn, .simple-btn {
		font-size: 0.833rem;
	}
	
	.scroll-nav {
		margin-top: 1.5rem;
	}
	
	.popup {
		width: calc(100% - var(--horizontal-spacing));
	}
}

/* End Responsive [550px] */