@charset "UTF-8";
/* CSS Document */

:root {
  --dark-grey: #292929;
  --brand-grey: #58595b;
  --blue: #468ca8;
  --orange: #f79724;
  --white: #FFFFFF;
  --light-grey: #efefef;
  
}

body { overflow: hidden;}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #efefef;
  /* change if the mask should have another color then white */
  z-index: 2000;
  /* makes sure it stays on top */
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one the screen */
  background-image: url(../images/loading.gif);
  /* path to your loading animation */
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
  /* is width and height divided by two */
}

body {
	font-family:  'futura-pt', open-sans, Calibri, Helvetica, Arial, sans-serif;
	color: var(--dark-grey);	
	font-weight: 400;
    background: #fff;
    overflow-x: hidden !important;
}

h1 {
    font-size: 1.5em;
    font-family: 'futura-pt-bold', 'futura-pt', open-sans, Calibri, sans-serif;
    font-weight: 700;
    color: var(--light-grey);
    text-transform: uppercase;
}

h2 {
    font-size: 1.5em;
    font-family: 'futura-pt-bold', 'futura-pt', open-sans, Calibri, sans-serif;
    font-weight: 700;
    color: var(--orange);
}

h3 {
    font-weight: 700;
    font-family: 'futura-pt-bold', 'futura-pt', open-sans, Calibri, sans-serif;
    font-size: 1.5em;
    color: var(--blue);
    margin-bottom: 1em;
    text-align: center;
}

p {
    font-size: 1.2em;
    line-height: 1.4em;
    
}

.body05 p {
    font-size: 1.1em;
    line-height: 1.3em;
}

.text-lg {
    font-size: 1.3em;
}

.balance {
    text-wrap: balance;
}

.highlight {
    color: var(--orange);
}

strong {
    font-weight: 700;
    font-family: 'futura-pt-bold', 'futura-pt', open-sans, Calibri, sans-serif;
}

p a:link, p a:visited {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease-out;
    
}

p.dark a:link, p.dark a:visited {
    color: var(--light-grey);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.5s ease-out;   
}

p a:active, p a:hover, p.dark a:active, p.dark a:hover {
    color: var(--orange);
    text-decoration: none;
    transition: all 0.5s ease-out;
}

h2 a:link, h2 a:visited {
    color: var(--orange);
    text-decoration: none;
}

h2 a:hover, h2 a:active {
    color: var(--light-grey);
}

::-moz-selection {
    color: var(--white);
    background: var(--blue);
}

::selection {
   color: var(--white);
    background: var(--blue);
}

.nav-link {
    color: var(--light-grey);
    text-transform: uppercase;
    font-family: 'futura-pt-bold', 'futura-pt', open-sans, Calibri, sans-serif;
    font-weight: 700;
}

.bg-light .nav-link {
    color: var(--blue);
}

.navbar-dark {
    height: 142px;
}

@media (min-width: 992px){

.navbar-nav {
    margin-top: -20px;
}
}

@media (min-width: 1200px) {
	.navbar-dark {
		background: url(../images/nav/nav-bg-xl.png) top center no-repeat transparent !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px){
	.navbar-dark {
		background: url(../images/nav/nav-bg-lg.png) top center no-repeat transparent !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.navbar-dark {
		background: url(../images/nav/nav-bg-md.png) top center no-repeat transparent !important;
	}
}

@media (max-width: 768px) {
	.navbar-dark {
		background: url(../images/nav/nav-bg-sm.png) top center no-repeat transparent !important;
	}
}

.nav-link:hover {
    color: var(--orange);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--blue);
    border-bottom: 6px solid var(--blue);
}

@media (max-width: 991px) {
    .offcanvas-body, .offcanvas-header {
        background: var(--dark-grey);
    }
}

.offcanvas-header{
    color: var(--white) !important;
}

.splash {
    height: 95vh;
    height: 95svh;
    padding-top: 125px;
    border-bottom: 5px solid var(--blue);
}

.secondary-splash {
    height: 40vh;
    height: 45svh;
    padding-top: 125px;
}

.content {
    padding-block: 6em;
}

.grey-banner {
    background: var(--brand-grey);
    margin-top: -8em;
    height: 4em;
    width: 100%;
    -webkit-box-shadow: 8px 8px 10px 0 rgba(0,0,0,.25);
    box-shadow: 8px 8px 10px 0 rgba(0,0,0,.25);
    position: relative;
}

.grey-banner h1 { 
    font-size: 1.3em;    
}

@media (min-width: 768px) {
.grey-banner {
    background: var(--brand-grey);
    margin-top: -8em;
    height: 4em;
    width: auto;
    padding-right: 4em !important;
    -webkit-box-shadow: 8px 8px 10px 0 rgba(0,0,0,.25);
    box-shadow: 8px 8px 10px 0 rgba(0,0,0,.25);
    position: relative;
}

.grey-banner h1 { 
    font-size: 1.5em;    
}

.grey-banner:before {
    content:'';
    padding: 2em;
    width: 2em;
    transform: skew(-20deg) !important;
    background: var(--brand-grey);
    display: inline-block;
    position: absolute;
    top: 0;
    right: -2em;
}
}

.bg-light-noise {
    background-image: url("/images/noise.png");
    background-size: 60px 60px;
    background-repeat: repeat;
}

.bg-blue-noise {
    background-image: url("/images/noise-blue.png");
    background-size: 60px 60px;
    background-repeat: repeat;
}

.bg-grey {
    background: var(--light-grey);
}

.bg-dark-grey {
    background: var(--brand-grey);
    border-top: 5px solid var(--blue);
    border-bottom: 5px solid var(--orange);
}

.bg-dark-grey p {
    color: var(--light-grey);
}

.shadow-inner {
    -webkit-box-shadow:inset 0 0 5px 0 rgba(0,0,0,.5);
    box-shadow:inset 0 0 5px 0 rgba(0,0,0,.5);
}

.white-bumper {
    margin-block: -9em 2em;
    background: var(--white);
    border-radius: 20px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.15), 0 -50px 50px 0 rgba(21,63,111,.09);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15), 0 -50px 50px 0 rgba(21,63,111,.09);
    padding-block: 5em;
    padding-inline: 2em;
}

