﻿
@font-face {
  font-family: 'GT America Extended Medium';
  src:
    url('../webfonts/GT-America-Extended-Medium-core.woff2') format('woff2'),
    url('../webfonts/GT-America-Extended-Medium-core.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F, U+20A0-20CF;
}
@font-face {
  font-family: 'GT America Extended Regular';
  src:
    url('../webfonts/GT-America-Extended-Regular-core.woff2') format('woff2'),
    url('../webfonts/GT-America-Extended-Regular-core.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F, U+20A0-20CF;
}

@font-face {
  font-family: 'GT America Mono Regular';
  src:
    url('../webfonts/GT-America-Mono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F, U+20A0-20CF;
}


/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/* HEADER */
.cs-header{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	height: 80px;
	z-index: 100;
	padding-left:8.33333vw;
	padding-right:8.33333vw;
}
.cs-header .cs-logo{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
	height: 60px;
	width: 200px;
	z-index: 10;
}
.cs-header .cs-logo img{	
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 50%;
	transition: ease all 0.16s;
	opacity: 1;
	transition-delay: 0.16s;
}
.cs-header .cs-logo:hover img{	
	opacity: 0;
	transition-delay: 0s;
}
.cs-header .cs-logo:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: ease all 0.16s;
	opacity: 0;
	pointer-events: none;
	background: url(/siteart/logo-text.png);
	background-position: center center;
	background-size: 100% auto;
}
.cs-header .cs-logo:hover:after{
	opacity: 1;
	transition-delay: 0.16s;
}

/*---AESTHETIC--------------------------------*/

.white{
	color: #fff;
}
.red{
	color: #cd1a0a;
}

.bg-img{
	background-size: cover;
	background-position: center center;
}
.bg-tl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: top left;
	background-repeat: no-repeat;
}
.bg-tr{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: top right;
	background-repeat: no-repeat;
}
.bg-bl{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: bottom left;
	background-repeat: no-repeat;
}
.bg-br{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-size: auto auto;
	background-position: bottom right;
	background-repeat: no-repeat;
}

.bg-black{
	background-color: #000;
	color: #fff;
}
.bg-gold{
	background-color: #b3976b;
}
.bg-gold a:hover{
	text-decoration: underline;
}
.bg-gray{
	background-color: #e9eaec;
}
.bg-dark-gray{
	background-color: #1d1d1d;
}

.hero .col-row{
	min-height: calc(100vh - 170px);
	box-sizing: border-box;
}
.hero.bg-overlay{
	position: relative;
}
.hero.bg-overlay:before{
	position: absolute;
	pointer-events: none;
	content: '';
	left: 0;
	right: 50%;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	background: linear-gradient(to right, #031224, transparent);
}

/*---STRUCTURE--------------------------------*/

.relative{
	position: relative;
}
.pad-top{
	padding-top: max(72px, 4vw);
}
.pad-bottom{
	padding-bottom: max(72px, 4vw);
}

.pad-top-half{
	padding-top: max(36px, 2.5vw);
}
.pad-bottom-half{
	padding-bottom: max(36px, 2.5vw);
}
.cs-wrapper{
	padding-left:30px;
	padding-right:30px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
    box-sizing: border-box;
}
/*---TEXT--------------------------------*/
.overline{
	position: relative;
}
.overline:before{
	content: '';
	position: absolute;
	left: 0;
	top: -20px;
	width: 70px;
	height: 3px;
	background: #cd1a0a;
}
.heading-lg.overline:before{
	width: 70px;
}
.heading-md.overline:before{
	width: 55px;
	top: -15px;
}
.heading-xl, .heading-lg, .heading-md, .heading-sm, .heading-xs{
	font-family: 'GT America Extended Medium', sans-serif;
	display: block;
}

.heading-xl{
    font-weight: 400;
	
	font-size: min(72px, 12vw);
	line-height: 1.07;
    letter-spacing: -0.56px;
}
.heading-lg{
    font-weight: 400;
	
	font-size: 2.8125rem;
	line-height: 120%;
    letter-spacing: -0.56px;
}
.heading-md{
    font-weight: 400;
	
	font-size: min(36px, 6vw);
	line-height: 120%;
    letter-spacing: -0.56px;
}
.heading-sm{
    font-weight: 400;
	
	font-size: 24px;
	line-height: 120%;
    letter-spacing: -0.56px;
}
.heading-xs{
	margin: 25px 0;
    font-weight: 400;
	
	font-size: 1rem;
	line-height: 150%;
	letter-spacing: normal;
}
.mono{
	font-family: 'GT America Mono Regular', sans-serif;
    font-weight: 700;
}
.medium{
	font-family: 'GT America Extended Medium', sans-serif;
}
.paragraph{	
	font-family: inter-variable, sans-serif;
	font-weight: 500;
	font-size: 1rem;
	line-height: 150%;
	letter-spacing: -0.015rem;
}
.uppercase{text-transform: uppercase;}
.inter{
	
	font-family: inter-variable, sans-serif;
}

/*---BUTTONS--------------------------------*/

.cta{
	display: inline-block;
        padding: 12px 20px 10px;
        line-height: 18px;
	position: relative;
	font-family: inter-variable, sans-serif;
	font-weight: 500;
	font-size: 14px;
        letter-spacing: 1.12px;
	color: #fff;
	background-color: #000;
	text-align: center;
    box-sizing: border-box;
	transition: ease all 0.3s;
        border-radius: 2px;
}
.cta-gold{
	background: #b3976b;
	color: #000;
}
.cta-gold:hover{
	background: #d9b781;
}
.cta-gold:active{
	background: #a18860;
}
.cta-red{
	background: #cd1a0a;
	color: #fff;
}
.cta-red:hover{
	background: #e11d0b;
	color: #fff;
}
.cta-red:active{
	background: #b91709;
	color: #fff;
}
.cta-outlined{
	transition: ease all 0.3s;
	background: transparent !important;
	color: #000 !important;
	border: solid 1px #000 !important;
}

.cta-outlined:hover{
	background: #f1f1f1 !important;
	color: #000 !important;
	border: solid 1px #a7a8a9 !important;
}
.cta-outlined:active{
	background: #e1dfdd !important;
	color: #000 !important;
	border: solid 1px #d9d9d9 !important;
}

.cs-banner{
	 padding: 30px; 
	transition: ease all 0.3s;
}
.cs-banner .vertical-divider{
	width: 1px;
	background: #000;
	margin: 0;
}
.cs-banner.bg-black:hover{background: #1d1d1d;
}

.cs-panel{
	padding: max(2vw, 30px) max(2.5vw, 30px) max(4vw, 60px);
	background: #fff;
	position: relative;
	z-index: 10;
}

@media only screen and (min-width: 992px){
	#locations > .cs-panel{
		width: calc(100% + 5vw);
	}
	#locations + .bg-img{
		min-height: 700px;
	}
}
@media only screen and (max-width: 991px){

	#locations + .bg-img{
		min-height: 60vw;
	}
}
/*--------FORM STYLES--------------------*/

