@import url(reset.css);
@import url(toastgrid.css);
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css";
@import url(../partials/icons.css);
@font-face {
  font-family: FuturaLocal;
  src: url("../data/FuturaPTBook.otf") format("opentype");
}

@font-face {
  font-family: FuturaLocal;
  font-weight: bold;
  src: url("../data/FuturaPTHeavy.otf") format("opentype");
}

@font-face {
  font-family: Choplin;
  font-weight: bold;
  src: url("../data/Choplin-Medium-DEMO.otf") format("opentype");
}

p {
  font-size: 1em;
}

h1 {
  font-size: 2.4em;
  text-transform: uppercase;
}

h2 {
  font-size: 2em;
  text-transform: uppercase;
  font-family: "Choplin", serif !important;
}

h3 {
  font-size: 1.5em;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .cd-secondary-nav span {
    display: none;
  }
}

/* --------------------------------

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%;
}

body {
  font-size: 100%;
  font-family: "FuturaLocal", "Futura PT", sans-serif;
  color: #333;
  background-color: #ECF0F1;
}

a {
  color: #378099;
  text-decoration: none;
  transition: ease-in 80ms;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

/* --------------------------------

Main components

-------------------------------- */
.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #ECF0F1;
  z-index: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.cd-main-content .textBox {
  padding: 20px;
}

@media only screen and (min-width: 768px) {
  .cd-main-content .textBox {
    padding: 50px;
  }
}

.cd-main-content .textBox h2 {
  font-weight: 600;
}

.cd-main-content .textBox p {
  line-height: 1.5em;
  padding-top: 20px;
}

.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}

#cd-intro {
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

#cd-intro.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}

header {
  top: 0;
  left: 0;
  height: 100px !important;
  width: 100%;
  z-index: 3;
  background-color: #378099;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}

header.is-fixed {
  position: fixed;
}

#cd-logo {
  display: block;
  float: left;
  margin: 0 0 0 20px;
}

#cd-logo img {
  display: block;
  width: 134px;
  transform: rotate(10deg);
  transition: .3s ease-in-out;
}

#cd-top-nav {
  position: absolute;
  top: 15px;
  right: 120px;
  height: 100%;
  display: none;
}

#cd-top-nav .active {
  color: #378099;
  background-color: white;
}

#cd-top-nav ul {
  height: 100%;
  padding-top: 18px;
}

#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}

#cd-top-nav a {
  display: inline-block;
  padding: .5em;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
}

#cd-top-nav a.current {
  background-color: #378099;
}

.no-touch #cd-top-nav a:hover {
  color: #378099;
  background-color: white;
}

@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block;
  }
}

#cd-menu-trigger {
  position: absolute;
  right: 0;
  top: 15px;
  height: 100%;
  width: 50px;
}

#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: none;
}

#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  top: 34%;
  width: 18px;
  height: 2px;
  background-color: #FFF;
  /* these are the upper and lower lines in the menu menu */
}

#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}

#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}

#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}

#cd-menu-trigger.is-clicked .cd-menu-text {
  color: #FFF;
}

#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(55, 128, 153, 0);
}

#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: white;
}

#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) {
  #cd-menu-trigger {
    width: 110px;
  }
  #cd-menu-trigger .cd-menu-text {
    display: inline-block;
    line-height: 70px;
  }
  #cd-menu-trigger .cd-menu-icon {
    left: auto;
    right: 2.5em;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 1;
  width: 260px;
  background-color: #378099;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .5s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .5s 0s, visibility 0s .2s;
  transition: transform .5s 0s, visibility 0s .4s;
  transition-timing-function: ease-in-out;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
}

#cd-lateral-nav .cd-navigation {
  margin: 10px 0 16px;
}

#cd-lateral-nav .sub-menu {
  padding: 0 10px 20px 15px;
  display: none;
}

#cd-lateral-nav a {
  display: block;
  line-height: 2em;
  padding: 0 16px 0 32px;
  color: #FFF;
}

#cd-lateral-nav a.current {
  background-color: #469ebd;
  color: #FFF;
}

.no-touch #cd-lateral-nav a:hover {
  color: #333;
}