.location .white-bumper {
    padding-block: 2em;
}

.feature {
    font-size: 3em;
    font-weight: 700;
    font-family: 'futura-pt-bold', 'futura-pt', open-sans, Calibri, sans-serif;
    color: var(--orange);
}
.unit {
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 6px;
}

.bumper {
    width: 90%;
}

.bumper img { 
    border-radius: 20px 20px 0 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.15), 0 -50px 50px 0 rgba(21,63,111,.09);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15), 0 -50px 50px 0 rgba(21,63,111,.09);
}

.bumper-btm { 
    background: var(--dark-grey);
    height: 60px;
    width: 100%;
    line-height: 60px;
    padding-left: 20px;
    position: relative;
}

.bumper-btm:before {
    content:'';
    height: 60px;
    width: 25px    ;
    transform: skew(-20deg) !important;
    background: var(--dark-grey);
    display: inline-block;
    position: absolute;
    top: 0;
    right: -12px;
    border-right: 8px solid var(--blue);
}

.bumper-btm a:link, .bumper-btm a:visited {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.2s;
}

.bumper-btm a:active, .bumper-btm a:hover {
    color: var(--blue);   
}

.bumper-btm a span { 
    transition: all 0.2s;
}

.bumper-btm a:hover span {
    padding-left: 5px;
    transition: all 0.2s;
}

.spec-box {
    height: 100%;
}

p.spec {
    margin-bottom: 0;
}

.map {
    height: 650px;
    background: var(--white);
}

.footer { 
    
    color: var(--white);
}

.footer p {
    font-size: 0.9em;
}


.btn-primary { 
  color: var(--orange); 
  background-color: rgba(255,255,255,0.3); 
  border-color: rgba(255,255,255,0.5); 
  font-weight: 700;
  transition: all 0.2s;
  -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,.3);
box-shadow: 0 0 8px 0 rgba(0,0,0,.3);
  
} 
 
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary.active, 
.open .dropdown-toggle.btn-primary { 
  color: var(--blue);
  background-color: rgba(255,255,255,0.8); 
  border-color: rgba(255,255,255,0.8);
} 
 
.btn-primary:active, 
.btn-primary.active, 
.open .dropdown-toggle.btn-primary { 
  background-image: none; 
} 
 
.btn-primary.disabled, 
.btn-primary[disabled], 
fieldset[disabled] .btn-primary, 
.btn-primary.disabled:hover, 
.btn-primary[disabled]:hover, 
fieldset[disabled] .btn-primary:hover, 
.btn-primary.disabled:focus, 
.btn-primary[disabled]:focus, 
fieldset[disabled] .btn-primary:focus, 
.btn-primary.disabled:active, 
.btn-primary[disabled]:active, 
fieldset[disabled] .btn-primary:active, 
.btn-primary.disabled.active, 
.btn-primary[disabled].active, 
fieldset[disabled] .btn-primary.active { 
  background-color: var(--dark-grey); 
  border-color: var(--dark-grey); 
} 
 
.btn-primary .badge { 
  color: var(--white); 
  background-color: var(--blue); 
}

.btn-orange { 
  color: var(--dark-grey); 
  background-color: var(--orange); 
  border-color: var(--orange); 
  font-weight: 700;
  -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,.3);
box-shadow: 0 0 8px 0 rgba(0,0,0,.3);
transition: all 0.2s;
} 
 
.btn-orange:hover, 
.btn-orange:focus, 
.btn-orange:active, 
.btn-orange.active, 
.open .dropdown-toggle.btn-orange { 
  color: var(--blue); 
  background-color: var(--dark-grey); 
  border-color: var(--dark-grey); 
} 
 
.btn-orange:active, 
.btn-orange.active, 
.open .dropdown-toggle.btn-orange { 
  background-image: none; 
} 
 
.btn-orange.disabled, 
.btn-orange[disabled], 
fieldset[disabled] .btn-orange, 
.btn-orange.disabled:hover, 
.btn-orange[disabled]:hover, 
fieldset[disabled] .btn-orange:hover, 
.btn-orange.disabled:focus, 
.btn-orange[disabled]:focus, 
fieldset[disabled] .btn-orange:focus, 
.btn-orange.disabled:active, 
.btn-orange[disabled]:active, 
fieldset[disabled] .btn-orange:active, 
.btn-orange.disabled.active, 
.btn-orange[disabled].active, 
fieldset[disabled] .btn-orange.active { 
  background-color: var(--orange); 
  border-color: var(--orange); 
} 
 
.btn-orange .badge { 
  color: var(--orange); 
  background-color: var(--blue); 
}

/* MEDIA QUERIES
------------------------*/

/* Small devices (landscape phones, 576px and up)*/
@media (max-width: 576px) { 
    .mt-sm, .mt-xs {
        margin-top: 0;
    }
}

/* Small devices (landscape phones, 576px and up)*/
@media (max-width: 767px) {
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {

    .grey-banner, .grey-banner:before { 
        height: 6em;
    }
    
    .body03 .grey-banner,
    .body03 .grey-banner:before, 
    .body05 .grey-banner, 
    .body05 .grey-banner:before {
        height: 4em;
    }

    .mt-sm {
        margin-top: 0;
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 

}

/*X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { }


