#screen { 
	display: none;
	position: fixed;
	bottom: 5%;
	right: 5%;
	padding: 5px 10px;
	width: auto;
	color: #fff;
	font-family: var(--fonts);
	font-size: 160%;
	font-weight: 300;
	text-align: center;
	background: var(--red);
	border-radius: 48px;
	z-index: 9999;
}
main {
}
img, 
object, 
embed {
	max-width: 100%;
}
section {
	position: relative;
}
img {
	display: block;
	position:  relative;
	float: none;
	height: auto;
	border: none;
	box-sizing: border-box;
	transition: all .1s ease-in;
}
i.material-symbols-outlined {
	font-weight: 300 !important;
}
.z1 {
	z-index: 1;
}
.z2 {
	z-index: 2;
}
.z3 {
	z-index: 3;
}
.flex-clear {
	grid-column: 1 / -1;
}
.center,
.apply-center .caption {
	text-align: center;
}
.apply-center .caption {
	justify-content: center;
}
.center img {
	margin: 0 auto !important;
}
.right {
	text-align: right;
}
.left {
	text-align: left;
}
.drag-center.left,
.drag-left.left,
.drag-right.left {
	justify-items: start;
	text-align: left;	
}
hr.divider {
	display: block;
	margin: 2rem 0;
	border: 1px var(--accent) solid;
}
hr.md {
	width: 33.3%;
	margin: 2rem 0;
	height: 4px;
	background: #fff;
	background: var(--accent);
	border: none;
}
.bg-dark hr.md {
	background: var(--off);
}
.tag {
	display: inline;
	position: relative;
	padding: .4rem .6rem;
	font-family: "Libre Franklin", sans-serif;
	font-size: 75%;
	font-weight: 400;
	letter-spacing: 0px;
	text-transform: uppercase;
	border: 1px var(--green) solid;
	border-radius: 4px;
}
.rainbow {
  background: linear-gradient(to right, #129bed, #56ead2, #fdd38b, #fb8d62, #b04e4b, #b04e4b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================================================================= */
/* LISTS  */
/* ================================================================================= */

ul, 
ol,
li {
  margin: 0;
  padding: 0;
}
ol li {
	list-style: decimal;
}
li {
	position: relative;
	margin: .8rem 0;
	list-style: none;
}
ul.horizontal {
	text-align: center;
	text-transform:  uppercase;
}
.horizontal li {
	display: inline-block;
	margin: 0 .8rem;
}
.horizontal li a {
	display: block;
	text-decoration: none;
}
.horizontal li a:hover {
	text-decoration: underline;
}
#footer-wrap ul.horizontal {
	color: var(--primary);
	text-align: left;
}
#footer-wrap .horizontal li {
	display: inline-flex;
	margin: 0;
	text-align: left;
}
#footer-wrap .horizontal li:before {
    content: "/";
}
#footer-wrap .horizontal li a {
	padding: .1rem .6rem .1rem .4rem;
	font-weight: 500;
}
.bullets li {
	margin: 0 0 0 1.2rem;
	list-style: disc;
}
.checklistdark,
.checklist,
.xlist {
	margin: 1.2rem 0;
/*	font-family: var(--sans);*/
	list-style-type: none;
}
.bullets li:first-child,
.checklist li:first-child,
.checklistdark li:first-child,
.xlist li:first-child {
	margin-top: 0;
}
.bullets li:last-child,
.checklist li:last-child,
.checklistdark li:last-child,
.xlist li:last-child {
	margin-bottom: 0;
}
.checklist li,
.xlist li{
	margin: 0;
	padding: .2rem 4rem .2rem 2.8rem;
	font-size: 92.5%;
	font-weight: 400;
	line-height: 1.5;
	border-radius: .4rem;
	overflow: hidden;
}
/*.checklist li:nth-child(odd) {*/
	background: rgba(0,0,0,.05);
}
.checklist li i,
.xlist li i {
	margin: 0 .5rem 0 0;
	font-size: 150% !important;
	color: var(--aqua);
}
.checklist li:after,
.xlist li:after {
    content: '\e876';
/*    content: '\ea63';*/
	position:  absolute;
	top: 0rem;
	left: 0.4rem;
    font-family: 'Material Symbols Outlined';
    font-size: 180% !important;
	font-weight: 300;
	color: var(--primary);
	line-height: 1;
}
.bg-dark .checklist li {
	font-weight: 500;
}
.bg-dark .checklist li:after {
	color: var(--green);
	color: var(--black);
}
.checklistdark li {
	display: flex;
	margin: .6rem 0 0;
	font-size: 105%;
	color: #333;
	line-height: 1.4;
	background: rgba(0,0,0,.066);
}
.checklistdark li:before {
    content: '\e876';
	position: relative;
	margin: 0 .5rem 0 0;
    font-family: 'Material Symbols Outlined';
    font-size: 150% !important;
	font-weight: 300;
	color: var(--accent);
	line-height: 1;
}
.xlist li:after {
	content: '\e5cd';
	color: var(--primary);
}
.boxes {
	display: flex;
	border: 1px rgba(0,0,0,.2) solid;
	border-radius: 4px;
}
.boxes li {
flex-grow: 1;
	margin: 0;
	font-size: 90%;
	border-right: 1px rgba(0,0,0,.2) solid;
	padding: .8rem;
}
.boxes li strong {
	display: block;
	font-size: 105%;
	font-weight: 600;
	color: #111;
}
.boxes li:last-child {
	border: none;
}
.boxes i.material-symbols-outlined {
	color: var(--aqua);
}

/* ---------------------------------------- ICONOGRAPHS ---------------------------------------- */ 

.iconograph {
	position: relative;
	margin: .2rem 0 1rem;
	padding: 0 0 0 2.1rem;
	text-align: left;
}
.top .iconograph {
	display: flex;
	align-items: flex-start;
}
.top .iconograph .excerpt {
	margin: 0;
}
.top .iconograph:last-child {
	margin-bottom: 0;
}
.iconograph:last-child {
	margin-bottom: .5rem;
}
.iconograph i,
.iconograph img {
	position: absolute;
	top: .1rem;
	left: 0;
	font-size: 140% !important;
	color: var(--primary);
}
.iconograph.pics {
	margin: 1.8rem 0;
	padding: 0 0 0 25%;
}
.iconograph.pics img {
	width: 22%;
}
.bg-dark .iconograph i {
	color: var(--transparent);
}

/* ================================================================================= */
/* VIDEOS  */
/* ================================================================================= */