@media only screen and (min-width: 768px) {
  #cd-lateral-nav .cd-navigation {
    margin: 20px 0;
  }
}

#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  transition-timing-function: ease-in-out;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  /* this is the right arrow to show that the item has a submenu  */
}

#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../img/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}

#cd-lateral-nav .socials::after {
  clear: both;
  content: "";
  display: table;
}

#cd-lateral-nav .socials a {
  height: 32px;
  width: 32px;
  float: left;
  padding: 0;
  background-repeat: no-repeat;
  background-size: 128px 64px;
  margin-right: .5em;
  border-radius: 0.25em;
}

#cd-lateral-nav .socials a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------

Secondary Fixed Navigation

-------------------------------- */
.cd-secondary-nav {
  position: relative;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-secondary-nav .icon-steeringwheel {
  font-size: 2.85em !important;
  top: 15px !important;
}

.cd-secondary-nav ul {
  /* mobile first - secondary navigation hidden by default, triggered by tap/click on .cd-secondary-nav-trigger*/
  position: fixed;
  width: 90%;
  max-width: 400px;
  right: 5%;
  bottom: 20px;
  border-radius: 0.25em;
  background: rgba(236, 240, 241, 0.96);
  visibility: hidden;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s;
}

.cd-secondary-nav ul.is-visible {
  visibility: visible;
  font-family: "Choplin", serif;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}

.cd-secondary-nav li a {
  display: block;
  padding: 1.6em;
  border-bottom: 1px solid white;
  color: #000;
}

.cd-secondary-nav li:last-child a {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .cd-secondary-nav {
    z-index: 1;
    height: 100px;
    background-color: rgba(55, 128, 153, 0.96);
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
  }
  .cd-secondary-nav nav, .cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
    height: 100%;
  }
  .cd-secondary-nav ul {
    /* reset navigation values */
    position: static;
    width: auto;
    max-width: 100%;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    text-align: center;
    background-color: transparent;
  }
  .cd-secondary-nav li {
    display: inline-block;
    margin-left: -4px;
  }
  .cd-secondary-nav li a {
    position: relative;
    text-align: center;
    display: block;
    padding: 66px 40px 0 40px;
    border-bottom: none;
    -webkit-transition: padding 0.2s;
    -moz-transition: padding 0.2s;
    transition: padding 0.2s;
  }
  .cd-secondary-nav li a b {
    text-transform: uppercase;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #FFF;
    transition: ease-in 80ms;
    font-family: "Choplin", serif;
  }
  .cd-secondary-nav li a span {
    position: absolute;
    display: inline-block;
    height: 40px;
    top: 13px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: 'the-grand-ascent';
    font-size: 3em;
    color: #FFF;
    transition: ease-in 80ms;
  }
  .cd-secondary-nav li a span img {
    width: 100%;
  }
  .cd-secondary-nav li a:hover b, .cd-secondary-nav li a.active b, .cd-secondary-nav li a:hover span, .cd-secondary-nav li a.active span {
    color: rgba(255, 255, 255, 0.7);
  }
  .cd-secondary-nav.is-fixed {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    position: fixed;
    left: 0;
    top: 0;
    height: 70px;
    width: 100%;
    z-index: 3;
  }
  .cd-secondary-nav.animate-children {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .cd-secondary-nav.animate-children li a {
    padding: 26px 30px 0 30px;
  }
  .cd-secondary-nav.animate-children li a b {
    opacity: 0;
  }
}

.cd-secondary-nav-trigger {
  position: fixed;
  bottom: 20px;
  right: 5%;
  width: 44px;
  height: 44px;
  background: rgba(55, 128, 153, 0.96);
  border: 2px solid #ECF0F1;
  border-radius: 0.25em;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 2;
}

.cd-secondary-nav-trigger span {
  /* the span element is used to create the menu icon */
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFF;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}

.cd-secondary-nav-trigger span::before, .cd-secondary-nav-trigger span::after {
  content: '';
  position: absolute;
  background: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.cd-secondary-nav-trigger span::before {
  right: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.cd-secondary-nav-trigger span::after {
  left: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.cd-secondary-nav-trigger.menu-is-open span {
  background: rgba(235, 111, 78, 0);
  width: 20px;
  height: 2px;
}

.cd-secondary-nav-trigger.menu-is-open span::before, .cd-secondary-nav-trigger.menu-is-open span::after {
  background: white;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
}

.cd-secondary-nav-trigger.menu-is-open span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.cd-secondary-nav-trigger.menu-is-open span::after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

@media only screen and (min-width: 768px) {
  .cd-secondary-nav-trigger {
    display: none;
  }
}

/* --------------------------------

Placeholder Sections

-------------------------------- */
.cd-section {
  margin: 0 auto;
  padding: 2em 0;
}

.cd-section h2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: .6em;
  font-weight: 700;
}

.cd-section p {
  line-height: 1.6;
}

@media only screen and (min-width: 1170px) {
  .cd-section {
    margin: 0 auto;
    padding: 4em 0;
  }
  .cd-section h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-section p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.blur-it {
  filter: blur(4px);
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(55, 128, 153, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  z-index: 5;
}

.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  height: 400px;
  display: block;
  position: relative;
  top: 50%;
  background: #fafafa;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .modal {
    width: 600px;
    margin: 50% 0 0 -300px;
    left: 50%;
  }
}

.modal .form {
  border: 0;
  box-shadow: none;
  padding: 0;
}

.modal-wrapper.open .modal {
  margin-top: -200px;
  opacity: 1;
}

.head {
  width: 100%;
  height: 50px;
  padding: 12px 30px;
  overflow: hidden;
  background: #eb6f4e;
}

.head h3 {
  display: inline;
  color: #FFF;
  font-weight: 600;
}

.btn-close {
  font-size: 1.5em;
  display: block;
  float: right;
  color: #fff;
}

.content {
  padding: 10%;
}

.good-job {
  text-align: center;
}

.textBoxMobile {
  margin-top: -20px;
  padding-top: 0;
}

@media only screen and (min-width: 768px) {
  .textBoxMobile {
    margin-top: 0px;
    padding-top: 20px;
  }
}

.textBoxMobile p:first-child {
  padding-top: 0;
}

@media only screen and (min-width: 768px) {
  .textBoxMobile p:first-child {
    padding-top: 20px;
  }
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.42)), url(../img/pic1.jpg) no-repeat center;
  background-size: cover;
  height: 75vh;
  padding: 15%;
}

@media only screen and (min-width: 583px) {
  .hero {
    padding: 20% 15%;
  }
}

@media only screen and (min-width: 768px) {
  .hero {
    padding: 10% 15%;
  }
}

.heroBox {
  z-index: 1;
  margin-top: 0px;
}

.heroBox .heroBtn {
  text-transform: uppercase;
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
}

.heroBox .heroBtn a {
  padding: 20px 30px;
  background-color: #FFF;
}

.heroBox .heroBtn a:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

.heroBox h1 {
  font-family: "Choplin", serif;
  color: #FFF;
  text-align: center;
  font-weight: 600;
  font-size: 1.75em;
  text-shadow: 0px 0px 15px #333;
}

@media only screen and (min-width: 768px) {
  .heroBox h1 {
    font-size: 3em;
    line-height: 1.2em;
  }
}

.mapBox {
  height: 40vh;
}

@media only screen and (min-width: 583px) {
  .mapBox {
    height: 60vh;
  }
}

@media only screen and (min-width: 768px) {
  .mapBox {
    height: 81vh;
  }
}

@media only screen and (min-width: 861px) {
  .mapBox {
    height: 77vh;
  }
}

@media only screen and (min-width: 1081px) {
  .mapBox {
    height: 59vh;
  }
}

.imgBox {
  border-bottom: 3px solid #eb6f4e;
}

.imgBox img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .imgBox {
    border: 0;
  }
}

.imgBox .Pimg {
  height: 40vh;
  background-size: cover !important;
}

@media only screen and (min-width: 583px) {
  .imgBox .Pimg {
    height: 60vh;
  }
}

@media only screen and (min-width: 768px) {
  .imgBox .Pimg {
    height: 73vh;
  }
}

@media only screen and (min-width: 861px) {
  .imgBox .Pimg {
    height: 67vh;
  }
}

@media only screen and (min-width: 1081px) {
  .imgBox .Pimg {
    height: 59vh;
  }
}

@media only screen and (min-width: 1477px) {
  .imgBox .Pimg {
    height: 43vh;
  }
}

.imgBox .img1 {
  background: url(../img/pic2.jpg) no-repeat center;
}

.imgBox .img2 {
  background: url(../img/carline.jpg) no-repeat center;
}

.imgBox .img3 {
  background: url(../img/startline.jpg) no-repeat center;
}

.imgBox .img4 {
  background: url(../img/carfront.jpg) no-repeat center;
}

.imgBox .img5 {
  background: url(../img/driving.jpg) no-repeat center;
}

.find p {
  padding-bottom: 20px !important;
}

.find .italic {
  font-style: italic;
}

.find #directions {
  padding-top: 20px;
}

.find section {
  display: none;
  padding: 20px 0 0;
  border-top: 1px solid #ddd;
}