.custom-form input{
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	outline: none;
	border: none;
	background: #f5f5f5;
	box-sizing: border-box;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;    
	font-family: inter-variable, sans-serif !important;
}
.custom-form input[type="radio"], .custom-form input[type="checkbox"]{
	width: 24px;
}
.custom-form .flex{
	gap: 10px;
	display: flex;
}
.custom-form textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-weight: 300;
	font-size: 14px;
	color: #535b65;
	line-height: 24px;
	resize: none;
	margin-bottom: 10px;
	border-radius: 10px;
	outline: none;
	border: none;
	background: #f5f5f5;
	font-family: inter-variable, sans-serif !important;
}

.CaptchaPanel{
	text-align: left !important;
	font-family: inter-variable, sans-serif !important;
}
.CaptchaPanel img{
	border: unset !important;
	border-radius: 10px;
}
.CaptchaPanel, .CaptchaAnswerPanel, .CaptchaImagePanel, .CaptchaMessagePanel{
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.CaptchaWhatsThisPanel a{
	color: #535b65 !important;
}


/* OTHER */

.mack-breadcrumb {
	font-family: inter-variable, sans-serif;
	background: #000;
    padding: 16px;
    font-size: 18px;
    color: #fff;
    display: flex;text-transform: capitalize;
}
.mack-breadcrumb .mack-crumb-list {
    display: flex;
    padding-left: 0;
	max-width: 1040px;
	width: 100%;
	margin: 1em auto;
}
.mack-breadcrumb .mack-crumb {
    white-space: nowrap;
    color: inherit;
    display: flex;
}
.mack-crumb--active {
    color: var(--c-primary-white);
    font-family: var(--ff-body);
    white-space: nowrap;
    font-weight: 700;
}
.mack-crumb-item {
	display: flex;
}
.mack-crumb-item + .mack-crumb-item::before {
    content: '/';
    margin: 0 10px;
}

/*-------- FOOTER STYLES ----------------*/

.social-row{ display: flex; margin-left: -12px; margin-top: 24px; margin-bottom: 24px;}
.social-row a{ display: flex; justify-content: center; align-items: center; color: #555; height: 48px; width: 48px; font-size: 24px;}
.social-row a:hover{ color: #fff; }

.foot-list a, .foot-text, .foot-text a{
	font-family: inter-variable, sans-serif;
	color: #fff;
	font-weight: 400;
	font-size: 13px;
	line-height: 21px;
	
}
.foot-banner{
	font-family: inter-variable, sans-serif;
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.01em;
	
}.foot-banner a{
	font-family: inter-variable, sans-serif;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	
}
.foot-list a:hover, .foot-text a:hover{
	text-decoration: underline;
	
}
.foot-text ul{
	display: flex; gap: 2vw;
	flex-wrap: wrap;
}

/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1200px) {
	.heading-lg, .heading-md{
		font-size: 32px;
	}
	.heading-sm{
		font-size: 16px;
	}
	.paragraph{
		font-size: 14px;
	}

}
@media only screen and (max-width: 767px) {

	.hero{
		background-image: url("/siteart/hero-mobile.jpg") !important;
	}
	.custom-form .flex{flex-wrap: wrap; gap: 0px;}

}