video {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 101%;
	height: 101%;
}
.video-wrap {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 0 0 56.25%;
	width: 100%;
	height: 0;
}
.video-wrap video {
	height: auto;
}
.video-wrap iframe {
	display:  block;
	position:  absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/* ================================================================================= */
/* BLOG  */
/* ================================================================================= */

.date {
	display:  block;
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 85%;
}
.byline {
	display: block;
	align-items: center;
	margin: 15px 0;
	font-size: 90%;
	font-weight: 500;
	color: #555;
}
.byline i {
	margin: 0 5px 0 0;
	font-size: 15px !important;
}
.post {
	margin: 0 0 1rem !important;
	padding: 2rem 0;
	text-align: left;
	border-radius: 8px;
	border-top: 1px rgba(0,0,0,.25) solid;
}
.post:last-child {
	margin-bottom: 0 !important;
}

/* ================================================================================= */
/* LINKS  */
/* ================================================================================= */

a,
.btn {
	color: var(--accent);
	transition: all 0.15s ease-in;
	cursor: pointer;
}
a:active, 
a:focus {
	outline: 0;
}
a:hover {
	color: var(--accent);
	text-decoration: underline;
}
a.btn,
.btn {
	display: inline-block;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 15px 0;
	padding: .5rem 1.2rem;
	width: auto;
	font-family: var(--sans);
	font-size: 100%;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 1px;
	line-height: 1.3;
	background: var(--accent);
	border-radius: 3px;
	box-sizing: border-box; 
	cursor: pointer;
}	
a.btn.flex {
	display: inline-flex;
	align-items: center;
	font-family: Oswald;
	font-size: 110%;
	font-weight: 400;
	letter-spacing: 3px;
	border: 2px var(--accent) solid;
}
a.btn.flex i.material-symbols-outlined {
	margin-right: .8rem;
	font-size: 240% !important;
}
a.btn-outline {
	color: var(--black);
	background: none;
	border: 2px var(--accent) solid;
}
a.btn:hover,
a.btn-outline:hover {
	text-decoration: none;
	background: var(--accent) !important;
	border: none;
/*	border: 2px var(--black) solid;*/
	transform: scale(.95);
}
.apply-btn-block .btn {
	display: block;
}
.btn.clear:hover {
	color: var(--accent) !important;
	background: none !important;
}
.btn.bg-primary:hover {
	background: var(--accent) !important;
}
.bg-accent .btn:hover,
.btn.bg-accent:hover,
.bg-dark .btn:hover {
	background: var(--accent) !important;
}
.btn.bg-red:hover {
	background: var(--tradred) !important;
}
.btn.bg-white,
.btn.bg-white:hover {
	color: var(--black) !important;
	background: #fff !important;
}
.btn.bg-white:hover {
	background: #ddd !important;
}
.btn,
.btn:hover,
.bg-dark a {
	color: #fff;
}
.btn:nth-of-type(2) {
	margin-right: .6rem;
	margin-left: .6rem;
}
.bg-dark a.btn,
.bg-dark .btn {
	background: var(--accent);
}
.apply-bg-black a.btn,
.apply-bg-black .btn {
	background: var(--accent);
}
.btn.bg-black:hover,
.apply-bg-black a.btn:hover,
.apply-bg-black .btn:hover {
	background: var(--primary) !important;
}
a.btn:last-child,
a.btn:last-child:hover,
.btn:last-child,
.btn:last-child:hover {
	margin-bottom: 0;
}
input#submit, 
input#submit:hover, 
input.submit, 
input.submit:hover, 
input[type="submit"], 
input[type="submit"]:hover {
	display: block !important;
	margin: 1rem auto 0 !important;
	padding: .5rem 1.2rem !important;
	width: auto !important;
	height: auto !important;
	font-size: 120% !important;
	font-weight: 600 !important;
	color: #fff !important;
	letter-spacing: 0px !important;
	text-align: center !important;
	text-decoration: none !important;
	text-shadow: 0 -1px 0 rgba(0,0,0,.25) !important;
	background: var(--red) !important;
	border: none !important;
	border-radius: 4px !important;
	cursor: pointer;
}

/* ================================================================================= */
/* 	GRIDS
/* ================================================================================= */

.split.top,
.split-1-1-1.top,
.split-1-1-1-1.top,
.split-1-2.top,
.split-2-1.top,
.split-2-1-1.top,
.split-3-1.top,
.split-3-2.top,
.split-1-3.top,
.split-2-3.top,
.split-1-4.top,
.split-1-5.top,
.split-5.top,
.split-6.top,
.split-8.top {
	align-items: start;
}
.split-auto.top {
	align-items: baseline;
}
.split.middle {
	display: grid;
	align-items: center;
}
.split.center {
	justify-items: center;
}
.split.end {
	display: grid;
	align-items: flex-end;
}
.split.even > * { /* -- Even out certain columns -- */ 
	height: 100%;
}
.stretch-2 {
	grid-column: span 2;
}
.stretch-3 {
	grid-column: span 3;
}
.row-2 {
	grid-row: span 2;
}
.row-3 {
	grid-row: span 3;
}

/* ---------------------------------------- SPLITS ---------------------------------------- */ 

.flex {
	display: flex;
	align-items: center;
}
.split header {
	grid-column: 1 / -1;
	margin: 0 0 1rem;
}
.split,
.split-auto,
.split-1-1-1,
.split-1-1-1-auto,
.split-1-1-1-1,
.split-1-2,
.split-2-1,
.split-2-1-1,
.split-3-1,
.split-3-2,
.split-1-3,
.split-2-3,
.split-1-4,
.split-4-1,
.split-1-5,
.split-5,
.split-5-1,
.split-6,
.split-8 {
	display: grid;
	grid-gap: 0%;
	align-items: center;
	margin: 0 auto;
}
.split {
	grid-template-columns: 1fr 1fr;	
}
.split-auto {
	grid-template-columns: auto auto;
	justify-content: flex-start;
}
.split-1-1-1 {
	grid-template-columns: 1fr 1fr 1fr;
}
.split-1-1-1-auto {
	grid-template-columns: auto auto auto;
	justify-content: flex-start;
	align-items: flex-start;
}
.split-1-1-1-1 {
	grid-template-columns: repeat(4, 1fr);
}
.split-1-1-1-1-1 {
	grid-template-columns: repeat(5, 1fr);
}
.split-2-1 {
	grid-template-columns: 2fr 1fr;
}
.split-1-2 {
	grid-template-columns: 1fr 2fr;
}
.split-2-1-1 {
	grid-template-columns: 2fr 1fr 1fr;
}
.split-3-1 {
	grid-template-columns: 3fr 1fr;
}
.split-3-2 {
	grid-template-columns: 3fr 2fr;
}
.split-1-3 {
	grid-template-columns: 1fr 3fr;
}
.split-2-3 {
	grid-template-columns: 2fr 3fr;
}
.split-1-4 {
	grid-template-columns: 1fr 4fr;
}
.split-4-1 {
	grid-template-columns: 4fr 1fr;
}
.split-1-5 {
	grid-template-columns: 1fr 5fr;
}
.split-5-1 {
	grid-template-columns: 5fr 1fr;
}
.split-5 {
	grid-template-columns: repeat(5, 1fr);
}
.split-6 {
	grid-template-columns: repeat(6, 1fr);
}
.split-8 {
	grid-template-columns: repeat(8, 1fr);
}
@media screen and (max-width: 1366px) {
	.split-8 {
		grid-template-columns: repeat(4, 1fr);
	}
	.split-6 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---------------------------------------- SPLIT AUTO ---------------------------------------- */ 

.split-auto,
.split-auto-1-1-1,
.split-auto-1-1-1-1 {
	display: grid;
	grid-gap: 4%;
}
.split-auto {
	grid-template-columns: auto auto;
}
.split-auto-1-1-1 {
	grid-template-columns: auto auto auto;
}
.split-auto-1-1-1-1 {
	grid-template-columns: auto auto auto auto;
}
.initial {
	align-items: initial;
}


/* ---------------------------------------- PULL ---------------------------------------- */ 

.pull-up {
	transform: translateY(-10%);
}
.pull-up-lg {
	transform: translateY(-20%);
}
.pull-up-xl {
	transform: translateY(-50%);
}
.pull-left {
	transform: translateX(-10%);
}
.pull-right {
	transform: translateX(10%);
}
.pull-down {
	transform: translateY(10%);
}
.pull-down-xl {
	transform: translateY(50%);
}
.pull-upleft {
	transform: translate(-10%, -10%);
}
.pull-upleft-lg {
	transform: translate(-24%, -24%);
}
.pull-upright {
	transform: translate(10%, -10%);
}
.pull-upright-lg {
	transform: translate(24%, -24%);
}
.pull-downleft {
	transform: translate(-10%, 10%);
}
.pull-downleft-lg {
	transform: translate(-24%, 20%);
}
.pull-downright {
	transform: translate(10%, 10%);
}
.pull-downright-lg {
	transform: translate(24%, 20%);
}
@media only screen and (max-width: 1680px) {
	.pull-up {
		transform: translateY(-6%);
	}
	.pull-left {
		transform: translateX(-6%);
	}
	.pull-right {
		transform: translateX(6%);
	}
	.pull-down {
		transform: translateY(6%);
	}
	.pull-upleft {
		transform: translate(-6%, -6%);
	}
	.pull-upleft-lg {
		transform: translate(-18%, -18%);
	}
	.pull-upright {
		transform: translate(6%, -6%);
	}
	.pull-upright-lg {
		transform: translate(18%, -18%);
	}
	.pull-downleft {
		transform: translate(-6%, 6%);
	}
	.pull-downleft-lg {
		transform: translate(-18%, 18%);
	}
	.pull-downright {
		transform: translate(6%, 6%);
	}
	.pull-downright-lg {
		transform: translate(18%, 18%);
	}
}
@media only screen and (max-width: 1440px) {
	.pull-up {
		transform: translateY(-5%);
	}
	.pull-left {
		transform: translateX(-5%);
	}
	.pull-right {
		transform: translateX(5%);
	}
	.pull-down {
		transform: translateY(5%);
	}
	.pull-upleft {
		transform: translate(-5%, -5%);
	}
	.pull-upleft-lg {
		transform: translate(-10%, -10%);
	}
	.pull-upright {
		transform: translate(5%, -5%);
	}
	.pull-upright-lg {
		transform: translate(16%, -16%);
	}
	.pull-downleft {
		transform: translate(-5%, 5%);
	}
	.pull-downleft-lg {
		transform: translate(-16%, 16%);
	}
	.pull-downright {
		transform: translate(5%, 5%);
	}
	.pull-downright-lg {
		transform: translate(16%, 16%);
	}
}

/* ---------------------------------------- GAPS ---------------------------------------- */ 

.gap-none {
	grid-gap: 0 !important;
}
.gap {
	grid-gap: 5px !important;
}
.gap-xs {
	grid-gap: 10px !important;
}
.gap-sm {
	grid-gap: 15px !important;
}
.gap-md {
	grid-gap: 20px !important;
}
.gap-lg {
 	grid-gap: 30px !important;
}
.gap-xl {
 	grid-gap: 48px !important;
}
.gap-xxl {
	grid-gap: 80px !important;
}
.gap-xxxl {
 	grid-gap: 100px !important;
}
@media screen and (max-width: 1960px) {
	.gap-xs {
		grid-gap: 8px !important;
	}	
	.gap-sm {
		grid-gap: 12px !important;
	}	
	.gap-md {
		grid-gap: 18px !important;
	}
	.gap-lg {
 		grid-gap: 25px !important;
	}
	.gap-xl {
		grid-gap: 40px !important;
	}
	.gap-xxl {
 		grid-gap: 72px !important;
	}	
	.gap-xxxl {
 		grid-gap: 84px !important;
	}
}
@media screen and (max-width: 1680px) {
	.gap-xs {
		grid-gap: 6px !important;
	}	
	.gap-sm {
		grid-gap: 10px !important;
	}	
	.gap-md {
		grid-gap: 15px !important;
	}
	.gap-lg {
 		grid-gap: 21px !important;
	}
	.gap-xl {
		grid-gap: 36px !important;
	}
	.gap-xxl {
 		grid-gap: 64px !important;
	}	
	.gap-xxxl {
 		grid-gap: 72px !important;
	}
}
@media screen and (max-width: 1440px) {
	.gap-xs {
		grid-gap: 5px !important;
	}	
	.gap-sm {
		grid-gap: 8px !important;
	}		
	.gap-md {
		grid-gap: 12px !important;
	}
	.gap-lg {
 		grid-gap: 18px !important;
	}
	.gap-xl {
		grid-gap: 25px !important;
	}
	.gap-xxl {
 		grid-gap: 40px !important;
	}	
	.gap-xxxl {
 		grid-gap: 56px !important;
	}
}

/* ---------------------------------------- MARGINS ---------------------------------------- */ 

.m-xs {
	margin: 10px !important;
}
.m-sm {
	margin: 15px !important;
}
.m-md {
	margin: 20px !important;
}
.m-lg {
	margin: 30px !important;
}
.m-xl {
	margin: 48px !important;
}
.m-xxl {
	margin: 80px !important;
}
.m-xxxl {
	margin: 100px !important;
}
.m-t-xs {
	margin-top: 10px !important;
}
.m-t-sm {
	margin-top: 15px !important;
}
.m-t-md {
	margin-top: 20px !important;
}
.m-t-lg {
	margin-top: 30px !important;
}
.m-t-xl {
	margin-top: 48px !important;
}
.m-t-xxl {
	margin-top: 80px !important;
}
.m-t-xxxl {
	margin-top: 100px !important;
}
.m-b-xs {
	margin-bottom: 10px !important;
}
.m-b-sm {
	margin-bottom: 15px !important;
}
.m-b-md {
	margin-bottom: 20px !important;
}
.m-b-lg {
	margin-bottom: 30px !important;
}
.m-b-xl {
	margin-bottom: 48px !important;
}
.m-b-xxl {
	margin-bottom: 80px !important;
}
.m-b-xxxl {
	margin-bottom: 100px !important;
}
.m-clear {
	margin: 0 !important;
}
.m-t-clear {
	margin-top: 0 !important;
}
.m-b-clear {
	margin-bottom: 0 !important;
}
.m-lr-clear {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

/* ---------------------------------------- PADDING ---------------------------------------- */ 

.p-xs {
	padding: 10px !important;
}
.p-sm {
	padding: 15px !important;
}
.p-md {
	padding: 20px !important;
}
.p-lg {
	padding: 30px !important;
}
.p-xl {
	padding: 48px !important;
}
.p-xxl {
	padding: 80px !important;
}
.p-xxxl {
	padding: 100px !important;
}
.p-t-xs {
	padding-top: 10px !important;
}
.p-t-sm {
	padding-top: 15px !important;
}
.p-t-md {
  padding-top: 24px !important;
}
.p-t-lg {
  padding-top: 30px !important;
}
.p-t-xl {
  padding-top: 48px !important;
}
.p-t-xxl {
  padding-top: 80px !important;
}
.p-t-xxxl {
  padding-top: 100px !important;
}
.p-b-xs {
	padding-bottom: 10px !important;
}
.p-b-sm {
	padding-bottom: 15px !important;
}
.p-b-md {
  padding-bottom: 24px !important;
}
.p-b-lg {
  padding-bottom: 30px !important;
}
.p-b-xl {
  padding-bottom: 48px !important;
}
.p-b-xxl {
  padding-bottom: 80px !important;
}
.p-b-xxxl {
  padding-bottom: 100px !important;
}
.p-l-xs {
	padding-left: 10px !important;
}
.p-l-sm {
	padding-left: 15px !important;
}
.p-l-md {
	padding-left: 24px !important;
}
.p-l-lg {
	padding-left: 30px !important;
}
.p-l-xl {
	padding-left: 48px !important;
}
.p-l-xxl {
	padding-left: 80px !important;
}
.p-l-xxxl {
	padding-left: 100px !important;
}
.p-r-xs {
	padding-right: 10px !important;
}
.p-r-sm {
	padding-right: 15px !important;
}
.p-r-md {
	padding-right: 24px !important;
}
.p-r-lg {
	padding-right: 30px !important;
}
.p-r-xl {
	padding-right: 48px !important;
}
.p-r-xxl {
	padding-right: 80px !important;
}
.p-r-xxxl {
	padding-right: 100px !important;
}
.apply-p-md .caption {
	padding: 18px 20px 20px;
}
.apply-p-lg .caption {
	padding: 24px 30px;
}
.apply-p-xl .caption {
	padding: 40px 48px;
}
.apply-p-xxl .caption {
	padding: 72px 80px;
}
@media screen and (max-width: 1840px) {
	#site-navigation .p-b-lg {
		padding-bottom: 25px !important;
	}
}
@media screen and (max-width: 1680px) {
	.m-xs {
		margin: 8px !important;
	}
	.m-sm {
		margin: 12px !important;
	}
	.m-md {
		margin: 18px !important;
	}
	.m-lg {
		margin: 25px !important;
	}	
	.m-xl {
		margin: 40px !important;
	}
	.m-xxl {
		margin: 72px !important;
	}
	.m-xxxl {
		margin: 84px !important;
	}
	.m-t-xs {
		margin-top: 8px !important;
	}
	.m-t-sm {
		margin-top: 12px !important;
	}
	.m-t-md {
		margin-top: 18px !important;
	}
	.m-t-lg {
		margin-top: 25px !important;
	}
	.m-t-xl {
		margin-top: 40px !important;
	}
	.m-t-xxl {
		margin-top: 72px !important;
	}
	.m-t-xxxl {
		margin-top: 84px !important;
	}
	.m-b-xs {
		margin-bottom: 8px !important;
	}
	.m-b-sm {
		margin-bottom: 12px !important;
	}	
	.m-b-md {
		margin-bottom: 18px !important;
	}
	.m-b-lg {
		margin-bottom: 25px !important;
	}
	.m-b-xl {
		margin-bottom: 40px !important;
	}
	.m-b-xxl {
		margin-bottom: 72px !important;
	}
	.m-b-xxxl {
		margin-bottom: 84px !important;
	}
	.p-xs {
		padding: 8px !important;
	}
	.p-sm {
		padding: 12px !important;
	}
	.p-md {
		padding: 18px !important;
	}
	.p-lg {
		padding: 25px !important;
	}
	.p-xl {
		padding: 40px !important;
	}
	.p-xxl {
		padding: 72px !important;
	}	
	.p-xxxl {
 		padding: 84px !important;
	}
	.p-t-xs {
	  padding-top: 8px !important;
	}	
	.p-t-sm {
	  padding-top: 12px !important;
	}	
	.p-t-md {
	  padding-top: 20px !important;
	}	
	.p-t-lg {
	  padding-top: 25px !important;
	}
	.p-t-xl {
	  padding-top: 40px !important;
	}
	.p-t-xxl {
	  padding-top: 72px !important;
	}
	.p-t-xxxl {
	  padding-top: 84px !important;
	}
	.p-b-xs {
	  padding-bottom: 8px !important;
	}	
	.p-b-sm {
	  padding-bottom: 12px !important;
	}	
	.p-b-md {
	  padding-bottom: 20px !important;
	}	
	.p-b-lg {
	  padding-bottom: 25px !important;
	}
	#site-navigation .p-b-lg {
		padding-bottom: 20px !important;
	}
	.p-b-xl {
	  padding-bottom: 40px !important;
	}
	.p-b-xxl {
	  padding-bottom: 72px !important;
	}
	.p-b-xxxl {
	  padding-bottom: 84px !important;
	}	
	.p-l-xs {
	  padding-left: 8px !important;
	}	
	.p-l-sm {
	  padding-left: 12px !important;
	}	
	.p-l-md {
	  padding-left: 20px !important;
	}	
	.p-l-lg {
		padding-left: 25px !important;
	}
	.p-l-xl {
		padding-left: 40px !important;
	}
	.p-l-xxl {
		padding-left: 72px !important;
	}
	.p-l-xxxl {
		padding-left: 84px !important;
	}
	.p-r-xs {
	  padding-right: 8px !important;
	}	
	.p-r-sm {
	  padding-right: 12px !important;
	}	
	.p-r-md {
	  padding-right: 20px !important;
	}	
	.p-r-lg {
		padding-right: 25px !important;
	}
	.p-r-xl {
		padding-right: 40px !important;
	}
	.p-r-xxl {
		padding-right: 72px !important;
	}
	.p-r-xxxl {
		padding-right: 84px !important;
	}
	.apply-p-md .caption {
		padding: 15px 18px 18px;
	}
	.apply-p-lg .caption {
		padding: 22px 25px 25px;
	}
	.apply-p-xl .caption {
		padding: 32px 40px 40px;
	}
	.apply-p-xxl .caption {
		padding: 72px;
	}
}
@media screen and (max-width: 1560px) {
	#site-navigation .p-b-lg {
		padding-bottom: 15px !important;
	}
}
@media screen and (max-width: 1440px) {
	.m-xs {
		margin: 6px !important;
	}
	.m-sm {
		margin: 10px !important;
	}
	.m-md {
		margin: 15px !important;
	}
	.m-lg {
		margin: 20px !important;
	}
	.m-xl {
		margin: 32px !important;
	}
	.m-xxl {
		margin: 48px !important;
	}
	.m-xxxl {
		margin-bottom: 64px !important;
	}
	.m-t-xs {
		margin-top: 6px !important;
	}
	.m-t-sm {
		margin-top: 8px !important;
	}	
	.m-t-md {
		margin-top: 15px !important;
	}
	.m-t-lg {
		margin-top: 20px !important;
	}
	.m-t-xl {
		margin-top: 32px !important;
	}
	.m-t-xxl {
		margin-top: 48px !important;
	}
	.m-t-xxxl {
		margin-top: 64px !important;
	}
	.m-b-xs {
		margin-bottom: 6px !important;
	}
	.m-b-sm {
		margin-bottom: 8px !important;
	}	
	.m-b-md {
		margin-bottom: 15px !important;
	}
	.m-b-lg {
		margin-bottom: 20px !important;
	}
	.m-b-xl {
		margin-bottom: 32px !important;
	}
	.m-b-xxl {
		margin-bottom: 48px !important;
	}
	.m-b-xxxl {
		margin-bottom: 64px !important;
	}
	.p-xs {
		padding: 6px !important;
	}
	.p-sm {
		padding: 10px !important;
	}
	.p-md {
		padding: 15px !important;
	}
	.p-lg {
		padding: 20px !important;
	}
	.p-xl {
		padding: 32px !important;
	}
	.p-xxl {
		padding: 48px !important;
	}	
	.p-xxxl {
 		padding: 64px !important;
	}
	.p-t-xs {
	  padding-top: 5px !important;
	}	
	.p-t-sm {
	  padding-top: 10px !important;
	}	
	.p-t-md {
	  padding-top: 16px !important;
	}
	.p-t-lg {
	  padding-top: 20px !important;
	}
	.p-t-xl {
	  padding-top: 32px !important;
	}
	.p-t-xxl {
	  padding-top: 48px !important;
	}
	.p-t-xxxl {
	  padding-top: 64px !important;
	}
	.p-b-xs {
	  padding-top: 5px !important;
	}	
	.p-b-sm {
	  padding-top: 10px !important;
	}	
	.p-b-md {
	  padding-bottom: 16px !important;
	}
	.p-b-lg {
	  padding-bottom: 20px !important;
	}
	#site-navigation .p-b-lg {
		padding-bottom: 12px !important;
	}
	.p-b-xl {
	  padding-bottom: 32px !important;
	}
	.p-b-xxl {
	  padding-bottom: 48px !important;
	}
	.p-b-xxxl {
	  padding-bottom: 64px !important;
	}	
	.p-l-xs {
	  padding-left: 5px !important;
	}	
	.p-l-sm {
	  padding-left: 10px !important;
	}	
	.p-l-md {
	  padding-left: 16px !important;
	}
	.p-l-lg {
		padding-left: 20px !important;
	}
	.p-l-xl {
		padding-left: 32px !important;
	}
	.p-l-xxl {
		padding-left: 48px !important;
	}
	.p-l-xxxl {
		padding-left: 64px !important;
	}
	.p-r-xs {
	  padding-right: 5px !important;
	}	
	.p-r-sm {
	  padding-right: 10px !important;
	}	
	.p-r-md {
	  padding-right: 16px !important;
	}
	.p-r-lg {
		padding-right: 20px !important;
	}
	.p-r-xl {
		padding-right: 32px !important;
	}
	.p-r-xxl {
		padding-right: 48px !important;
	}
	.p-r-xxxl {
		padding-right: 64px !important;
	}
	.apply-p-md .caption {
		padding: 12px 15px 15px;
	}
	.apply-p-lg .caption {
		padding: 18px 20px 20px;
	}
	.apply-p-xl .caption {
		padding: 32px;
	}
	.apply-p-xxl .caption {
		padding: 48px;
	}
}
@media only screen and (max-width: 1366px) {
	#site-navigation .p-b-lg {
		padding-bottom: 10px !important;
	}
}
.m-clear {
	margin: 0 !important;
}
.m-t-clear {
	margin-top: 0 !important;
}
.m-r-clear {
	margin-right: 0 !important;
}
.m-l-clear {
	margin-left: 0 !important;
}
.m-b-clear {
	margin-bottom: 0 !important;
}
.m-lr-clear {
	margin-right: 0 !important;
	margin-left: 0 !important;
}
.p-clear {
	padding: 0 !important;
}
.p-t-clear {
	padding-top: 0 !important;
}
.p-r-clear {
	padding-right: 0 !important;
}
.p-l-clear {
	padding-left: 0 !important;
}
.p-b-clear {
	padding-bottom: 0 !important;
}
.p-lr-clear {
	padding-right: 0 !important;
	padding-left: 0 !important;
}