.find section p {
  padding-top: 0 !important;
  padding-bottom: 0px !important;
}

.find input {
  display: none;
}

.find label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid transparent;
}

@media only screen and (min-width: 768px) {
  .find label {
    padding: 15px 10px;
  }
}

@media only screen and (min-width: 834px) {
  .find label {
    padding: 15px;
  }
}

@media only screen and (min-width: 993px) {
  .find label {
    padding: 15px 25px;
  }
}

.find label:hover {
  color: #888;
  cursor: pointer;
}

.find input:checked + label {
  color: #555;
  border-bottom: 1px solid #eb6f4e;
  transition: ease-in 80ms;
}

.find #tab1:checked ~ #content1,
.find #tab2:checked ~ #content2,
.find #tab3:checked ~ #content3,
.find #tab4:checked ~ #content4 {
  display: block;
}

@media screen and (max-width: 497px) {
  .find label {
    padding: 10px;
  }
}

#footer {
  height: auto;
  background-color: #378099;
  padding-top: 10px;
  line-height: 1.4em;
  color: #FFF;
}

#footer .btt {
  padding-top: 10px;
}

#footer .btt a:hover {
  color: rgba(255, 255, 255, 0.7);
}

#footer a {
  color: #FFF;
}

#footer a:hover {
  color: #000;
  transition: ease-in 80ms;
}

#footer #footerWrap {
  margin: 0 20px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFF;
}

#footer h3 {
  font-weight: 600;
  font-size: 1.5em;
  line-height: 2em;
  text-transform: uppercase;
}

#footer .box1, #footer .box2, #footer .box3, #footer .box4 {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  #footer .box1 {
    text-align: left;
  }
}

#footer .box1 .sDate {
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  #footer .box3 {
    text-align: right;
  }
}

@media only screen and (min-width: 768px) {
  #footer .box4 {
    margin-top: -44px;
  }
}

#footer .socialIcons {
  padding-bottom: 30px;
}

#footer .socialIcons ul {
  text-align: center;
}

#footer .socialIcons ul li {
  display: inline-block;
  padding: 0 10px;
}

#footer .socialIcons a:hover {
  color: rgba(255, 255, 255, 0.7);
}

strong {
  font-weight: 600;
}

#contact #map {
  width: 100% !important;
  height: 200px !important;
}

#contact .break {
  padding-top: 50px;
}

#contact .subBoxWrapper p {
  margin-left: -10px;
}

#contact .subBoxWrapper .subBox {
  padding: 10px;
  width: 100%;
}

#contact .subBoxWrapper .subBox p {
  background-color: #fafafa;
  padding: 10px;
  transition: ease-in 80ms;
  border: 1px solid #ebebeb;
  box-shadow: rgba(0, 0, 0, 0.14902) 0px 1px 1px 0px, rgba(0, 0, 0, 0.09804) 0px 1px 2px 0px;
}

#contact .subBoxWrapper .subBox p:hover {
  background-color: rgba(250, 250, 250, 0.7);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 2px 0px, rgba(0, 0, 0, 0.2) 0px 2px 3px 0px;
}

#contact h3 {
  padding-top: 10px;
}

#contact p > a {
  color: #000;
}

#contact p > a:hover {
  color: #378099;
}

#contact .alertBox {
  width: 100%;
  margin-bottom: 2em;
  padding: 2em;
  background: #fafafa;
  border: 1px solid #ebebeb;
  box-shadow: rgba(0, 0, 0, 0.14902) 0px 1px 1px 0px, rgba(0, 0, 0, 0.09804) 0px 1px 2px 0px;
  text-align: center;
}

#contact .alertBox i {
  position: inherit;
  font-size: 5em;
  color: #eb6f4e;
}

#contact .alertBox .valid {
  color: green;
}

#contact input[type="radio"] {
  margin-left: -20px;
}

.form {
  border: 1px solid #ebebeb;
  box-shadow: rgba(0, 0, 0, 0.14902) 0px 1px 1px 0px, rgba(0, 0, 0, 0.09804) 0px 1px 2px 0px;
  background-color: #fafafa;
  padding: 20px;
  /* ==========  Select Field Variables ========== */
  /* ==========  Select Field ========== */
  /* Style Select Field */
  /* Remove focus */
  /* Hide label */
  /* Use custom arrow */
  /* Label */
  /* active */
  /* Underline */
  /* active */
  /* Highlight */
  /* active */
  /* Animations */
  /* Button */
  /* Button modifiers */
}

.form h1, .form h3 {
  font-weight: 300;
}

.form h1 {
  color: #636363;
}

.form h3 {
  color: #378099;
}

.form h4 {
  color: #999;
}

.form .formTitle {
  margin-top: 0;
  margin-bottom: 30px;
}

.form .selectTitle {
  margin-left: 5px;
}

.form select {
  font-family: inherit;
  background-color: transparent;
  width: 100%;
  padding: 4px 0;
  font-size: 16px;
  color: rgba(0,0,0, 0.26);
  border: none;
  border-bottom: 1px solid rgba(0,0,0, 0.12);
}

.form select:focus {
  outline: none;
}

.form .mdl-selectfield label {
  display: none;
}

.form .mdl-selectfield select {
  appearance: none;
}

.form .mdl-selectfield {
  position: relative;
}

.form form {
  width: 100%;
  margin: 4em auto;
  padding: 3em 2em 2em 2em;
  background: #fafafa;
}

.form .group {
  position: relative;
  margin-bottom: 45px;
}

.form input[type=text], .form input[type=email] {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  -webkit-appearance: none;
  display: block;
  background: #fafafa;
  color: #636363;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #757575;
}

.form input[type=text]:focus, .form input[type=email]:focus {
  outline: none;
}

.form label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: all 0.2s ease;
}

.form input[type=text]:focus ~ label, .form input[type=text].used ~ label, .form input[type=email]:focus ~ label, .form input[type=email].used ~ label {
  top: -20px;
  transform: scale(0.75);
  left: -2px;
  /* font-size: 14px; */
  color: #378099;
}

.form .bar {
  position: relative;
  display: block;
  width: 100%;
}

.form .bar:before, .form .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #378099;
  transition: all 0.2s ease;
}

.form .bar:before {
  left: 50%;
}

.form .bar:after {
  right: 50%;
}

.form input[type=text]:focus ~ .bar:before, .form input[type=text]:focus ~ .bar:after, .form input[type=email]:focus ~ .bar:before, .form input[type=email]:focus ~ .bar:after {
  width: 50%;
}

.form .highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.form input[type=text]:focus ~ .highlight, .form input[type=email]:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {
  from {
    background: #378099;
  }
  to {
    width: 0;
    background: transparent;
  }
}

.form .button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #378099;
  cursor: pointer;
  transition: all 0.15s ease;
}

.form .button:focus {
  outline: 0;
}

.form .buttonBlue {
  background: #378099;
}

.form .buttonBlue:hover {
  background: #eb6f4e;
}

.form .radio {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  margin-left: 25px;
}

.form .radio h4 {
  margin-left: -20px;
}

.form .check {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  margin-left: 5px;
}

.form i {
  position: absolute;
  left: 97%;
  top: 20px;
  color: red;
}

.logoRotate {
  transform: rotate(0deg) !important;
}
