/*Type*/
@font-face {
  font-family: 'modern_hbold';
  src: url("../fonts/ModernH-Bold-webfont.eot");
  src: url("../fonts/ModernH-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ModernH-Bold-webfont.ttf") format("truetype"), url("../fonts/ModernH-Bold-webfont.svg#modern_hbold") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'modern_hecolight';
  src: url("../fonts/ModernH-EcoLight-webfont.eot");
  src: url("../fonts/ModernH-EcoLight-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ModernH-EcoLight-webfont.ttf") format("truetype"), url("../fonts/ModernH-EcoLight-webfont.svg#modern_hecolight") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'modern_hlight';
  src: url("../fonts/ModernH-Light-webfont.eot");
  src: url("../fonts/ModernH-Light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ModernH-Light-webfont.ttf") format("truetype"), url("../fonts/ModernH-Light-webfont.svg#modern_hlight") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'modern_hmedium';
  src: url("../fonts/ModernH-Medium-webfont.eot");
  src: url("../fonts/ModernH-Medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ModernH-Medium-webfont.ttf") format("truetype"), url("../fonts/ModernH-Medium-webfont.svg#modern_hmedium") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Pe-icon-7-stroke';
  src: url("../fonts/Pe-icon-7-stroke.eot?d7yf1v");
  src: url("../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v") format("embedded-opentype"), url("../fonts/Pe-icon-7-stroke.woff?d7yf1v") format("woff"), url("../fonts/Pe-icon-7-stroke.ttf?d7yf1v") format("truetype"), url("../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  /* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  color: #363558;
  background-color: #1c1726;
}

a {
  color: #544173;
  text-decoration: none;
}

h1, h2 {
  font-family: "Vollkorn", serif;
}

/* -------------------------------- 

Patterns - reusable parts of our design

-------------------------------- */
.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 

Header

-------------------------------- */
header {
  height: 170px;
  line-height: 170px;
  text-align: center;
  background: #ffffff;
}
header h1 {
  font-size: 2.2rem;
  color: #363558;
}
@media only screen and (min-width: 600px) {
  header {
    height: 200px;
    line-height: 200px;
  }
  header h1 {
    font-size: 3rem;
  }
}

/* -------------------------------- 

Main content

-------------------------------- */


.cd-main {
  overflow-x: visible;
  background-image:url('../fleet-files/images/bg.jpg');
      background-repeat: no-repeat;
    background-position: top left; 
}
.cd-main::before {
  /* never visible - this is used in jQuery to check the current MQ */
  display: none;
  content: 'mobile';
}
.cd-main > * {
  -webkit-transition: -webkit-transform 0.5s 0.4s;
  -moz-transition: -moz-transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s;
}
.cd-main.fold-is-open > * {
  /* on mobile - translate .cd-main content to the right when the .cd-folding-panel is open */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s 0s;
  -moz-transition: -moz-transform 0.5s 0s;
  transition: transform 0.5s 0s;
}
@media only screen and (min-width: 600px) {
  .cd-main.fold-is-open > * {
    -webkit-transform: translateX(600px);
    -moz-transform: translateX(600px);
    -ms-transform: translateX(600px);
    -o-transform: translateX(600px);
    transform: translateX(600px);
  }
}
@media only screen and (min-width: 1100px) {
  .cd-main::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-main.fold-is-open > * {
    /* reset style - on bigger devices we translate the gallery items */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

.cd-gallery::after {
  clear: both;
  content: "";
  display: table;
}
.cd-gallery::before {
  /* this is the dark layer covering the .cd-gallery when the .cd-folding-panel is open */
  display: block;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
  -moz-transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
  transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
}
.fold-is-open .cd-gallery::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.5s 0s, visibility 0s 0s;
  transition: opacity 0.5s 0s, visibility 0s 0s;
}

.cd-item {
  width: 100%;
  height: 25  0px;
  text-align: center;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s 0.4s;
  -moz-transition: -moz-transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s;
}
.cd-item > a {
  display: table;
  height: 100%;
  width: 100%;
  overflow: hidden;
  color: #165491;
}
.cd-item > a.dark-text {
  color: #363558;
}
.cd-item > a.dark-text b {
  border-color: #363558;
}
.cd-item div {
  display: table-cell;
  vertical-align: middle;
}
.cd-item {
  background-color: #f8f8f8;
}

.cd-item h2 {
  font-size: 2.2rem;
    padding-top:30px;
    padding-bottom:00px;
}
.cd-item p {
  line-height: 1.2;
  font-size: 1.4rem;
  opacity: 0.6;
  padding: 1em 0;
}
.cd-item b {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1em 1.3em;
  border-radius: 50em;
}
@media only screen and (min-width: 1100px) {
  .cd-item {
    width: 50%;
    float: left;
    height: 320px;
    -webkit-transition: -webkit-transform 0.5s 0.4s;
    -moz-transition: -moz-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s;
  }
  .cd-item h2 {
    font-size: 2.5rem;
  }
  .cd-item p {
    font-size: 1.6rem;
  }
  .cd-item h2, .cd-item p {
    /*
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: -webkit-transform 0.3s 0.1s;
    -moz-transition: -moz-transform 0.3s 0.1s;
    transition: transform 0.3s 0.1s;
    */
  }
  .cd-item b {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, transform 0.3s 0s;
  }
  .no-touch .cd-item a:hover h2, .no-touch .cd-item a:hover p {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s;
    transition: transform 0.3s 0s;
  }
  .no-touch .cd-item a:hover b {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.3s 0.1s, -webkit-transform 0.3s 0.1s;
    -moz-transition: opacity 0.3s 0.1s, -moz-transform 0.3s 0.1s;
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
  }
  .fold-is-open .cd-item {
    -webkit-transition: -webkit-transform 0.5s 0s;
    -moz-transition: -moz-transform 0.5s 0s;
    transition: transform 0.5s 0s;
    -webkit-transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    -o-transform: translateX(-400px);
    transform: translateX(-400px);
  }
  .fold-is-open .cd-item:nth-of-type(2n) {
    -webkit-transform: translateX(400px);
    -moz-transform: translateX(400px);
    -ms-transform: translateX(400px);
    -o-transform: translateX(400px);
    transform: translateX(400px);
  }
}

/* -------------------------------- 

folding panel

-------------------------------- */
.cd-folding-panel {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: visibility 0s 0.9s;
  -moz-transition: visibility 0s 0.9s;
  transition: visibility 0s 0.9s;
}
.cd-folding-panel .fold-left,
.cd-folding-panel .fold-right {
  /* the :after elements of .fold-left and .fold-right are the 2 fold sides */
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  /* enable a 3D-space for children elements */
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  perspective: 2000px;
}
.cd-folding-panel .fold-left::after,
.cd-folding-panel .fold-right::after {
  /* 2 fold sides */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s 0.4s, background-color 0.5s 0.4s;
  -moz-transition: -moz-transform 0.5s 0.4s, background-color 0.5s 0.4s;
  transition: transform 0.5s 0.4s, background-color 0.5s 0.4s;
}
.cd-folding-panel .fold-right {
  -webkit-perspective-origin: 0% 50%;
  -moz-perspective-origin: 0% 50%;
  perspective-origin: 0% 50%;
}
.cd-folding-panel .fold-right::after {
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: translateX(-100%) rotateY(-90deg);
  -moz-transform: translateX(-100%) rotateY(-90deg);
  -ms-transform: translateX(-100%) rotateY(-90deg);
  -o-transform: translateX(-100%) rotateY(-90deg);
  transform: translateX(-100%) rotateY(-90deg);
  background-color: #c0c3c3;
}
.cd-folding-panel .fold-left {
  /* on mobile only the right fold side is visible */
  display: none;
}
.cd-folding-panel .fold-left::after {
  background-color: #f9fafa;
}

/*
.cd-folding-panel .cd-close {
  position: absolute;
  z-index: 10000;
  display: inline-block;
  top: 59px;
  right: 15px;
  height: 44px;
  width: 44px;
   image replacement
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s;
  -moz-transition: opacity 0.2s 0s;
  transition: opacity 0.2s 0s;
}
.cd-folding-panel .cd-close::after, .cd-folding-panel .cd-close::before {
 /content: '';
  position: absolute;
  height: 3px;
  width: 32px;
  left: 50%;
  top: 50%;
  background-color: #544173;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-folding-panel .cd-close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cd-folding-panel .cd-close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}*/
.cd-folding-panel.is-open {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.cd-folding-panel .cd-close {
	position:absolute;	
	  z-index: 10000;
  top: 59px;
  right: 15px;
  height: 44px;
  width: 44px;
  text-align:center;
  color:#000000;
  
    -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}



.cd-folding-panel .cd-close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cd-folding-panel .cd-close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}


.cd-folding-panel.is-open .fold-right::after,
.cd-folding-panel.is-open .fold-left::after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s 0s, background-color 0.5s 0s;
  -moz-transition: -moz-transform 0.5s 0s, background-color 0.5s 0s;
  transition: transform 0.5s 0s, background-color 0.5s 0s;
}
.cd-folding-panel.is-open .fold-right::after {
  background-color: #f9fafa;
}
.cd-folding-panel.is-open .cd-close {
  opacity: 1;
  -webkit-transition: opacity 0.2s 0.5s;
  -moz-transition: opacity 0.2s 0.5s;
  transition: opacity 0.2s 0.5s;
}
@media only screen and (min-width: 600px) {
  .cd-folding-panel {
    width: 600px;
  }
}
@media only screen and (min-width: 1100px) {
  .cd-folding-panel {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 95%;
  }
  .cd-folding-panel .fold-left,
  .cd-folding-panel .fold-right {
    width: 50%;
    float: left;
    height: 100%;
  }
  .cd-folding-panel .fold-right {
    /* change perspective-origin so that the 2 fold sides have the same vanishing point */
    -webkit-perspective-origin: 0% 50%;
    -moz-perspective-origin: 0% 50%;
    perspective-origin: 0% 50%;
  }
  .cd-folding-panel .fold-right::after {
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
    -moz-transform: translateX(-100%) rotateY(-90deg);
    -ms-transform: translateX(-100%) rotateY(-90deg);
    -o-transform: translateX(-100%) rotateY(-90deg);
    transform: translateX(-100%) rotateY(-90deg);
  }
  .cd-folding-panel .fold-left {
    display: block;
    /* change perspective-origin so that the 2 fold sides have the same vanishing point */
    -webkit-perspective-origin: 100% 50%;
    -moz-perspective-origin: 100% 50%;
    perspective-origin: 100% 50%;
  }
  .cd-folding-panel .fold-left::after {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: translateX(100%) rotateY(90deg);
    -moz-transform: translateX(100%) rotateY(90deg);
    -ms-transform: translateX(100%) rotateY(90deg);
    -o-transform: translateX(100%) rotateY(90deg);
    transform: translateX(100%) rotateY(90deg);
  }
}

.cd-fold-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 4em 2em;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.4s;
  -moz-transition: visibility 0s 0.4s;
  transition: visibility 0s 0.4s;
}
.cd-fold-content > * {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
}
.cd-fold-content h2 {
  font-size: 2.4rem;
  -webkit-transition: -webkit-transform 0.2s 0.2s, opacity 0.2s 0.2s;
  -moz-transition: -moz-transform 0.2s 0.2s, opacity 0.2s 0.2s;
  transition: transform 0.2s 0.2s, opacity 0.2s 0.2s;
}
.cd-fold-content p, .cd-fold-content em {
  line-height: 1.6;
}
.cd-fold-content em {
  display: inline-block;
  margin: 1em 0;
  font-family: "Vollkorn", serif;
  font-size: 1.8rem;
  color: #7a78ae;
  -webkit-transition: -webkit-transform 0.2s 0.1s, opacity 0.2s 0.1s;
  -moz-transition: -moz-transform 0.2s 0.1s, opacity 0.2s 0.1s;
  transition: transform 0.2s 0.1s, opacity 0.2s 0.1s;
}
.cd-fold-content p {
  font-size: 2.4rem;
  -webkit-transition: -webkit-transform 0.2s 0s, opacity 0.2s 0s;
  -moz-transition: -moz-transform 0.2s 0s, opacity 0.2s 0s;
  transition: transform 0.2s 0s, opacity 0.2s 0s;
}
.is-open .cd-fold-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: visible;
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
.is-open .cd-fold-content > * {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.is-open .cd-fold-content h2 {
  -webkit-transition: -webkit-transform 0.2s 0.5s, opacity 0.2s 0.5s;
  -moz-transition: -moz-transform 0.2s 0.5s, opacity 0.2s 0.5s;
  transition: transform 0.2s 0.5s, opacity 0.2s 0.5s;
}
.is-open .cd-fold-content em {
  -webkit-transition: -webkit-transform 0.2s 0.6s, opacity 0.2s 0.6s;
  -moz-transition: -moz-transform 0.2s 0.6s, opacity 0.2s 0.6s;
  transition: transform 0.2s 0.6s, opacity 0.2s 0.6s;
}
.is-open .cd-fold-content p {
  -webkit-transition: -webkit-transform 0.2s 0.7s, opacity 0.2s 0.7s;
  -moz-transition: -moz-transform 0.2s 0.7s, opacity 0.2s 0.7s;
  transition: transform 0.2s 0.7s, opacity 0.2s 0.7s;
  margin-bottom: 50px;
}
@media only screen and (min-width: 600px) {
  .cd-fold-content h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 1100px) {
  .cd-fold-content {
    padding: 4em;
  }
  .cd-fold-content > * {
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  .cd-fold-content em {
    font-size: 2.2rem;
  }
  .cd-fold-content p {
    font-size: 4.6rem;
  }
}

/* -------------------------------- 

Javascript disabled

-------------------------------- */
.no-js .cd-fold-content.single-page {
  position: static;
  visibility: visible;
  height: auto;
  background-color: #dadcdc;
}
.no-js .cd-fold-content.single-page > * {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}


  
  .icons img{

  }

.pe-7s-album:before {
  content: "\e6aa"; }

.pe-7s-arc:before {
  content: "\e6ab"; }

.pe-7s-back-2:before {
  content: "\e6ac"; }

.pe-7s-bandaid:before {
  content: "\e6ad"; }

.pe-7s-car:before {
  content: "\e6ae"; }

.pe-7s-diamond:before {
  content: "\e6af"; }

.pe-7s-door-lock:before {
  content: "\e6b0"; }

.pe-7s-eyedropper:before {
  content: "\e6b1"; }

.pe-7s-female:before {
  content: "\e6b2"; }

.pe-7s-gym:before {
  content: "\e6b3"; }

.pe-7s-hammer:before {
  content: "\e6b4"; }

.pe-7s-headphones:before {
  content: "\e6b5"; }

.pe-7s-helm:before {
  content: "\e6b6"; }

.pe-7s-hourglass:before {
  content: "\e6b7"; }

.pe-7s-leaf:before {
  content: "\e6b8"; }

.pe-7s-magic-wand:before {
  content: "\e6b9"; }

.pe-7s-male:before {
  content: "\e6ba"; }

.pe-7s-map-2:before {
  content: "\e6bb"; }

.pe-7s-next-2:before {
  content: "\e6bc"; }

.pe-7s-paint-bucket:before {
  content: "\e6bd"; }

.pe-7s-pendrive:before {
  content: "\e6be"; }

.pe-7s-photo:before {
  content: "\e6bf"; }

.pe-7s-piggy:before {
  content: "\e6c0"; }

.pe-7s-plugin:before {
  content: "\e6c1"; }

.pe-7s-refresh-2:before {
  content: "\e6c2"; }

.pe-7s-rocket:before {
  content: "\e6c3"; }

.pe-7s-settings:before {
  content: "\e6c4"; }

.pe-7s-shield:before {
  content: "\e6c5"; }

.pe-7s-smile:before {
  content: "\e6c6"; }

.pe-7s-usb:before {
  content: "\e6c7"; }

.pe-7s-vector:before {
  content: "\e6c8"; }

.pe-7s-wine:before {
  content: "\e6c9"; }

.pe-7s-cloud-upload:before {
  content: "\e68a"; }

.pe-7s-cash:before {
  content: "\e68c"; }

.pe-7s-close:before {
  content: "\e680"; }

.pe-7s-bluetooth:before {
  content: "\e68d"; }

.pe-7s-cloud-download:before {
  content: "\e68b"; }

.pe-7s-way:before {
  content: "\e68e"; }

.pe-7s-close-circle:before {
  content: "\e681"; }

.pe-7s-id:before {
  content: "\e68f"; }

.pe-7s-angle-up:before {
  content: "\e682"; }

.pe-7s-wristwatch:before {
  content: "\e690"; }

.pe-7s-angle-up-circle:before {
  content: "\e683"; }

.pe-7s-world:before {
  content: "\e691"; }

.pe-7s-angle-right:before {
  content: "\e684"; }

.pe-7s-volume:before {
  content: "\e692"; }

.pe-7s-angle-right-circle:before {
  content: "\e685"; }

.pe-7s-users:before {
  content: "\e693"; }

.pe-7s-angle-left:before {
  content: "\e686"; }

.pe-7s-user-female:before {
  content: "\e694"; }

.pe-7s-angle-left-circle:before {
  content: "\e687"; }

.pe-7s-up-arrow:before {
  content: "\e695"; }

.pe-7s-angle-down:before {
  content: "\e688"; }

.pe-7s-switch:before {
  content: "\e696"; }

.pe-7s-angle-down-circle:before {
  content: "\e689"; }

.pe-7s-scissors:before {
  content: "\e697"; }

.pe-7s-wallet:before {
  content: "\e600"; }

.pe-7s-safe:before {
  content: "\e698"; }

.pe-7s-volume2:before {
  content: "\e601"; }

.pe-7s-volume1:before {
  content: "\e602"; }

.pe-7s-voicemail:before {
  content: "\e603"; }

.pe-7s-video:before {
  content: "\e604"; }

.pe-7s-user:before {
  content: "\e605"; }

.pe-7s-upload:before {
  content: "\e606"; }

.pe-7s-unlock:before {
  content: "\e607"; }

.pe-7s-umbrella:before {
  content: "\e608"; }

.pe-7s-trash:before {
  content: "\e609"; }

.pe-7s-tools:before {
  content: "\e60a"; }

.pe-7s-timer:before {
  content: "\e60b"; }

.pe-7s-ticket:before {
  content: "\e60c"; }

.pe-7s-target:before {
  content: "\e60d"; }

.pe-7s-sun:before {
  content: "\e60e"; }

.pe-7s-study:before {
  content: "\e60f"; }

.pe-7s-stopwatch:before {
  content: "\e610"; }

.pe-7s-star:before {
  content: "\e611"; }

.pe-7s-speaker:before {
  content: "\e612"; }

.pe-7s-signal:before {
  content: "\e613"; }

.pe-7s-shuffle:before {
  content: "\e614"; }

.pe-7s-shopbag:before {
  content: "\e615"; }

.pe-7s-share:before {
  content: "\e616"; }

.pe-7s-server:before {
  content: "\e617"; }

.pe-7s-search:before {
  content: "\e618"; }

.pe-7s-film:before {
  content: "\e6a5"; }

.pe-7s-science:before {
  content: "\e619"; }

.pe-7s-disk:before {
  content: "\e6a6"; }

.pe-7s-ribbon:before {
  content: "\e61a"; }

.pe-7s-repeat:before {
  content: "\e61b"; }

.pe-7s-refresh:before {
  content: "\e61c"; }

.pe-7s-add-user:before {
  content: "\e6a9"; }

.pe-7s-refresh-cloud:before {
  content: "\e61d"; }

.pe-7s-paperclip:before {
  content: "\e69c"; }

.pe-7s-radio:before {
  content: "\e61e"; }

.pe-7s-note2:before {
  content: "\e69d"; }

.pe-7s-print:before {
  content: "\e61f"; }

.pe-7s-network:before {
  content: "\e69e"; }

.pe-7s-prev:before {
  content: "\e620"; }

.pe-7s-mute:before {
  content: "\e69f"; }

.pe-7s-power:before {
  content: "\e621"; }

.pe-7s-medal:before {
  content: "\e6a0"; }

.pe-7s-portfolio:before {
  content: "\e622"; }

.pe-7s-like2:before {
  content: "\e6a1"; }§

.pe-7s-plus:before {
  content: "\e623"; }25 

.pe-7s-left-arrow:before {
  content: "\e6a2"; }

.pe-7s-play:before {
  content: "\e624"; }

.pe-7s-key:before {
  content: "\e6a3"; }

.pe-7s-plane:before {
  content: "\e625"; }

.pe-7s-joy:before {
  content: "\e6a4"; }

.pe-7s-photo-gallery:before {
  content: "\e626"; }

.pe-7s-pin:before {
  content: "\e69b"; }

.pe-7s-phone:before {
  content: "\e627"; }

.pe-7s-plug:before {
  content: "\e69a"; }

.pe-7s-pen:before {
  content: "\e628"; }

.pe-7s-right-arrow:before {
  content: "\e699"; }

.pe-7s-paper-plane:before {
  content: "\e629"; }

.pe-7s-delete-user:before {
  content: "\e6a7"; }

.pe-7s-paint:before {
  content: "\e62a"; }

.pe-7s-bottom-arrow:before {
  content: "\e6a8"; }

.pe-7s-notebook:before {
  content: "\e62b"; }

.pe-7s-note:before {
  content: "\e62c"; }

.pe-7s-next:before {
  content: "\e62d"; }

.pe-7s-news-paper:before {
  content: "\e62e"; }

.pe-7s-musiclist:before {
  content: "\e62f"; }

.pe-7s-music:before {
  content: "\e630"; }

.pe-7s-mouse:before {
  content: "\e631"; }

.pe-7s-more:before {
  content: "\e632"; }

.pe-7s-moon:before {
  content: "\e633"; }

.pe-7s-monitor:before {
  content: "\e634"; }

.pe-7s-micro:before {
  content: "\e635"; }

.pe-7s-menu:before {
  content: "\e636"; }

.pe-7s-map:before {
  content: "\e637"; }

.pe-7s-map-marker:before {
  content: "\e638"; }

.pe-7s-mail:before {
  content: "\e639"; }

.pe-7s-mail-open:before {
  content: "\e63a"; }

.pe-7s-mail-open-file:before {
  content: "\e63b"; }

.pe-7s-magnet:before {
  content: "\e63c"; }

.pe-7s-loop:before {
  content: "\e63d"; }

.pe-7s-look:before {
  content: "\e63e"; }

.pe-7s-lock:before {
  content: "\e63f"; }

.pe-7s-lintern:before {
  content: "\e640"; }

.pe-7s-link:before {
  content: "\e641"; }

.pe-7s-like:before {
  content: "\e642"; }

.pe-7s-light:before {
  content: "\e643"; }

.pe-7s-less:before {
  content: "\e644"; }

.pe-7s-keypad:before {
  content: "\e645"; }

.pe-7s-junk:before {
  content: "\e646"; }

.pe-7s-info:before {
  content: "\e647"; }

.pe-7s-home:before {
  content: "\e648"; }

.pe-7s-help2:before {
  content: "\e649"; }

.pe-7s-help1:before {
  content: "\e64a"; }

.pe-7s-graph3:before {
  content: "\e64b"; }

.pe-7s-graph2:before {
  content: "\e64c"; }

.pe-7s-graph1:before {
  content: "\e64d"; }

.pe-7s-graph:before {
  content: "\e64e"; }

.pe-7s-global:before {
  content: "\e64f"; }

.pe-7s-gleam:before {
  content: "\e650"; }

.pe-7s-glasses:before {
  content: "\e651"; }

.pe-7s-gift:before {
  content: "\e652"; }

.pe-7s-folder:before {
  content: "\e653"; }

.pe-7s-flag:before {
  content: "\e654"; }

.pe-7s-filter:before {
  content: "\e655"; }

.pe-7s-file:before {
  content: "\e656"; }

.pe-7s-expand1:before {
  content: "\e657"; }

.pe-7s-exapnd2:before {
  content: "\e658"; }

.pe-7s-edit:before {
  content: "\e659"; }

.pe-7s-drop:before {
  content: "\e65a"; }

.pe-7s-drawer:before {
  content: "\e65b"; }

.pe-7s-download:before {
  content: "\e65c"; }

.pe-7s-display2:before {
  content: "\e65d"; }

.pe-7s-display1:before {
  content: "\e65e"; }

.pe-7s-diskette:before {
  content: "\e65f"; }

.pe-7s-date:before {
  content: "\e660"; }

.pe-7s-cup:before {
  content: "\e661"; }

.pe-7s-culture:before {
  content: "\e662"; }

.pe-7s-crop:before {
  content: "\e663"; }

.pe-7s-credit:before {
  content: "\e664"; }

.pe-7s-copy-file:before {
  content: "\e665"; }

.pe-7s-config:before {
  content: "\e666"; }

.pe-7s-compass:before {
  content: "\e667"; }

.pe-7s-comment:before {
  content: "\e668"; }

.pe-7s-coffee:before {
  content: "\e669"; }

.pe-7s-cloud:before {
  content: "\e66a"; }

.pe-7s-clock:before {
  content: "\e66b"; }

.pe-7s-check:before {
  content: "\e66c"; }

.pe-7s-chat:before {
  content: "\e66d"; }

.pe-7s-cart:before {
  content: "\e66e"; }

.pe-7s-camera:before {
  content: "\e66f"; }

.pe-7s-call:before {
  content: "\e670"; }

.pe-7s-calculator:before {
  content: "\e671"; }

.pe-7s-browser:before {
  content: "\e672"; }

.pe-7s-box2:before {
  content: "\e673"; }

.pe-7s-box1:before {
  content: "\e674"; }

.pe-7s-bookmarks:before {
  content: "\e675"; }

.pe-7s-bicycle:before {
  content: "\e676"; }

.pe-7s-bell:before {
  content: "\e677"; }

.pe-7s-battery:before {
  content: "\e678"; }

.pe-7s-ball:before {
  content: "\e679"; }

.pe-7s-back:before {
  content: "\e67a"; }

.pe-7s-attention:before {
  content: "\e67b"; }

.pe-7s-anchor:before {
  content: "\e67c"; }

.pe-7s-albums:before {
  content: "\e67d"; }

.pe-7s-alarm:before {
  content: "\e67e"; }

.pe-7s-airplay:before {
  content: "\e67f"; }

/* HELPER CLASS 
 * -------------------------- */
/* FA based classes */
/*! Modified from font-awesome helper CSS classes - PIXEDEN
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (CSS: MIT License)
 */
/* makes the font 33% larger relative to the icon container */
.pe-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.pe-2x {
  font-size: 2em; }

.pe-3x {
  font-size: 3em; }

.pe-4x {
  font-size: 4em; }

.pe-5x {
  font-size: 5em; }

.pe-fw {
  width: 1.2857142857142858em;
  text-align: center; }

.pe-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none; }

.pe-ul > li {
  position: relative; }

.pe-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center; }

