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

:root {
  --dark-grey: #444444;
  --xlight-grey: #f7f7f7;
  --blue: #153f6f;
  --steel: #7a97a9;
  --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:  montserrat, open-sans, Calibri, Helvetica, Arial, sans-serif;
	color: var(--dark-grey);	
	font-weight: 300;
    background: #fff;
    overflow-x: hidden !important;
}

h1 {
    font-weight: 800;
    font-size: 1.75em;
    text-transform: uppercase;
}

h2 {
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 1.7em;
}

h3 {
    font-weight: 700;
    font-size: 1.2em;
    text-transform: uppercase;
}

h4 {
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--blue);
}

p {
    font-size: 1.05em;
    line-height: 1.3em;
    
}

p.text-sm {
    font-size: 0.95em;
}

.light-text {
    color: var(--white) !important;
}

strong {
    font-weight: 600;
}

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(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease-out;   
}

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

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

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

.mb-8 {
    margin-bottom: 7em;
}

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

.splash {
    height: 90vh;
}

.video {
	height: 90vh;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.gradient-blue {
    background:  url("../images/noise.png") 125px 125px repeat, linear-gradient(0deg, rgba(13,37,73,1), rgba(21,56,109,1));
    -webkit-box-shadow:inset 0 0 10px 0 rgba(0,0,0,.5);
box-shadow:inset 0 0 10px 0 rgba(0,0,0,.5);
}

.navbar {
    background: var(--xlight-grey);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-link {
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.9em;
}

.nav-link:hover {
    color: var(--steel);
    transition: all ease-in-out 200ms;
    -webkit-box-shadow: 0 4px 0 0 var(--steel);
    box-shadow: 0 4px 0 0 var(--steel);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--steel);
    -webkit-box-shadow: 0 4px 0 0 var(--steel);
    box-shadow: 0 4px 0 0 var(--steel);
}

.navbar-brand img {
    height: 1.75em;
    margin-block: 0.5em;
}

.bumper {
    margin-top: -2.7em;
}

.steel {
    background: var(--steel);
    border-radius: 2em;
    color: var(--white);
    padding: 1em 1em 0;
    text-wrap: balance;
}

.content {
    padding-block: 7em;
}

.gradient-grey {
    background: linear-gradient(90deg, #f2f2f2, #ffffff);
    border-radius: 15px;
    padding: 2em;
}

.grey-highlights {
    color: var(--steel);
    font-size: 1.2em;
}

.bg-grey {
     background: rgb(247,247,247);
background: linear-gradient(180deg, rgba(247,247,247,1) 53%, rgba(221,221,221,1) 100%); 
    border-bottom: 1px solid #d6d6d6;
}

.shadow-btm {
    box-shadow: 0 10px 10px rgba(0,0,0,25);
}

.white-bumper {
    margin-block: -6em 6em;
    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);
}

.white-bumper-sm {
    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);
    background: var(--white);
    min-height: 125px;
}

.col-11.white-bumper {
    padding: 4em 2em;
}

.temp {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--xlight-grey);
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
}

.secondary-heading {
    margin-top: 50px;
    height: 40vh;
    max-height: 345px;
    color: var(--white);
}

.logo {
    max-height: 70px;
}

.location {
    height: 5.5em;    
}

.distance {
    font-size: 4em;
    font-weight: 800;
    color: var(--blue);
}
.unit {
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 6px;
}

.featured {
	padding: 0;
}

.feature-bumper {
    min-height: 200px;
}

.featured .container-fluid {
    padding-left: 0px !important;
    
}

.feature-img {
	width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.accent-text {
    letter-spacing: 3px;
    text-transform: uppercase;
}

.text-lg {
    font-size: 3em;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.footer { 
    background: #2b2b2b;
    color: var(--white);
}

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

.gradient-diagonal {
    background-image: linear-gradient(378deg, rgba(14, 14, 14,0.03) 0%, rgba(14, 14, 14,0.03) 38%,rgba(250, 250, 250,0.03) 38%, rgba(250, 250, 250,0.03) 45%,rgba(113, 113, 113,0.03) 45%, rgba(113, 113, 113,0.03) 100%),linear-gradient(468deg, rgba(148, 148, 148,0.03) 0%, rgba(148, 148, 148,0.03) 36%,rgba(219, 219, 219,0.03) 36%, rgba(219, 219, 219,0.03) 63%,rgba(62, 62, 62,0.03) 63%, rgba(62, 62, 62,0.03) 100%),linear-gradient(423deg, rgb(255,255,255),rgb(255,255,255));
}

.btn-primary { 
  color: var(--white); 
  background-color: var(--blue); 
  border-color: var(--blue); 
  text-transform: uppercase;
  font-weight: 700;
  padding: .75em 1.5em;
  border-radius: 10px;
} 
 
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary.active, 
.open .dropdown-toggle.btn-primary { 
  color: var(--white);
  background-color: var(--steel); 
  border-color: var(--steel); 
} 
 
.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(--blue); 
  border-color: var(--blue); 
} 
 
.btn-primary .badge { 
  color: var(--blue); 
  background-color: var(--white); 
}

.btn-secondary { 
  color: var(--white); 
  background-color: var(--steel); 
  border-color: var(--steel); 
  text-transform: uppercase;
  font-weight: 700;
  padding: .75em 1.5em;
  border-radius: 10px;
} 
 
.btn-secondary:hover, 
.btn-secondary:focus, 
.btn-secondary:active, 
.btn-secondary.active, 
.open .dropdown-toggle.btn-secondary { 
  color: var(--white);
  background-color: var(--blue); 
  border-color: var(--blue); 
} 
 
.btn-secondary:active, 
.btn-secondary.active, 
.open .dropdown-toggle.btn-secondary { 
  background-image: none; 
} 
 
.btn-secondary.disabled, 
.btn-secondary[disabled], 
fieldset[disabled] .btn-secondary, 
.btn-secondary.disabled:hover, 
.btn-secondary[disabled]:hover, 
fieldset[disabled] .btn-secondary:hover, 
.btn-secondary.disabled:focus, 
.btn-secondary[disabled]:focus, 
fieldset[disabled] .btn-secondary:focus, 
.btn-secondary.disabled:active, 
.btn-secondary[disabled]:active, 
fieldset[disabled] .btn-secondary:active, 
.btn-secondary.disabled.active, 
.btn-secondary[disabled].active, 
fieldset[disabled] .btn-secondary.active { 
  background-color: var(--steel); 
  border-color: var(--steel); 
} 
 
.btn-secondary .badge { 
  color: var(--steel); 
  background-color: var(--white); 
}

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

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

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

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

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
.location {
    height: 7em;
}

}

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