/* ================================================================================= */
/* SWATCHES */
/* ================================================================================= */

#swatches {
	text-align: center;
}
#swatches article {
	display: grid;
	align-content: center;
	padding: 2rem 1rem;
	height: 100%;
}
#swatches a {
	color: inherit; 
}
#swatches img,
#swatches i {
	margin: 0 auto .5rem;
	max-width: 50%;
	height: auto;
	font-size: 600%;
	color: var(--primary);
	border-radius: 100%;
}
#swatches .bg-dark i {
	font-weight: 200 !important;
	color: #fff;
}

/* ================================================================================= */
/* PHOTOS */
/* ================================================================================= */

.gallery {
	display: grid;
	grid-gap: .6rem;
	margin: .6rem auto;
}
.gallery a {
	display: block;
	position: relative;
	text-decoration: none !important;
	background: none;
	outline: 0px var(--primary) solid;
}
.gallery a:hover {
	outline: 4px var(--primary) solid;
}
.gallery a img {
	display: block;
	margin: 0;
	width: 100%;
	height: auto;
	transition: all .1s ease-in;
	-webkit-backface-visibility: hidden;
}
.gallery a:hover img {
	z-index: 9999;
}
.gallery a span {
	display: block;
	margin: .3rem 0;
	font-family: var(--fonts);
	font-size: 140%;
	color: var(--black);
}
.gallery a small {
	display: block;
	font-size: 90%;
	font-weight: 500;
	color: #444;
	line-height: 1.6;
}
@media only screen and (max-width: 1680px) {
	.gallery a span {
		font-size: 130%;
	}
}
@media only screen and (max-width: 1440px) {
	.gallery a small {
		display: none;
	}
}

/* ---------------------------------------- BAGUETTE ---------------------------------------- */ 

#baguetteBox-overlay .full-image img {
  max-width: 800px !important;
}
.baguetteBox-container iframe {
    width: 720px;
    height: 415px;
    max-width: 100%;
    max-height: calc(100% - 100px);
    margin: 0 auto;
    display: block;
}

/* ---------------------------------------- PHOTOS ---------------------------------------- */ 

.stagger > *:nth-child(odd) {
	transform: translateY(-13.5%);
}
.stagger > *:nth-child(even) {
	transform: translateY(5%);
}

/* ---------------------------------------- I DON'T KNOW WHY IT HAS TO BE FIRST BUT IT DOES ---------------------------------------- */ 

.apply-hover-scale img {
	transition: transform 0.2s ease-out;
}
.apply-hover-scale *:hover > img {
	transform: scale(1.05);
}
.stagger.apply-hover-scale > *:nth-child(odd):hover {
    transform: translateY(-13.5%) scale(1.05);
}
.stagger.apply-hover-scale > *:nth-child(even):hover {
    transform: translateY(5%) scale(1.05);
}
.apply-hover-reveal .caption {
	opacity: 0 !important;
}
.apply-hover-reveal *:has(.caption):hover .caption {
	background: rgba(0,0,0,.5);
	opacity: 1 !important;
}