.pe-li.pe-lg {
  left: -1.8571428571428572em; }

.pe-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

.pe.pull-left {
  margin-right: .3em; }

.pe.pull-right {
  margin-left: .3em; }

.pe-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear; }

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(359deg); } }
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg); } }
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg); }
  100% {
    -o-transform: rotate(359deg); } }
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg); }
  100% {
    -ms-transform: rotate(359deg); } }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }
.pe-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg); }

.pe-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.pe-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg); }

.pe-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.pe-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1); }

.pe-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.pe-stack-1x,
.pe-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.pe-stack-1x {
  line-height: inherit; }

.pe-stack-2x {
  font-size: 2em; }

.pe-inverse {
  color: #ffffff; }

/* Custom classes / mods - PIXEDEN */
.pe-va {
  vertical-align: middle; }

.pe-border {
  border: solid 0.08em #eaeaea; }

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block; }

/* Home Page Carousel */
header.carousel {
  height: 1000px;
  margin-bottom:    00px; }

header.carousel .item,
header.carousel .item.active,
header.carousel .carousel-inner {
  height: 100%; }

header.carousel .fill {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover; }

.carousel-caption {
  position: absolute;
  top: 5%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: none; }

.carousel-caption h1 {
  font-family: "modern_hecolight", Helvetica, sans-serif;
  color: black;
  font-size: 60px;
  margin-bottom: 0px;
  margin-top: 0px; }

.carousel-caption h2 {
  color: #00a7e0;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 0px; }

.carousel-caption h4 {
  font-family: "Open Sans", helvetica;
  font-weight: 300;
  text-transform: none;
  font-size: 16px;
  line-height: 22px;
  color: black;
  padding-top: 30px; }

.carousel-control.right {
  right: 0;
  left: auto;
  top: 45%;
  background-position: 100% 0%;
  background-image: url("../images/right-box-arrow-blue.png");
  background-size: 30%;
  opacity: 1;
  filter: none;
  background-repeat: no-repeat; }

.carousel-control.left {
  background-image: none;
  filter: none;
  text-outline: 0;
  top: 45%;
  background: url("../images/left-box-arrow-blue.png") 0 0;
  background-size: 30%;
  background-repeat: no-repeat;
  opacity: 1; }

section.carousel-bar {
  background-color: #003063;
  text-align: center;
  color: white; }

.carousel-bar .col-md-4.active {
  background-color: #0b1e33; }

.carousel-bar .col-md-4:hover {
  background-color: #0b1e33;
  cursor: pointer; }

.carousel-bar .col-md-4 {
  min-height: 110px; }

.carousel-bar h3 {
  font-family: "modern_hbold", Helvetica, sans-serif;
  font-size: 18px;
  padding-top: 55px; }

.carousel-caption.challenge h3 {
  text-transform: uppercase;
  padding-top: 18px;
  font-family: "modern_hbold", Helvetica, sans-serif;
  color: #003063;
  font-size: 22px; }

.carousel-caption.leader h3 {
  text-transform: uppercase;
  padding-top: 18px;
  font-family: "modern_hbold", Helvetica, sans-serif;
  color: #003063;
  font-size: 28px; 
  text-transform:none; 
  font-family: 'modern_hecolight', sans-serif; 
  line-height:40px; 
}

.carousel-caption.challenge a:hover {
  text-decoration: none; }

.challenge-button {
  margin: 0 auto;
  border: 3px solid #00a7e0;
  border-radius: 0px;
  background-color: #00a7e0;
  margin-top: 40px;
  text-transform: uppercase;
  font-family: "modern_hbold", Helvetica, sans-serif;
  color: #ffffff;
  font-size: 16px;
  line-height: 60px; }

.challenge-button:hover {
  border: 3px solid #003063;
  background-color: #003063;
  color: #ffffff; }

.white.challenge-button {
  border: 3px solid #fff;
  color: #ffffff;
  font-family: "modern_hecolight", Helvetica, sans-serif;
  text-transform: none; 
  border:none;
}

.white.challenge-button:hover {
  border: 3px solid #fff;
  color: #000;
  background-color: #ffffff;
  font-family: "modern_hecolight", Helvetica, sans-serif; }

.carousel-caption.all-new h1 {
  font-family: "modern_hbold", Helvetica, sans-serif;
  text-transform: none;
  color: #fff;
  font-size: 60px;
  margin-bottom: 20px;
  margin-top: 25%; }

.carousel-caption h4 {
  font-family: "Open Sans", helvetica;
  font-weight: 300;
  text-transform: none;
  font-size: 16px;
  line-height: 22px;
  color: #fff; }

.leader > img {
  padding-top: 30px;
  margin: 0 auto; }

.challenge > img {
  margin-top: 70px; }

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #003063; }

.carousel-indicators li {
  border: 1px solid #003063; }

span.icon-next:before {
  font-size: 140px;
  color: #003063;
  display: none; }

span.icon-prev:before {
  font-size: 140px;
  color: #003063;
  display: none; }

video#bgvid {
  min-width: 100%;
  min-height: 100%; }

h2.or {
  margin-top: 65px;
  font-size:22px; }

  .icon-button{
     margin:0 auto;
     margin-top: 34px; 

  }

.icons > img{
  width:27%;
}
@media (max-width: 768px) {
  h2.or {
    margin-top: 10px; }

  .carousel-control.right, .carousel-control.left {
    background-size: 60%; }

  .challenge-button {
    font-size: 12px;
    height: 40px;
    width: 100%;
    border: 3px solid #00a7e0;
    margin-top: 10px; 
    line-height:24px;
  }

  .carousel-caption h1 {
    font-size: 20px;
    margin-top: 4px; }

  .carousel-caption h2 {
    font-size: 16px; }

  .carousel-caption h4 {
    font-size: 18px; }

  .carousel-caption {
    margin-top: 10px; }

  .carousel-caption.all-new h1 {
    font-family: "modern_hbold", Helvetica, sans-serif;
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 25%; }

  .carousel-caption.leader h3 {
    text-transform:none; 
    font-family: 'modern_hecolight', sans-serif; 
    line-height:20px; 
    margin-top:0px; 
    font-size: 14px;
    padding-bottom:10px;
    padding-top: 4px;
  }

  .icon-button{
    margin-top:10px;
  }

  .leader > img {
    padding-top: 10px; } }
.tab-content {
  text-align: left; }

.tab-content h3 {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: none;
  color: #000; }

span.bar {
  font-size: 40px;
  font-weight: 100; }

ul.sos {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 0;
  display: none; }

ul.sos li {
  display: inline;
  list-style-type: none;
  text-transform: uppercase;
  color: black;
  font-size: 18px;
  padding: 30px; }

ul.sos li a {
  color: #000; }

ul.sos li a:hover, ul.sos li a:active, ul.sos li a:focus {
  text-decoration: none; }

ul.sos li.active {
  font-weight: 700;
  color: #000 !important; }

.specs {
  text-align: center; }

.specs h3 {
  text-align: center; }

p.service-details {
  font-size: 22px; }

html,
body {
  height: 100%; }

body {
  margin-top: 0px;
  /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
  font-family: 'Open Sans', helvetica, arial, sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: "modern_hecolight", Helvetica, sans-serif; }

h1 {
  font-size: 40px;
  color: #165491;
  text-transform: uppercase;
  font-family: 'modern_hlight'; }

h2 {
  color: #165491; }

h3 {
  font-size: 30px;
  color: #fff;
  font-family: 'modern_hlight';
  margin-top: -10px; }

h4 {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  font-family: 'modern_hbold'; }


h3.lead-copy{
    text-transform:none; 
    font-family: 'modern_hecolight', sans-serif; 
    line-height:40px; 
}

.service-details p {
  color: #00a7e0;
  font-size: 18px;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px; }

#servicing-section {
  padding-top: 20px;
  padding-bottom: 20px; }

.pe-7s-angle-down {
  color: black;
  font-size: 60px;
  line-height: .4; }

.bold {
  font-family: "modern_hbold", Helvetica, sans-serif !important; }

.pad {
  margin-top: 150px;
  margin-bottom: 100px; }

.navbar-inverse {
  background-color: #165491;
  border-bottom: none;
  color: #fff; }

.navbar .navbar-nav {
  display: inline-block; }

.navbar .navbar-collapse {
  text-align: center; }

.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
  margin-left: 50px; }

.navbar-inverse .navbar-nav > li > a {
  color: #fff;
  text-transform: uppercase;
  font-family: 'modern_hecolight';
  font-weight: 100; }

.navbar-inverse .navbar-nav > li > a:hover {
  color: #165491;
  text-transform: uppercase;
  font-family: 'modern_hecolight';
  font-weight: 100;
  background: #FFFFFF; }

.social a:hover {
  background-color: #165491 !important; }

.container.i10, .container.i20, .container.ix20, .container.i30, .container.ix35 {
  padding-bottom: 60px;
  padding-top: 60px; }

.nav-pills > li, .nav-pills > li {
  float: none;
  display: inline-block;
  *display: inline;
  /* ie7 fix */
  zoom: 1;
  /* hasLayout ie7 trigger */
  color: white;
  padding: 0px;
  margin-right: 40px; }

.nav-pills, .nav-pills {
  text-align: center; }

.nav-pills > li > a {
  line-height: 1px;
  border: 0px solid #ddd;
  color: #fff; }

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
  padding: 0px !important;
  opacity: 0.5;
  line-height: 1px;
  border: 0px solid #ddd;
  color: #fff; }

.first-row > td {
  border-top: 0px solid !important; }

.social:hover {
  background-color: transparent !important; }

.brand-logo {
  margin-top: -2px;
  height: 24px; }

.hunnits {
  width: 100%; }

.fa.biglad {
  font-size: 50px;
  margin-top: 40px; }

a.down-arrow {
  color: #000; }

.dropdown-menu {
  border-radius: 0px;
  font-size: 28px; }

button.dealer-locator {
  font-weight: 300;
  text-align: left;
  font-style: italic;
  color: #ccc;
  font-size: 28px;
  padding-left: 30px;
  border-radius: 0px;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-top: 40px;
  background-image: url("../images/angle-down.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%; }

.header-image {
  display: block;
  width: 100%;
  text-align: center;
  background: url("../images/backer-1.png") no-repeat 0 0 scroll; }

section.main {
  background: url("../images/backer-2.png") no-repeat 0px 50px scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  text-align: center;
   }

section.main img {
  margin: 0 auto; }

section.main h1 {
  font-size: 48px;
  color: #000;
  text-transform: none;
  font-family: 'modern_hecolight', helvetica; }

section.find-a-dealer {
  background: url("../images/dealer-bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 520px;
  text-align: center;
  color: #fff; }

section.find-a-dealer h1 {
  color: #fff;
  font-size: 48px;
  font-family: 'modern_hecolight', helvetica;
  letter-spacing: 3px; }

section.find-a-dealer .fa {
  font-size: 10em; }

section.home-features.warranty {
  margin-top: 120px; }

section.home-features {
  padding-top: 100px;
  padding-bottom: 100px;
  color: #828282;
  font-size: 18px; }

section.home-features h1 {
  font-family: "modern_hecolight", Helvetica, sans-serif; }

section.home-features a {
  color: #828282;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700; }

section.bluetooth {
  background: #87e0fd;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #87e0fd 0%, #53cbf1 40%, #05abe0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #87e0fd), color-stop(40%, #53cbf1), color-stop(100%, #05abe0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, #87e0fd 0%, #53cbf1 40%, #05abe0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, #87e0fd 0%, #53cbf1 40%, #05abe0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, #87e0fd 0%, #53cbf1 40%, #05abe0 100%);
  /* IE10+ */
  background: linear-gradient(135deg, #87e0fd 0%, #53cbf1 40%, #05abe0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87e0fd', endColorstr='#05abe0',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  padding-top: 100px;
  padding-bottom: 100px;
  color: white;
 }

section.bluetooth h1 {
  color: #ffffff; }

section.bluetooth img {
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px; }

section.find-your-dealer {
background-color: #ffffff;
}

section.find-your-dealer h1 {
  color: #0b3054;
  font-family: "modern_hecolight", Helvetica, sans-serif; }

footer {
  padding-top: 60px;
  padding-bottom: 140px;
  background-color: #0b3054;
  border-top: 10px solid #072038;
  font-size: 12px;
  color: #aebac6;
  font-family: "Open Sans", helvetica, sans-serif;
  display: block;
  font-weight: 300; 
}

footer hr {
  border-top: 1px solid #aebac6; }

.footermain {
  color: #aebac6;
  font-family: "Open Sans", helvetica, sans-serif;
  display: block;
  font-weight: 700; }

.footersub {
  color: #aebac6;
  font-family: "Open Sans", helvetica, sans-serif;
  display: block;
  font-weight: 300; }

.home-features h1 {
  font-size: 72px; }

.headline {
  padding-top: 70px; 
  padding-bottom: 50px;
  }

.headline h1 {
  font-size: 80px;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'modern_hecolight'; }

.headline h2 {
  font-size: 36px;
  color: #000;
  text-transform: uppercase;
  font-family: 'modern_hecolight';
  margin-top: 10px;
  margin-bottom: 5px;
  color: #00a7e0; }

.headline h3 {
  font-size: 36px;
  color: #00a7e0;
  text-transform: uppercase;
  font-family: "Open Sans", helvetica, sans-serif;
  line-height: 20px;
  margin-bottom: 20px; }

.headline h3 {
  text-align: center; 
}

h3.flourish{
  font-family: 'modern_hecolight';
  text-transform: none;
}

h3.flourish:before {
  content: url("../images/flourish-left.png"); 
  transform: scale(.5);

}

h3.flourish:after {
  content: url("../images/flourish-right.png"); 
      transform: scale(.5);
}

 h3.flourish:before {
  margin-right: 10px; }

 h3.flourish:after {
  margin-left: 10px; }

.headline p {
  font-size: 24px;
  font-weight: 300; }

.headline sup {
  font-size: 18px;
  color: #165491;
  text-transform: lowercase;
  font-family: 'modern_hlight';
  line-height: 20px; }


.featurette-divider {
  margin: 80px 0; }

.featurette {
  overflow: hidden;
  margin-bottom: 20px; }

.tabel-responsive table {
  width: 40%;
  margin-left: 100px; }

.featurette.blue {
  background-color: #e5f6fc;
  width: 100%; }

.featurette img {
  width: 40%; }

.featurette-heading {
  font-size: 35px;
  color: #165491;
  font-family: 'modern_hmedium'; }

.banner-img {
  position: relative;
  margin: 0 auto; }

.buttons {
  text-align: center;
  margin-top: 200px; }

.offers {
  color: white;
  background-color: #165491;
  text-align: center;
  padding: 20px;
  width: 25%;
  float: left;
  margin-right: 20px;
  text-transform: uppercase;
  margin-left: 25%;
  font-family: 'modern_hlight'; }

.offers p {
  padding-top: 5px; }

.offers a {
  color: #FFFFFF;
  text-decoration: none; }

.offers:hover {
  opacity: 0.75;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out; }

.open > .dropdown-menu {
  display: block;
  max-height: 300px;
  overflow-y: scroll; }


.specs {
  color: #00a7e0;
  font-size: 14px;
  font-family: 'modern_hmedium', helvetica;
  text-transform: uppercase; }

.specs h3 {
  color: #000;
  line-height: auto;
  font-size: 40px;
  margin-top: 20px;
  font-family: 'modern_hecolight', helvetica; }

.last {
  border-right: 0px solid #e2e2e2; }

p.description {
  font-size: 28px;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-family: 'modern_hecolight'; }

p.description span {
  font-size: 46px;
  color: #00a7e0;
  padding: 10px; }

h3.explore {
  font-family: 'modern_hlight';
  font-size: 30px;
  color: #00a7e0; }

h3.explore span {
  font-family: 'modern_hbold';
  color: #00a7e0; }

.find-a-dealer {
  padding-top: 100px; }

/*.right .featurette-heading {
  padding-left:100px;
  
}

.left .featurette-heading {
  padding-left:550px;
  
}
*/
.nbrd {
  border-right: 0px !important; }

.nbbd {
  border-bottom: 0px !important; }

.dealers {
  color: white;
  background-color: #00a8de;
  text-align: center;
  float: left;
  text-transform: uppercase;
  font-family: 'modern_hlight'; }

.dealers p {
  padding-top: 5px; }

.dealers:hover {
  opacity: 0.75;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out; }

.slideshow-block {
  width: 300px;
  height: 300px;
  overflow: hidden; }

p.servicing {
  font-size: 20px;
  margin-bottom:30px; }

p.servicing.small {
  font-size: 12px; }

.slides {
  z-index: 0;
  visibility: hidden; }

.slides.active {
  visibility: visible; }

.slides li img {
  width: 100%; }

.findDealer {
  margin-top: 50px;
  padding-top: 500px;
  background: url("../images/map-bg.jpg") no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  margin-bottom: 0px; }

.terms h2 {
  text-align: center;
  margin-bottom: 15px; }

.secondCar {
  padding-top: 500px;
  height: 500px; }

.image-bg-fluid-height,
.image-bg-fixed-height {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover; }

.image-bg-fluid-height {
  background-color: #e5f6fc;
  padding: 50px;
  margin-bottom: 50px; }

.img-center {
  margin: 0 auto; }

section {
  padding: 0; }

ul#menu {
  list-style-type: none;
  text-align: center;
  padding-left: 50px; }

ul#menu li {
  border-bottom: 2px solid #efefef;
  margin-right: 50px;
  padding-right: 0px;
  padding-bottom: 5px;
  display: inline-block; }

ul#menu .current {
  border-bottom: 2px solid #165491; }

ul#menu li:hover {
  border-bottom: 4px solid #165491; }

ul#menu li a {
  padding: 2px 2px;
  text-decoration: none;
  font-family: 'modern_hlight';
  text-transform: uppercase;
  color: #68759c; }

ul#menu li a:hover {
  color: #165491;
  border: none; }

.table-responsive {
  border: none;
  padding-left: 100px; }

.terms-left {
  width: 50%;
  padding: 0 2.5% 0 0;
  float: left;
  color: #3e3e3e; }

.terms-right {
  width: 50%;
  padding: 0 0 0 2.5%;
  float: right;
  color: #3e3e3e; }

.margarine{
  margin-top: 20px;
}

@media (max-width: 1280px) {
  .headline h1 {
    font-size: 60px; }

  .headline h2 {
    font-size: 40px; }

  .featurette-divider {
    margin: 50px 0; }

  .featurette-heading {
    font-size: 35px; } 
  
  .leader > img{
    padding-top:30px;
  }

  img.banner-img{
    width:80%;
  }

  }
@media (max-width: 991px) {
  .headline h1 {
    font-size: 75px; }

  .headline h2 {
    font-size: 42px; }

  .featurette-divider {
    margin: 40px 0; }

  .featurette-image {
    max-width: 50%; }

  .featurette-image.pull-left {
    margin-right: 50px; }

  .featurette-image.pull-right {
    margin-left: 50px; }

  .featurette-heading {
    font-size: 30px; }

  .left .featurette-heading {
    padding-left: 0%;
    text-align: center; }

  header.carousel {
    height: 1100px; } 
  }

@media(max-width: 991px){

    .navbar-inverse .navbar-nav > li > a {
      font-size: 10px;
    }


}

@media (max-width: 900px) {
  .nav-pills > li, .nav-pills > li {
    margin-right: 0px; }

  .nav > li > a {
    padding: 15px 15px; }

  .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    margin: 0;
    padding: 0px !important; }

  .left .featurette-heading {
    padding-left: 0%;
    text-align: center; }

  .navbar-inverse .navbar-nav > li > a {
    color: #fff;
    text-transform: uppercase;
    font-family: 'modern_hecolight';
    font-weight: 100;
    font-size: 10px; }

  .brand-logo {
    margin-top: -3px;
    height: auto;
    width: 180px; }

h3.flourish{
  font-family: 'modern_hecolight';
  text-transform: none;
}

h3.flourish:before {
  content: ""; 

}

h3.flourish:after {
  content: ""; 
}

     }
@media (max-width: 768px) {
  .container {
    margin: 0 15px; }


  .featurette-divider {
    margin: 40px 0; }

  .featurette-heading {
    font-size: 25px; }

  .right .featurette-heading {
    padding-left: 0%;
    text-align: center; }

  #Layer_1 {
    width: 60px; }

  .left .featurette-heading {
    padding-left: 0%;
    text-align: center; }

  .terms-left {
    width: 90%;
    padding: 0;
    float: left;
    color: #3e3e3e; }

  .terms-right {
    width: 90%;
    padding: 0;
    float: left;
    color: #3e3e3e; }

  .social {
    display: none !important; }

  header.carousel {
    height: 130%;
   }

  .home-features h1 {
    font-size: 30px; }

  section.home-features.warranty {
    margin-top: 10px; }

  section.home-features {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center; }

  p.servicing {
    margin-top: 0px; }

  p.description {
    font-size: 18px; }

  p.description span {
    font-size: 28px;
    color: #00a7e0;
    padding: 10px;
    display: block; } }
@media (max-width: 668px) {
  .headline h1 {
    font-size: 70px; }

  .headline h2 {
    font-size: 32px; }

  .featurette-divider {
    margin: 30px 0; } }

@media (max-width: 640px) {

  .headline {
    padding: 75px 0 25px 0; }

  .headline h1 {
    font-size: 32px; }

  .headline h2 {
    font-size: 23px; }

  h3.scrappage-lead {
      font-size:14px;
     }

    .icons {
      margin-left:35px;
    }
  
  .icons img{
    width:30%;
    float:left;
    padding-right:10px;

  }
  
  
  .icons p{
    font-size:9px;!important
    float:left;
    margin-bottom:10px;
    text-align:left;
    padding-left:20px;

  }
  
   }
@media (max-width: 375px) {
  .featurette-divider {
    margin: 10px 0; }

  .featurette-image {
    max-width: 100%; }

  .featurette-image.pull-left {
    margin-right: 0;
    margin-bottom: 10px; }

  .featurette-image.pull-right {
    margin-bottom: 10px;
    margin-left: 0; }

  .left .featurette-heading {
    padding-left: 0%;
    text-align: center; } }
/* Iphone 5 */
@media only screen and (max-device-width: 380px) {
  .secondCar {
    padding-top: 500px;
    min-height: 690px; } }
@media only screen and (max-device-width: 568px) {
  .secondCar {
    padding-top: 500px;
    min-height: 800px; } }



/* Mobile Phone Styles */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {


  

  .fixer{
    margin-top:90px;
  }
  
  h1 {
    font-size: 40px;
    color: #165491;
    text-transform: uppercase;
    font-family: 'modern_hlight'; }

  h2 {
    color: #165491; }

  h3 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'modern_hlight';
    margin-top: -10px; }

  h4 {
    font-size: 14px;
    color: #FFF;
    text-transform: uppercase;
    font-family: 'modern_hbold'; }

    h3.lead-copy{
    line-height:auto; 
    margin-top:10px;

}

  .social {
    display: none !important; }

  .table-responsive {
    border: none;
    padding-left: 0px !important; }

  .pad {
    margin-top: 10px; }

  .navbar-inverse {
    background-color: #165491;
    border-bottom: none;
    color: #fff; }

  .navbar .navbar-nav {
    display: inline-block; }

  .navbar .navbar-collapse {
    text-align: center; }

  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -30px; }

  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand img {
    width: 100px;
    padding-left: 45px; }

  .navbar-inverse .navbar-nav > li > a {
    color: #fff;
    text-transform: uppercase;
    font-family: 'modern_hecolight';
    font-weight: 100;
    font-size: 24px;
    text-align: left; }

  .navbar-inverse .navbar-nav > li > a:hover {
    color: #165491;
    text-transform: uppercase;
    font-family: 'modern_hecolight';
    font-weight: 100;
    background: #FFFFFF; }

  .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border: none; }

  .navbar-inverse .navbar-toggle {
    border-color: #165491; }

  .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    min-height: 100%; }

  .nav-pills > li, .nav-pills > li {
    float: none;
    display: inline-block;
    color: white;
    padding: 0px;
    margin-right: 0px; }

  .nav-pills, .nav-pills {
    text-align: center; }

  .nav-pills > li > a {
    line-height: 1px;
    border: 0px solid #ddd;
    color: #fff; }

  .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    border: 0px solid #ddd;
    color: #fff;
    width: 288px; }

  #Layer_1 {
    width: 70px; }

  .header-image {
    display: block;
    width: 100%;
    height: 240px;
    text-align: center;
    background: url("../images/banner.jpg") no-repeat center center scroll; }

  header.header-image {
    height: 100%; }

  .headline {
    padding-top: 70px;
    padding-bottom: 10px; }

  .headline h1 {
    font-size: 40px; }

  .headline h2 {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    font-family: 'modern_hecolight';
    margin-top: 00px;
    margin-bottom: 5px;
    color: #00a7e0; }

  .headline h3 {
  font-size: 18px;
  line-height: 0px;
} 



  section.main h1 {
    font-size: 30px; }

  h3.explore {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #00a7e0; }

  .specs h3 {
    font-size: 20px; }

  .specs .col-md-3 {
    font-size: 12px;
    min-height: 180px; }

  §
  section.main {
    padding-top: 25px; }

  .headline sup {
    font-size: 18px;
    color: #165491;
    text-transform: lowercase;
    font-family: 'modern_hlight';
    line-height: 20px; }

  ul.sos {
    margin-top: 10px;
    margin-bottom: 10px; }

  ul.sos li {
    font-size: 12px; }

  .scrap {
    padding-bottom: 10px; }

  .container {
    padding: 0px !important; }

  .featurette-divider {
    margin: 80px 0; }

  .featurette {
    overflow: hidden;
    margin-bottom: 100px;
    padding: 0px; }

  .featurette.blue {
    background-color: #e5f6fc;
    width: 100%; }

  .featurette-image .pull-right {
    margin-left: 0px;
    width: 200px;
    padding-top: 100px; }

  featurette-image .pull-left img {
    margin-left: 0px;
    margin-top: 1000px;
    width: 200px;
    padding-top: 100px !important; }

  .featurette img {
    width: 500px; }

  .featurette-heading {
    font-size: 25px;
    color: #165491;
    font-family: 'modern_hmedium';
    padding-top: 20px; }

  .banner-img {
    position: relative;
    top: 5px;
    width: 600px !important; }

  .buttons {
    text-align: center;
    margin-top: 200px; }

  .offers {
    color: white;
    background-color: #165491;
    text-align: center;
    padding: 20px;
    width: 25%;
    float: left;
    margin-right: 20px;
    text-transform: uppercase;
    margin-left: 25%;
    font-family: 'modern_hlight'; }

  .offers p {
    padding-top: 5px; }

  .offers a {
    color: #FFFFFF;
    text-decoration: none; }

  .offers:hover {
    opacity: 0.75;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out; }

  .dealers {
    color: white;
    background-color: #00a8de;
    text-align: center;
    padding: 20px;
    width: 25%;
    float: left;
    text-transform: uppercase;
    font-family: 'modern_hlight'; }

  .dealers p {
    padding-top: 5px; }

  .dealers:hover {
    opacity: 0.75;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out; }

  .slideshow-block {
    width: 300px;
    height: 300px;
    overflow: hidden; }

  .slides {
    z-index: 0;
    visibility: hidden; }

  .slides.active {
    visibility: visible; }

  .slides li img {
    width: 100%; }

  aside {
    padding: 0px !important;
    margin: 0px; }

  .image-bg-fluid-height,
  .image-bg-fixed-height {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover; }

  .image-bg-fluid-height {
    background-color: #e5f6fc;
    padding: 0px;
    margin-bottom: 50px; }

  .img-center {
    margin: 0 auto; }

  section {
    padding: 75px 0; }

  section.terms-and-conditions {
    padding-top: 20px; }

  ul#menu {
    list-style-type: none;
    text-align: center;
    padding-left: 50px; }

  ul#menu li {
    border-bottom: 2px solid #efefef;
    margin-right: 50px;
    padding-right: 0px;
    padding-bottom: 5px;
    display: inline-block; }

  ul#menu .current {
    border-bottom: 2px solid #165491; }

  ul#menu li:hover {
    border-bottom: 4px solid #165491; }

  ul#menu li a {
    padding: 2px 2px;
    text-decoration: none;
    font-family: 'modern_hlight';
    text-transform: uppercase;
    color: #68759c; }

  ul#menu li a:hover {
    color: #165491;
    border: none; }

  p.servicing {
    margin-top: 10px;
    font-size: 12px; } 
  }
  
  

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  background-color: #f5f5f5; }

  h1.aserv{
    font-size:60px;
    font-family: 'modern_hecolight';
    color: #00a7e0; 
  }

    h1.avalid{
    font-size:60px;
    font-family: 'modern_hecolight';
    color: #ffffff; 
  }

  section.servicing-features.grey{
    background-color:#f7f7f7;
    padding-top:70px;
    padding-bottom:70px;
  }

  section.servicing-features.grey p{
    font-size: 24px;
    color:#929292;
  }

  section.servicing-features.valid{
    background-image: url('../images/wide-car-bg.jpg');
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 90px;
    font-size: 24px;
    color:white;
  }

  section.checkout{
    background-color:#f7f7f7;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 50px;
  }
  
  section.servicing-features.dont-delay {
      padding-top: 70px;
      padding-top:70px;
    }

    section.servicing-features.dont-delay p{
    font-size: 24px;
    color:#929292;
  }

    section.servicing-features.dont-delay p span{
      color:#00a7e0;
    }

  section.checkout h1 {
    font-size: 40px;
    font-family: 'modern_hecolight';
    margin-top: 2px;
    margin-bottom:2px;

  }

  h3.servicing{
    font-size: 30px;
    color: #165491;
    text-transform: uppercase;
    font-family: "modern_hecolight", sans-serif;
    line-height: 36px;
    text-transform: none;

  }


  h3.scrappage-lead{
    font-size: 34px;
    color: #165491;
    text-transform: uppercase;
    font-family: "modern_hecolight", sans-serif;
    line-height: 42px;
    text-transform: none;
    margin-bottom:30px;
    margin-top:0px;

  }

  .terms-button{
    background-color:#f6f8f8;
    padding:20px;
    border-radius:5px;
    margin-bottom:20px;
  }
  .terms-button h2{
    margin: 0px;
    display:inline;
  }

  a#reveal{
    text-decoration: none;
  }

p.diddly{
  color:#999;
  font-family: "modern_hecolight", sans-serif;
  text-transform: none; 
  font-size: 23px;
}

.checkout a:hover{
  text-decoration: none;
}

section.checkout{
  background-color: #00a7e0;
}

section.checkout h1{
  font-size: 28px;
  color:white;
  font-family: 'modern_hbold', sans-serif;

}

section.checkout {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
  h3.servicing {
    font-size: 14px;
    line-height: 18px;
      margin-top: 10px;
  }

  section.servicing-features.grey{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  h1.aserv {
    font-size: 40px;
  }

  section.servicing-features.grey p {
    font-size: 14px;
  }

  h1.avalid {
    font-size: 40px;
  }

  .servicing-features .valid{
    font-size: 14px;
  }

  .fourteen{
    font-size: 14px;
  }

  h1.aserv {
    font-size: 40px;
  }

  section.servicing-features.dont-delay p {
    font-size: 14px;
  }

  .terms-button {
    background-color: #f6f8f8;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 50px;
  }

  section.find-a-dealer h1 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .terms-button h2 {
    margin: 0px;
    display: inline;
    font-size: 17px;
  }

  section.checkout h1 {
    font-size: 18px;
    line-height: 24px;
  }

  .icon-button.sa {
    margin-top: 30px;
  }

  button.dealer-locator {
    font-size: 12px;
  }

  footer{
      padding-top: 10px;
  }

  h3.scrappage-lead {
    margin-top:00px;
    font-size:18px;
    line-height: 25px;
  }

  p.diddly {
    font-size: 12px;
    padding-left: 20px;
  }

  .icons{
    margin-left: 0px;
    margin-bottom:10px;
  }

  h3.scrappage-lead {
    margin-bottom: 10px;  
  }

  .specs h3 {
    font-size: 28px;
  }

  .icons.mido{
    margin-bottom: 30px
  }

  .leader > img {
    padding-top: 5px;
  }

    h1.termsheader{
      font-size:40px;
    }

    h1.termsheader.openw{
      font-size:21px;
    }

  section.checkout {
    padding-top: 50px;
    padding-bottom: 50px;
  }




}

.modal-dialog {
  width: 940px;
  margin: 30px auto;
  z-index: 99999;
}

body {
  background-color: rgb(255, 255, 255);
  font: normal 1em 'Open Sans';
  color: #8e8e8e;

}

.banner_area {
  position: relative;
  float: left;
  width: 100%;
  background-image: url('../images/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.greylad{
  background-color:#f8f8f8;
  padding-bottom: 60px;

}

.body_text {
  width: 65.95%;
  min-height: 118px;
  margin: 15px auto 0;
  font: 1.4em  "Open Sans";
  text-align: center;
  color: #8e8e8e;
}

.break {
  float: left;
  clear: both;
  width: 100%;
  height: 476px;
  margin-top: 97px;
  background-image: url('../images/car_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.car_centre {
  position: relative;
  float: left;
  width: 32%;
  height: 141px;
  margin-left: 1.99349%;
}

.car_centre .car_title {
  width: 99.9945746527%;
  margin: 0 auto;
}

.car_left {
  position: relative;
  float: left;
  width: 31.9986979166%;
  height: 143px;
}

.car_left .car_title,
.car_title-3 {
  margin: 0 auto;
}

.car_right {
  position: relative;
  float: left;
  height: 141px;
}

.car_centre:hover,
.car_left:hover,
.car_right-1:focus,
.car_right:hover {
  opacity: 0.9;
}

.car_right .car_title {
  width: 100.0271355693%;
}

.car_centre .image,
.car_left .image,
.car_right .image {
  margin-right: auto;
  margin-left: auto;
}

.car_title {
  font: 400 1.8em 'modern_hmedium';;
  text-align: center;
  color: #0b3054;
}

.cars {
  display: block;
  width: 1022px;
  height: auto;
  margin: 30px auto 0;
  overflow: hidden;
}

.contact {
  float: left;
  clear: both;
  width: 100%;
  padding-bottom: 200px;
}

.contact .image {
  width: 146px;
  margin: 100px auto 0;
}

.contactnow_btn {
  height: 66px;
  margin: 62px auto 0;
  background-color: #000c65;
  max-width:350px;
}

.contactnow_btn .text {
  margin: 18px auto 0;
  font-family: 'modern_hmedium';
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.cost {
  float: left;
  width: 25%;
  height: 188px;
}

.deposity {
  float: left;
  width: 25%;
  height: 188px;
  margin: 5px 0 0 12.66602%;
}

.cost .image,
.deposity .image,
.simple .image {
  width: 100px;
  margin: 0 auto;
}

.cost .text,
.deposity .text,
.simple .text {
  width: 80%;
  min-height: 89px;
  margin: 16px auto 0;
  font-family: "Open Sans";
  font-size: 1.4em;
  text-align: center;
  color: #8e8e8e;
}

.fleet_cars {
  width: 75%;
  margin: 121px auto 0;
  padding-bottom: 100px;
}

.fleet_header {
  width: 90%;
  min-height: 66px;
  margin: 61px auto 0;
  font: 2.875em  'modern_hecolight';
  text-align: center;
  text-transform: uppercase;
  font-weight:bold;
  color: #0b3054;
}

.fleet_options {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #f8f8f8;
}

.fleet_text {
  float: left;
  clear: both;
  width: 100%;
  min-height: 99px;
  margin-top: 22px;
  font: 1.4em  "Open Sans";
  text-align: center;
  color: #8e8e8e;
}

.image {
  display: block;
  height: auto;
  overflow: hidden;
}

.main {
  float: left;
  clear: both;
  width: 100%;
  background-color: white;
}

.main .container {
  width: 60%;
  height: 193px;
  margin: 51px auto 0;
}

.simple {
  float: left;
  width: 25%;
  height: 188px;
  margin: 5px 0 0 12.33236%;
}

.site_content {
  float: left;
  clear: both;
  width: 100%;
  margin-top: 56px;
}

.slider {
  position: relative;
  float: left;
  clear: both;
  width: 100%;
  padding: 100px 100px 100px;
  background-color: #f8f8f8;
}

.slider .image {
  position: absolute;
}

.slider .text {
  max-width: 80%;
  min-height: 69px;
  margin: 253px auto 0;
  font-size: 1.4em;
  font-weight: 400;
  text-align: center;
  color: #8e8e8e;
}

.table {
  width: 80%;
  height: 179px;
  margin: 13px auto 0;
}

.table .container {
  float: left;
  width: 15%;
  height: 120px;
}

.table .text {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.tabs {
  width: 25.6005859374%;
  height: 24px;
  margin: 0 auto;
}

.tabs .text {
  float: left;
  width: 46.8292682926%;
  min-height: 24px;
  font-family: 'Modern H';
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: rgb(0, 0, 0);
}

.text {
  line-height: 1.38;
}

.videobtn {
  float: left;
  clear: both;
  width: 100%;
  height: 50px;
}

.videobtn .container {
  width: 15.25%;
  height: 50px;
  margin: 0 auto;
}

.videobtn .image {
  float: left;
  width: 50px;
}

.videobtn .text {
  float: left;
  margin: 15px 0 0 9.5286899999%;
  font-family: 'modern_hmedium';
  font-size: 1.3em;
  text-transform: uppercase;
  color: #105293;
}

.why_hyundai {
  clear: both;
  width: 100%;
  margin-top: 52px;
    background-color: white;
}

.why_hyundai .container {
  position: relative;
  height: 132px;
  margin-top: 66px;
}

.why_hyundai .image {
  width: 89px;
  margin-right: auto;
  margin-left: auto;
    text-align: center;

}

.why_hyundai .text {
  font-size: 1.4em;
  font-weight: 400;
  text-align: center;
  color: #8e8e8e;
}

._input {
  display: block;
  width: 39.37%;
  height: 60px;
  margin-right: auto;
  margin-left: auto;
  padding: 15px;
  border: 1px solid #cccccc;
  background-color: rgb(255, 255, 255);
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.38;
  color: #000000;
}

.car_centre-1 {
  z-index: 13;
}

.car_centre-2 {
  z-index: 22;
  margin-top: 59px;
}

.car_left-1 {
  z-index: 10;
  margin-top: -2px;
}

.car_left-2 {
  clear: both;
  z-index: 19;
  margin-top: 57px;
}

.car_right-1 {
  z-index: 16;
  width: 31.9902343749%;
  margin-left: 1.99349%;
}

.car_right-2 {
  z-index: 25;
  width: 31.9895833333%;
  margin: 59px 0 0 1.99089%;
}

.car_title-6 {
  float: left;
  margin-left: -0.02442%;
}

.container-10 {
  margin-left: 2.51709%;
  padding: 2px;
}

.container-11 {
  margin-left: 3.99292%;
}

.container-3 {
  clear: both;
  z-index: 30;
  width: 18.5752604166%;
  margin-left: 17.02344%;
}

.container-4 {
  z-index: 37;
  width: 18.57421875%;
  margin-left: 5.44629%;
}

.container-5 {
  z-index: 33;
  width: 18.57421875%;
  margin-left: 4.84766%;
}

.container-6 {
  width: 100%;
  margin: 0px auto 0;
}

.container-7 {
  margin-left: 8.49976%;
}

.container-8 {
  margin-left: 1.44043%;
}

.container-9 {
  margin-left: 0.03418%;
}

.image-10 {
  width: 80%;
  margin-top: 28px;
}

.image-11 {
  margin-top: 1px;
}

.image-14 {
  top: 294px;
  left: 10.3125%;
  z-index: 41;
  width: 23px;
}

.image-15 {
  top: 294px;
  left: 88.5615234375%;
  z-index: 40;
  width: 23px;
}

.image-16 {
  top: 110px;
  left: 0;
  right: 0;
  z-index: 38;
  width: 304px;
  margin: 0 auto;
}

.image-18 {
  width: 1024px;
  margin: 13px auto 0;
}

.image-5 {
  width: 70%;
  margin-top: 18px;
}

.image-6 {
  width: 70%;
  margin-top: 16px;
}

.image-7 {
  width: 90%;
  margin-top: 17px;
}

.image-8 {
  width: 90%;
  margin-top: 19px;
}

.image-9 {
  width: 80%;
}

.text-1 {
  margin: 78px auto 0;
  font-family: 'modern_hecolight';
  font-size: 5.125em;
  text-align: center;
  text-transform: uppercase;
  color: #0b3054;
}

.text-10 {
  margin: 8px auto 0;
}

.text-13 {
  margin: 27px auto 0;
  font-family: 'modern_hecolight';
  font-size: 2.563em;
  text-align: center;
  color: rgb(0, 0, 0);
}

.text-14 {
  margin-left: -0.19455%;
}

.text-15 {
  margin-left: 6.24452%;
}

.text-2 {
  margin: 0 auto;
  font-family: "Open Sans";
  font-size: 1.4em;
  text-align: center;
  color: #115393;
}

.text-16,
.text-18,
.text-20,
.text-22,
.text-24 {
  margin-top: 5px;
  font-family: 'modern_hecolight';
  font-size: 1.7em;
  color: rgb(0, 0, 0);
}

.text-17,
.text-19,
.text-21,
.text-23,
.text-25 {
  font-family:  'modern_hmedium';
  font-size: 1.6em;
  text-transform: uppercase;
  color: #00a7e0;
}

.text-4 {
  width: 66.4%;
  min-height: 92px;
  margin: 35px auto 0;
  font-size: 1.6em;
  font-weight: 400;
  text-align: center;
  color: #8e8e8e;
}

.text-8 {
  float: left;
  clear: both;
  margin: 7px 0 0 -1.19868%;
}

.text-9 {
  float: left;
  clear: both;
  margin: 8px 0 0 -1.204%;
}

.contact ._input-1 {
  margin-top: 56px;
}

.contact ._input-2,
.contact ._input-3,
.contact ._input-4 {
  margin-top: 35px;
}

.text em,
.text span,
.text strong {
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-color: transparent;
  border-style: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: transparent;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  text-decoration: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  color: inherit;
  opacity: 1;
  word-break: normal;
  word-wrap: normal;
  white-space: normal;
}

@media(max-width: 1200px) {
  .banner_area {
    position: relative;
    z-index: 56;
  }

  .banner_area .videobtn {
    margin-top: 12px;
  }

  .contact .contactnow_btn {
    margin-top: 41px;
  }

  .banner_area .cars,
  .car_centre .image,
  .car_left .image,
  .car_right .image,
  .contact .image {
    height: auto;
  }

  .container .deposity {
    margin-left: 12.6671%;
  }

  .container .image {
    height: auto;
  }

  .container .simple {
    margin-left: 12.33073%;
  }

  .container .table {
    position: relative;
    float: left;
    clear: both;
    width: 79.98046875%;
    height: auto;
    margin-top: 14px;
    margin-right: 0;
    margin-left: 10%;
  }

  .container .tabs {
    float: left;
    clear: both;
    width: 39.6%;
    height: 64px;
    margin-right: 0;
    margin-left: 30.79948%;
  }

  .fleet_cars .car_centre {
    position: relative;
    margin-left: 1.99306%;
  }

  .fleet_cars .car_left {
    position: relative;
  }

  .main {
    position: relative;
    z-index: 68;
  }

  .slider .image {
    height: auto;
  }

  .table .container {
    width: 16.9775390625%;
  }

  .tabs .text {
    position: relative;
  }

  .videobtn .container {
    width: 19.5833333333%;
  }

  .videobtn .text {
    margin-left: 9.52793%;
  }

  .fleet_cars .car_right,
  .why_hyundai .container {
    position: relative;
  }

  .car_right .car_title-6 {
    margin-left: -0.02714%;
  }

  .container .image-18 {
    width: 745px;
    margin-top: 0;
  }

  .container .text-13 {
    margin-top: 300px;
  }

  .container .text-8 {
    margin-left: -1.19173%;
  }

  .container .text-9 {
    margin-left: -1.19874%;
  }

  .fleet_cars .car_centre-1 {
    z-index: 13;
  }

  .fleet_cars .car_centre-2 {
    z-index: 22;
  }

  .fleet_cars .car_left-1 {
    z-index: 10;
  }

  .fleet_cars .car_left-2 {
    z-index: 19;
  }

  .fleet_cars .car_right-1 {
    z-index: 16;
    margin-left: 1.99306%;
  }

  .fleet_cars .car_right-2 {
    z-index: 25;
    margin-left: 1.98958%;
  }

  .slider .image-16 {
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .table .container-10 {
    height: 82px;
    margin-left: 2.91901%;
  }

  .table .container-11 {
    margin-left: 5.67196%;
  }

  .table .container-7 {
    height: 87px;
    margin-left: 2.60155%;
  }

  .table .container-8 {
    height: 87px;
    margin-left: 0;
  }

  .table .container-9 {
    height: 94px;
    margin-left: 1.03867%;
  }

  .tabs .text-14 {
    z-index: 86;
    width: 53.75%;
    margin-top: 20px;
    margin-left: -0.1874300001%;
  }

  .tabs .text-15 {
    clear: both;
    z-index: 87;
    width: 46.7532467532%;
    margin-top: -24px;
    margin-left: 53.24872%;
  }

  .why_hyundai .container-3 {
    z-index: 30;
  }

  .why_hyundai .container-4 {
    z-index: 37;
    margin-left: 5.44531%;
  }

  .why_hyundai .container-5 {
    z-index: 33;
  }

  .contact ._input-1 {
    margin-top: px;
  }
}

@media(max-width: 1024px) {
  body {
    font-size: 1.4em;
  }

  .banner_area {
    position: relative;
    z-index: 56;
  }

  .banner_area .cars {
    width: 751px;
    height: auto;
    margin-top: 28px;
  }

  .banner_area .videobtn {
    margin-top: 0;
  }

  .car_centre .image,
  .car_left .image,
  .car_right .image,
  .contact .image {
    height: auto;
  }

  .container .deposity {
    margin-left: 12.66753%;
  }

  .container .image {
    height: auto;
  }

  .container .simple {
    margin-left: 12.33183%;
  }

  .container .table {
    margin-top: 0;
    margin-left: 9.99756%;
  }

  .container .tabs {
    float: none;
    clear: none;
    width: 39.2578125%;
    height: 45px;
    margin-top: 427px;
    margin-right: auto;
    margin-left: auto;
  }

  .fleet_cars .car_centre {
    position: relative;
    margin-left: 1.99178%;
  }

  .fleet_cars .car_left {
    position: relative;
  }

  .main {
    position: relative;
    z-index: 68;
  }

  .slider .image {
    height: auto;
  }

  .table .container {
    width: 16.9786471489%;
  }

  .tabs .text {
    position: relative;
    width: 46.7205323193%;
    margin-top: 0;
  }

  .videobtn .container {
    width: 100%;
  }

  .videobtn .image {
    margin-left: 39.91547%;
  }

  .videobtn .text {
    margin-top: 14px;
    margin-left: 1.37177%;
  }

  .fleet_cars .car_right,
  .why_hyundai .container {
    position: relative;
  }

  .car_right .car_title-6 {
    margin-left: -0.02544%;
  }

  .container .image-18 {
    float: left;
    clear: both;
    margin-right: 0;
    margin-left: 13.6230499999%;
  }

  .container .text-13 {
    float: left;
    margin-top: 27px;
    margin-right: 0;
    margin-left: 37.74872%;
  }

  .container .text-16,
  .container .text-18,
  .container .text-20,
  .container .text-22,
  .container .text-24 {
    font-size: 2.188em;
  }

  .container .text-17,
  .container .text-19,
  .container .text-21,
  .container .text-23,
  .container .text-25 {
    font-size: 0.875em;
  }

  .container .text-8 {
    margin-left: -1.19116%;
  }

  .container .text-9 {
    margin-left: -1.19947%;
  }

  .fleet_cars .car_centre-1 {
    z-index: 13;
  }

  .fleet_cars .car_centre-2 {
    z-index: 22;
  }

  .fleet_cars .car_left-1 {
    z-index: 10;
  }

  .fleet_cars .car_left-2 {
    z-index: 19;
  }

  .fleet_cars .car_right-1 {
    z-index: 16;
    margin-left: 1.99178%;
  }

  .fleet_cars .car_right-2 {
    z-index: 25;
    margin-left: 1.98975%;
  }

  .slider .image-16 {
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .table .container-10 {
    margin-left: 2.9456699999%;
  }

  .table .container-11 {
    margin-left: 4.04457%;
  }

  .table .container-7 {
    margin-left: 3.59051%;
  }

  .table .container-9 {
    margin-left: 0.03625%;
  }

  .tabs .text-14 {
    z-index: 86;
    margin-left: 0;
  }

  .tabs .text-15 {
    clear: none;
    z-index: 87;
    margin-left: 6.36272%;
  }

  .why_hyundai .container-3 {
    z-index: 30;
    margin-left: 17.02271%;
  }

  .why_hyundai .container-4 {
    z-index: 37;
    margin-left: 5.44586%;
  }

  .why_hyundai .container-5 {
    z-index: 33;
    margin-left: 4.84619%;
  }
  
    .why_hyundai{
		width:100%;
	}
  
}

@media(max-width: 768px) {
  .banner_area {
    position: relative;
    z-index: 56;
  }

  .banner_area .cars {
    position: relative;
    float: left;
    clear: both;
    z-index: 49;
    width: 753px;
    height: auto;
    margin-top: 30px;
    margin-right: 0;
    margin-left: 0.97453%;
  }

  .banner_area .videobtn {
    position: relative;
    z-index: 55;
    margin-top: -28px;
  }

  .contact .contactnow_btn {
  }

  .car_centre .image,
  .car_left .image,
  .car_right .image,
  .contact .image {
    height: auto;
  }

  .container .cost {
    width: 34.9856219571%;
    margin-top: 23px;
    margin-left: -7.87111%;
  }

  .container .deposity {
    float: right;
    clear: both;
    width: 34.9856219571%;
    margin-top: -188px;
    margin-right: -4.06653%;
    margin-left: 0;
  }

  .container .image {
    height: auto;
  }

  .container .simple {
    width: 34.9856219571%;
    margin-top: 23px;
    margin-left: 3.91394%;
  }

  .container .table {
    width: 100%;
    margin-top: 7px;
    margin-left: 0;
  }

  .container .tabs {
    width: 47.65625%;
    margin-top: 340px;
  }

  .fleet_cars .car_left {
    position: relative;
  }

  .fleet_cars .car_centre,
  .fleet_cars .car_right {
    position: relative;
    margin-left: 1.98568%;
  }

  .fleet_options .fleet_cars {
    width: 100%;
  }

  .main {
    position: relative;
    z-index: 68;
    margin-top: -7px;
    border-bottom-width: 100px;
    border-bottom-color: rgb(255, 255, 255);
  }

  .site_content {
    margin-top: 0;
  }

  .slider {
    width: 99.3123372395%;
  }

  .slider .image {
    height: auto;
  }

  .slider .text {
    float: left;
    margin-top: 263px;
    margin-right: 0;
    margin-left: 9.99889%;
  }

  .table .container {
    position: relative;
  }

  .tabs .text {
    position: relative;
    width: 46.779822335%;
  }

  .videobtn .container {
    width: 50%;
    height: auto;
  }

  .videobtn .image {
    margin-left: 22.79867%;
  }

  .videobtn .text {
    margin-top: 16px;
    margin-left: 4.6875%;
  }

  .main .container,
  .main .text-4,
  .why_hyundai .body_text {
	  max-width:1000px;
    width: 80%;
  }

  .why_hyundai .break {
    margin-top: 105px;
  }

  .why_hyundai .container {
    position: relative;
    width: 25%;
  }

  .contact ._input {
    width: 52.8645833333%;
  }

  .container .image-18 {
    margin-left: 1.33057%;
  }

  .container .text-13 {
    float: none;
    margin-top: 54px;
    margin-right: auto;
    margin-left: auto;
  }

  .container .text-8,
  .container .text-9 {
    margin-left: -1.19629%;
  }

  .fleet_cars .car_centre-1 {
    z-index: 13;
  }

  .fleet_cars .car_centre-2 {
    z-index: 22;
  }

  .fleet_cars .car_left-1 {
    z-index: 10;
  }

  .fleet_cars .car_left-2 {
    z-index: 19;
  }

  .fleet_cars .car_right-1 {
    z-index: 16;
  }

  .fleet_cars .car_right-2 {
    z-index: 25;
  }

  .slider .image-15 {
    left: 87.607653542%;
  }

  .slider .image-16 {
    top: 113px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .table .container-10 {
    clear: both;
    z-index: 78;
    width: 25%;
    margin-top: 17px;
    margin-left: 18.38786%;
  }

  .table .container-11 {
    z-index: 81;
    width: 25%;
    margin-top: 17px;
    margin-left: 9.60897%;
  }

  .table .container-7 {
    z-index: 72;
    width: 20%;
    margin-left: 15.19979%;
  }

  .table .container-8 {
    z-index: 75;
    width: 20%;
    margin-left: 5.49927%;
  }

  .table .container-9 {
    z-index: 84;
    width: 20%;
    margin-left: 4.34774%;
  }

  .tabs .text-14 {
    z-index: 86;
    margin-left: 3.9276%;
  }

  .tabs .text-15 {
    z-index: 87;
    margin-left: 1.87842%;
  }

  .why_hyundai .container-3 {
    z-index: 30;
    margin-left: 10.02401%;
  }

  .why_hyundai .container-4 {
    z-index: 37;
    margin-left: 2.21151%;
  }

  .why_hyundai .container-5 {
    z-index: 33;
    margin-left: 2.21151%;
  }
}

@media(max-width: 375px) {
  body {
    font-size: 1em;
  }

  .banner_area {
    position: relative;
    z-index: 56;
  }
  
  .break {
	  display:none;
  }

  .banner_area .cars {
    position: relative;
    float: none;
    clear: none;
    z-index: 49;
    width: 284px;
    height: auto;
    margin-top: 16px;
    margin-right: auto;
    margin-left: auto;
  }

  .banner_area .videobtn {
    position: relative;
    float: none;
    clear: none;
    z-index: 55;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .car_left .image {
    height: auto;
  }

  .car_centre .image,
  .car_right .image {
    height: auto;
  }

  .contact {
    position: relative;
    z-index: 7;
    width: 72.1875%;
    margin-top: -1px;
    margin-left: 12.6125%;
  }

  .contact .image {
    width: 112px;
    height: auto;
    margin-top: 50px;
  }

  .container .deposity {
    float: none;
    clear: none;
    width: 100%;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .container .image {
    height: auto;
  }

  .container .cost,
  .container .simple {
    float: none;
    width: 100%;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .container .table {
    margin-top: 31px;
  }

  .container .tabs {
    float: left;
    clear: both;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .fleet_cars .car_centre {
    position: relative;
    clear: both;
    width: 100%;
    margin-left: 0;
  }

  .fleet_cars .car_left {
    position: relative;
    width: 100%;
  }

  .fleet_cars .car_right {
    position: relative;
    width: 100%;
  }

  .fleet_options .fleet_cars,
  .site_content .why_hyundai {
    margin-top: 0;
  }

  .fleet_options .fleet_text {
    float: none;
    clear: none;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }

  .main {
    position: relative;
    z-index: 68;
    border-bottom-width: 50px;
  }

  .main .container {
    float: left;
    clear: both;
    height: auto;
    margin-top: 0;
    margin-right: 0;
    margin-left: 10%;
    padding-top: 50px;
  }

  .site_content .fleet_options {
    float: left;
    margin-right: 0;
    margin-left: 0;
  }

  .contact ._input,
  .contact .contactnow_btn,
  .slider,
  .videobtn .container {
    width: 100%;
  }

  .slider .image {
    height: auto;
  }

  .slider .text {
    position: relative;
    z-index: 39;
    width: 169.7142857142%;
    margin-top: 186px;
    margin-left: -35.71429%;
	max-width:1200px;
  }

  .table .container {
    position: relative;
    width: 100%;
  }

  .tabs .text {
    position: relative;
    font-size: 0.875em;
  }

  .videobtn .image {
    width: 36px;
    margin-left: 23.6%;
  }

  .videobtn .text {
    margin-top: 8px;
    margin-left: 3.0625%;
  }

  .why_hyundai .body_text {
    margin-top: 39px;
  }

  .why_hyundai .break {
    float: none;
    clear: none;
    margin-top: 66px;
    margin-right: auto;
    margin-left: auto;
  }

  .why_hyundai .container {
    position: relative;
    float: none;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }

  .why_hyundai .fleet_header {
    margin-top: 40px;
  }

  .banner_area .text-1 {
    line-height: 0.88;
  }

  .car_centre .car_title-5 {
    margin-top: 5px;
  }

  .car_centre .image-9 {
    margin-top: 17px;
  }

  .car_right .car_title-6 {
    margin-top: 6px;
    margin-left: -0.025%;
  }

  .car_right .image-10 {
    margin-top: 42px;
  }

  .container .image-18 {
    float: none;
    clear: none;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .container .text-13 {

  }

  .container .text-8 {
    margin-left: -1.1979200001%;
  }

  .container .text-9 {
    margin-left: -1.20313%;
  }

  .container-6 {
    position: relative;
    z-index: 90;
    margin-right: 0;
  }

  .fleet_cars .car_centre-1 {
    z-index: 13;
    margin-top: 32px;
  }

  .fleet_cars .car_centre-2 {
    z-index: 22;
    margin-top: 25px;
  }

  .fleet_cars .car_left-1 {
    z-index: 10;
    margin-top: 10px;
  }

  .fleet_cars .car_left-2 {
    z-index: 19;
    margin-top: 23px;
  }

  .fleet_cars .car_right-1 {
    clear: both;
    z-index: 16;
    margin-top: 25px;
    margin-left: 0;
  }

  .fleet_cars .car_right-2 {
    float: none;
    z-index: 25;
    margin-top: 885px;
    margin-right: auto;
    margin-left: auto;
  }

  .main .text-4 {
    float: left;
    margin-right: 0;
    margin-left: 10%;
    margin-bottom:10%;
  }

  .slider .image-14 {
    top: 307px;
    left: 0;
  }

  .slider .image-15 {
    top: 307px;
    left: 93.0107526881%;
  }

  .slider .image-16 {
    top: 62px;
    left: auto;
    right: 10.358422939%;
    width: 275px;
  }

  .table .container-10 {
    z-index: 78;
    height: 100px;
    margin-top: 0;
    margin-left: -0.025%;
  }

  .table .container-11 {
    float: none;
    z-index: 81;
    margin-top: 406px;
    margin-right: auto;
    margin-left: auto;
  }

  .table .container-7 {
    z-index: 72;
    height: 100px;
    margin-left: 0;
  }

  .table .container-8 {
    clear: both;
    z-index: 75;
    height: 100px;
    margin-left: -0.025%;
  }

  .table .container-9 {
    clear: both;
    z-index: 84;
    height: 100px;
    margin-left: -2.2625%;
  }

  .tabs .text-14 {
    z-index: 86;
    width: 45.6%;
    margin-left: 6.8%;
  }

  .tabs .text-15 {
    float: right;
    clear: both;
    z-index: 87;
    width: 53.0666666666%;
    margin-top: -24px;
    margin-right: 1.06667%;
    margin-left: 0;
  }

  .why_hyundai .container-3 {
    clear: none;
    z-index: 30;
    margin-top: 46px;
  }

  .why_hyundai .container-4 {
    z-index: 37;
    margin-top: 34px;
  }

  .why_hyundai .container-5 {
    z-index: 33;
    margin-top: 42px;
  }
}

.cd-item img{
  padding-top: 0px;
}

@media screen and (max-width: 600px) {
  .cd-item img{
    padding-top: 5px;
  }

  #cars_bannr{
    width:100%;
  }

  


}

@media screen and (min-width: 1200px){
    .row.specs{
      padding-left: 180px;
      padding-right: 180px;
    }

    .inner-car{
      height:19%;
    }


}

@media screen and (min-width: 1600px){

  .cd-item {
    height:400px;
  }

      .to-the-left{
      padding-left: 300px;
    }
    .to-the-right{
      padding-right: 300px;
    }

    .row.specs{
      padding-left: 240px;
      padding-right: 240px;
    }

}