/* ---------------------------------------- CARDS ---------------------------------------- */ 

.card-flipper {
	display: inline-block;
	position: relative;
	padding: 100% 0 0;
	width: 100%;
	height: auto;
	perspective: 1000px;
	overflow: hidden;
}
.card-front,
.card-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	backface-visibility: hidden;
  transition: transform .8s cubic-bezier(0.175, 0.8, 0.3, 1.3);

}
.card-back {
	transform: rotateY(180deg);
}
.card-flipper:hover .card-front {
	transform: rotateY(-180deg);
}
.card-flipper:hover .card-back {
	transform: rotateY(0);
}

/* ---------------------------------------- IMAGES ---------------------------------------- */ 

.img-sm,
.apply-img-sm img {
	width: 33.3%;
}
.img-md,
.apply-img-md img {
	width: 50%;
}
.img-lg,
.apply-img-lg img {
	width: 70%;
}
img.circle,
.apply-img-circle img {
	border-radius: 100%;
}
img.white,
.apply-img-white img {
 	filter: brightness(100%) contrast(100%) saturate(0%) invert(1);
}
img.transparent,
.apply-img-transparent img {
	opacity: .7;
}
img.floater {
	position: absolute;
	bottom: 0;
	width: 25%;
}
img.floater.img-sm {
	width: 33.3%;
}
img.floater.img-md {
	width: 40%;
}
img.floater.img-lg {
	width: 45%;
}
img.floater.img-xl {
	width: 55%;
}

/* ---------------------------------------- Icons ---------------------------------------- */ 

.apply-icon-md i {
	font-size: 4rem;
}
.apply-icon-lg i {
	font-size: 6rem;
}
.apply-icon-xl i {
	font-size: 8rem !important;
}
@media only screen and (max-width: 1680px) {
	.apply-icon-md i {
		font-size: 3.2rem;
	}
	.apply-icon-lg i {
		font-size: 5.6rem;
	}
	.apply-icon-xl i {
		font-size: 7.2rem;
	}
}
@media only screen and (max-width: 1440px) {
	.apply-icon-md i {
		font-size: 2.4rem;
	}
	.apply-icon-lg i {
		font-size: 4.8rem;
	}
	.apply-icon-xl i {
		font-size: 6rem;
	}
}
.apply-icon-primary i {
	color: var(--primary) !important;
}
.apply-icon-accent i {
	color: var(--accent) !important;
}
.apply-icon-red i {
	color: var(--red) !important;
}

/* ---------------------------------------- Pills ---------------------------------------- */ 

.pill {
	border-radius: .5rem;
	overflow: hidden;
}
.pill-md {
	border-radius: 1rem;
}
.pill-lg {
	border-radius: 2rem;
	overflow: hidden;
}
.pill-xl {
	border-radius: 50%;
	overflow: hidden;
}
.apply-pill > * {
	border-radius: .333rem !important;
	overflow: hidden !important;
}
.apply-pill-md > * {
	border-radius: 1rem !important;
	overflow: hidden !important;
}
.pill-tl-clear {
	border-top-left-radius: 0 !important;
}
.pill-tr-clear {
	border-top-right-radius: 0 !important;
}
.pill-bl-clear {
	border-bottom-left-radius: 0 !important;
}
.pill-br-clear {
	border-bottom-right-radius: 0 !important;
}

/* ================================================================================= */
/* POPUP */
/* ================================================================================= */

.popup {
	display: block;
	position: relative;
	background: #000;
	overflow: hidden;
}
.popup img  {
	opacity: .666;
	transition: all .333s ease-in;
}
.popup:hover img {
	opacity: .5;
}
.popup.custom:after {
	background: none;
}
.popup.custom div {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 5%;
	align-items: center;
	position:  absolute;
	top: 50%;
	left: 15%;
	width: 70%;
	font-family: var(--fonts);
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.3;
	color: rgba(255,255,255,.75);
	text-transform: uppercase;
	transform: translateY(-50%);
}
.popup.custom img {
	transition: all .2s ease-in;
}
.popup.custom:hover img {
	transform: scale(1.05);
}
.popup:after {
/*	content:"";*/
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(images/icon-play.png) center no-repeat;
	background-size: 33.3%;
	transition: all .2s ease-in;
	opacity: .5;
	z-index: 2;
}
.popup:hover:after {
	background-size: 40%;
	opacity: .75;
}
@media only screen and (max-width: 1680px) {
	.popup.custom div {
		grid-gap: 4%;
		left: 10%;
		width: 80%;
		font-size: 1.7rem;
	}
}
@media only screen and (max-width: 1440px) {
	.popup.custom div {
		grid-template-columns: 1fr 3fr;
		grid-gap: 4%;
		left: 8%;
		width: 84%;
		font-size: 1.6rem;
	}
}
.popup.tall:after {
	background-size: 50%;
}
.popup.tall:hover:after {
	background-size: 66.6%;
}
.popup-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
}
.popup-video {
	display: block;
	position: relative;
	padding: 0 0 28.25%;
	width: 50%;
	height: 0;
}
.popup-iframe {
	border: none !important;
}
.popup-overlay .close-button {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 1;
    background: #FFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/* ================================================================================= */
/* STROKES
/* ================================================================================= */

.stroke-top {
	border-top: 3px var(--primary) solid;
}
.stroke-bottom {
	border-bottom: 3px var(--primary) solid;
}
.stroke-top.stroke-xs {
	border-top: 1px var(--primary) solid;
}
.stroke-bottom.stroke-xs {
	border-bottom: 1px var(--primary) solid;
}
.bg-dark .stroke-top {
	border-color: rgba(255,255,255,.333);
}
.bg-dark .stroke-bottom {
	border-color: rgba(255,255,255,.333);
}

/* ---------------------------------------- BREAKS ---------------------------------------- */ 

.break {
	display: block;
	position: relative;
	margin: 1rem 0;
	width: 200px;
	height: 3px;
	background: var(--accent);
	border: none;
}
.break.md {
	margin: 2rem 0;
	height: 4px;
}
.break.lg {
	margin: 3rem 0;
	height: 5px;
}
@media only screen and (max-width: 1680px) {
	.break.md,
	.break.lg {
		margin: 2rem 0;
		height: 3px;
	}
}
@media only screen and (max-width: 1440px) {
	.break,
	.break.md,
	.break.lg {
		margin: 1rem 0;
		height: 3px;
	}
}

/* ================================================================================= */
/* BACKGROUNDS
/* ================================================================================= */

.bg-light {
	color: var(--black);
}
.bg-dark {
	color: var(--transparent);
}
.bg-accent {
	background: var(--accent) !important;
}
.bg-off {
	background: var(--off) !important;
}
.bg-primary {
	background: var(--primary) !important;
}
.bg-white {
	background: var(--white);
}
.bg-gray {
	background: var(--gray);
}
.bg-darkgray {
	background: var(--darkgray);
}
.bg-black,
.bg-dark.bg-black {
	background: var(--black) !important;
}
.bg-navy {
	background: var(--navy) !important;
}
.bg-blue {
	background: var(--blue) !important;
}
.bg-green {
	background: var(--green) !important;
}
.bg-moss {
	background: var(--moss) !important;
}
.bg-red {
	background: var(--red) !important;
}
.bg-tradred {
	background: var(--tradred) !important;
}
.bg-tradblue {
	background: var(--tradblue) !important;
}
.bg-aqua {
	background: var(--aqua) !important;
}
.bg-orange {
	background: var(--orange) !important;
}
.bg-burntorange {
	background: var(--burntorange) !important;
}
.bg-brown {
	background: var(--brown) !important;
}
.bg-tan {
	background: var(--tan) !important;
}
.bg-purple {
	background: var(--purple) !important;
}
.bg-neon {
	background: var(--neon) !important;
}
.bg-yellow {
	color: var(--black) !important;
	background: var(--yellow) !important;
}
.bg-yellow > * > h3 {
	color: var(--black) !important;
}
.apply-bg-black > * {
	background: var(--black);
}
.apply-bg-primary > * {
	background: var(--primary);
}
.apply-bg-accent > * {
	background: var(--accent);
}
.apply-bg-red > * {
	background: var(--red);
}
.apply-caption-bg-black .caption {
	background: var(--black);
}
.apply-caption-bg-primary .caption {
	background: var(--primary);
}
.apply-caption-bg-accent .caption {
	background: var(--accent);
}
.apply-caption-bg-red .caption {
	background: var(--red);
}

/* ================================================================================= */
/* FAQ SECTION
/* ================================================================================= */

.faq {
	color: var(--black);
}
.faq-item {
	margin: 1rem 0;
	padding: 1.8rem 2rem;
	background: rgba(0,0,0,.075);
	border-radius: 4px;
	cursor: pointer;
}
@media only screen and (max-width: 1680px) {
	.faq-item {
		margin: .8rem 0;
		padding: 1.5rem 1.8rem;
	}
}
.faq-item:first-child {
	margin-top: 0;
}
.faq-item:last-child {
	margin-bottom: 0;
}
.faq-question {
	display: flex;
	align-items: center;
	font-size: 130%;
	font-weight: 500;
}
.faq i {
	margin: 0 0 0 2rem;
	font-size: 180% !important;
	font-weight: 400 !important;
	color: var(--uiblue);
}
.faq i:last-child {
	display: none;
	margin: 0 0 0 2rem;
	font-size: 180% !important;
	font-weight: 400 !important;
	opacity: .666;
}
.faq-answer {
	max-width: 640px;
	max-height: 1px;
	color: #555;
	overflow: hidden;
	transition: all .5s ease-in;
}
.open .faq-answer {
	height: auto;	
	max-height: 300px; 
}
.open i:first-child {
	display: none;
}
.open i:last-child {
	display: block;
}

/* ================================================================================= */
/* NAVICONS */
/* ================================================================================= */

.plus {
	display: inline-block;
	position: relative;
	margin-left: 2rem;
	width: 1.1rem;
	height: 1.1rem;
}
.plus .line {
	background-color: var(--aqua);
	transition: all .5s ease-in;
}
.plus .horizontal,
.plus .vertical {
	width: 100%;
	height: .16rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.plus .vertical {
	width: .16rem;
	height: 100%;
}
.open .plus .vertical {
	transform: translate(-50%, -50%) rotate(450deg);
}

/* ================================================================================= */
/* BADGES
/* ================================================================================= */

.badges,
.amenities {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: auto;
	font-family: oswald, futura-pt, Oswald, futura-pt;
	font-weight: 500;
	font-size: 95%;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	box-sizing: border-box;
}
.badges a {
	display: block;
	position: relative;
	margin: 0 15px;
	width: auto;
	height: auto;
	color: rgba(255,255,255,.8);
	text-align: center;
	vertical-align: middle;
}
.badges a:hover {
	transform: scale(1.1);
}
.badges img {
	display: block;
	width: auto;
	max-width: none;
	height: 130px;
	border-radius: 0 !important;
}
.badges.xs img {
	height: 84px;
}
.badges.jumbo img {
	height: 240px;
}
@media (max-width: 1680px) {
	.badges img {
		height: 108px;
	}
	.badges.xs img {
		height: 72px;
	}
	.badges.jumbo img {
		height: 210px;
	}
}
@media (max-width: 1440px) {
	.badges img {
		height: 84px;
	}
	.badges.xs {
		height: 64px;
	}
	.badges.jumbo img {
		height: 180px;
	}
}
.amenities > *,
.amenities > *:hover {
	display: flex;
	align-items: center;
	margin: 0 1rem;
	padding: 0;
	height: auto;
	text-decoration: none;
}
.amenities i {
	display: block;
	margin: 0 .3rem 0 0;
	color: var(--primary);
}
.amenities.bg-dark i {
	color: var(--transparent) !important;
}

/* ================================================================================= */
/* 	HEADER
/* ================================================================================= */

.menu a#phone-number {
	margin-left: 2rem !important; /* just in case a#phone-number is in menu */
}

/* ---------------------------------------- SOCIAL MEDIA ---------------------------------------- */ 

.social-media {
	display: flex;
	justify-content: center;
	width: 100%;
	font-size: 110%;
}
.social-media.left {
	justify-content: flex-start;
	width: auto;
}
.social-media a {
	margin: 0 1rem;
	padding: .1rem !important;
	color: var(--black);
	transition: all .1s ease-in;
}
.social-media.left a {
	margin: 0 0 0 1rem;
}
.social-media a:hover {
	transform: scale(1.3);
}
.social-media i {
	position: relative !important; /* just in case it's moved */
	left: auto !important; /* just in case it's moved */
	bottom: auto !important; /* just in case it's moved */
	margin: 0 !important; /* just in case it's moved */
	transform: none !important; /* just in case it's moved */
}

/* ---------------------------------------- CONTACT LIST ---------------------------------------- */ 

.contact-list {
	display: flex;
	text-align: left;
	line-height: 1.4;
}
#connect .contact-list {
	margin: 0;
}
.contact-list li {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0 1rem;
}
#connect .contact-list li {
	padding: 0 3rem;
	border-left: 1px rgba(0,0,0,.1) solid;	
}
.contact-list li:first-child {
	padding-left: 0;
	border-left: none;
}
.contact-list i {
	margin: 0 1rem 0 0;
	padding: .8rem;
	font-weight: 300 !important;
	color: var(--primary);
	background: rgba(0,0,0,.0666);
	border-radius: 100%;
}
.bg-dark .contact-list i {
	color: var(--transparent);
	background: var(--accent);
}
.contact-list strong {
	display: block;
	font-weight: 600;
}
.bg-dark .contact-list strong {
	color: #fff;
}
.contact-list-copy {
	font-size: 95%;	
}
.contact-list-copy a {
	font-size: 92.5%;
	font-weight: 400;
	color: inherit;
	text-decoration: none;
}
.bg-dark .contact-list-copy a {
	color: var(--transparent);
}

/* ================================================================================= */
/* SWIPER */
/* ================================================================================= */

.dim,
.neutral {
	display: block;
	position:  absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.dim {
	background: rgba(0,0,0,.0);
}
.dim-sm {
	background: rgba(0,0,0,.175);
}
.dim-md {
	background: rgba(0,0,0,.25);
}
.dim-lg {
	background: rgba(0,0,0,.333);
}
.dim-xl {
	background: rgba(0,0,0,.425);
}
.dim-xxl {
	background: rgba(0,0,0,.45);
}
.dim-xxxl {
	background: rgba(0,0,0,.5);
}
.drag-center,
.drag-left,
.drag-right {
	display: grid;
	align-content: center;
	justify-items: center;
	position: absolute !important;
	text-align: center;
	height: 100%;	
}
.home .drag-center {
	height: 105%;
}
.drag-center {
	left: 15%;
	margin: 0 auto;
	padding: 0%;
	max-width: 1440px;
	width: 70%;
	height: 110%;
}
.drag-left,
.drag-right {
	width: 56.25%;
}
.hero .drag-left,
.hero .drag-right {
	width: 50%;
	height: 105%;
}
@media only screen and (max-width: 1680px) {
	.drag-left,
	.drag-right {
		width: 60%;
	}
}
@media only screen and (max-width: 1440px) {
	.drag-left,
	.drag-right {
		width: 66.6%;
	}
	.hero .drag-left,
	.hero .drag-right {
		width: 56.25%;
	}
}
.drag-left {
	left: 5%;
}
.hero .drag-left {
	left: 8%;
}
.drag-right {
	right: 5%;
}
.hero .drag-right {
	right: 8%;
}
.drag-center.drag-up,
.drag-left.drag-up,
.drag-right.drag-up {
	align-content: flex-start;
	padding-top: 5%;
}
.drag-center.drag-down,
.drag-left.drag-down,
.drag-right.drag-down {
	align-content: flex-end;
	padding-bottom: 7.5%;
}
.home .drag-center.drag-down,
.home .drag-left.drag-down,
.home .drag-right.drag-down {
	padding-bottom: 12.5%;
}
.drag-center.thin, 
.drag-right.thin, 
.drag-left.thin {
	width: 37.5%;
}
.drag-center.thin {
	left: 25%;
	width: 50%;
}
.drag-right.thin {
	right: 10%;
}
.drag-left.thin {
	left: 10%;
}
@media only screen and (max-width: 1680px) {
	.drag-center {
		left: 12%;
		width: 76%;
	}
}
@media only screen and (max-width: 1440px) {
	.drag-center {
		left: 10%;
		width: 80%;
	}
	.drag-center.thin {
		left: 20%;
		width: 60%;
	}
	.home .drag-center.drag-down,
	.home .drag-left.drag-down,
	.home .drag-right.drag-down {
		padding-bottom: 10%;
	}
}

/* ---------------------------------------- SPLASH ---------------------------------------- */ 

.splash {
	display: block;
	position: relative;
	padding: 0 0 56.25%;
	width: 100%;
	height: auto;
}
	
/* ================================================================================= */
/* SWIPER
/* ================================================================================= */

.slide-image-container,
.swiperCarousel {
	position: relative;
}
.swiper-pagination {
	left: 50% !important;
	width: 50% !important;
	left: 0 !important;
	width: 100% !important;
	background:  !important;
	bottom: 2.4rem !important;
	z-index: 999999 !important;
}
@media only screen and (max-width: 1680px) {
	.swiper-pagination {
		bottom: 1.8rem !important;
	}
}
@media only screen and (max-width: 1440px) {
	.swiper-pagination {
		bottom: 20px !important;
	}
}
.swiper-pagination-bullet {
	margin: 0 .6rem !important;
	padding: .25rem;
}
.swiper-pagination-bullet-active {
	background: rgba(255,255,255,.666) !important;	
}
.swiper-button-next,
.swiper-button-prev {
	color: #fff !important;
	opacity: .75;	
	transition: all 0.1s ease-in;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	opacity: 1;	
}
.swiper-button-disabled {
	opacity: .333;
}
.swiper-button-next {
	right: 3% !important;		
}
.swiper-button-prev {
	left: 3% !important;		
}

/* ================================================================================= */
/* SWIPER OVERLAY
/* ================================================================================= */

.overlay .swiper-button-prev,
.overlay .swiper-button-next {
	opacity: 0;
}
.overlay:hover .swiper-button-prev,
.overlay:hover .swiper-button-next {
	opacity: .95;
}
.overlay .swiper-button-prev {
	left: 0 !important;
}
.overlay .swiper-button-next {
	right: 0 !important;
}
.overlay .swiper-button-prev:after,
.overlay .swiper-button-next:after {
	padding: 1rem;
	font-size: 180%;
	background: var(--black);	
}

/* ================================================================================= */
/* SWIPER THUMBNAILS
/* ================================================================================= */

.swiperThumbnails {
	display: block !important;
	position: absolute !important;
	top: auto;
	bottom: 8%;
	left: 12%;
	width: 76%; 
}
.swiperThumbnails > .swiper-wrapper {
	display: grid !important;
	grid-template-columns: 1fr 1fr 1fr;
}
.swiperThumbnails > .swiper-wrapper .swiper-slide {
	display: grid !important;
	grid-template-columns: 1fr 3fr;
	grid-gap: 1rem;
	align-items: center;
	position: relative;
	padding: 0 .5rem;
	height: auto;
	text-decoration: none;
}
.swiper-slide-thumb-active img {
	filter: grayscale(100%);
}

/* ================================================================================= */
/* CONTACT FORM */
/* ================================================================================= */

fieldset {
	border: none;
}
.name-email-phone,
.address {
	display: grid;
	grid-gap: .8rem;
}
.name-email-phone {
	grid-template-columns: repeat(3, 1fr);
}
.address {
	grid-template-columns: 3fr 2fr 1fr 1fr;
}
label,
.legend {
	display: block;
	margin: .5rem 0;
	font-size: 90%;
	font-weight: 600;
	line-height: 1.4;
}
input, 
select, 
textarea {
	display: block;
	position: relative;
	margin: .3rem 0 0;
	padding: .6rem .8rem;
	height: auto;
	font-size: 100%;
	color: #656565;	
	background: #fff;
	border: 1px #aaa solid;
	border-radius: 2px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1) inset;
	transition: all .1s ease-in;
	resize: none;
}
input,
textarea {
	width: 100%;
}
textarea {
	height: 240px;
}
.checkboxes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.checkboxes label {
	display: flex;
	align-items: center;
	margin: .5rem 2rem .5rem 0;
	font-weight: 500;
	color: #666;
}
input[type="checkbox"] {
	margin: 0 .7rem 0 .3rem;
	padding: 0;
	width: 12px;
	height: auto;
	box-sizing: border-box;
	transform: scale(1.6);
}