/****************************
*****************************
********* CSS Reset *********
*****************************
****************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/****************************
*****************************
**** Breakpoint JS check ****
*****************************
****************************/
/*
0 = mobile
0.25 = tablet
0.5 = desktop
*/

#breakpointCheck {
  opacity: 0;
}

@media only screen and (min-width: 767px) {
  #breakpointCheck {
    opacity: 0.25;
  }
}

@media only screen and (min-width: 1025px) {
  #breakpointCheck {
    opacity: 0.5;
  }
}

/****************************
*****************************
********** Utility **********
*****************************
****************************/

html.lockPage {
  overflow: hidden;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.clearLeft {
  clear: left;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.desktopOnly {
  display: none;
}

@media only screen and (min-width: 767px) {

  .mobileOnly {
    display: none;
  }

  .desktopOnly {
    display: inline;
    display: initial;
  }

}

/****************************
*****************************
********** Global ***********
*****************************
****************************/

body {
  background-color: #000000;
}

/****************************
*****************************
*********** Fonts ***********
*****************************
****************************/

@font-face {
  font-family: 'StratumRegular';
  src: url('../fonts/StratumGMC_Web/StratumGMCWeb_EOT/StratumGMCWebRegular.eot');
  src: url('../fonts/StratumGMC_Web/StratumGMCWeb_EOT/StratumGMCWebRegular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_WOFF/StratumGMCWebRegular.woff') format('woff'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_TTF/StratumGMCWebRegular.ttf')  format('truetype'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_SVG/StratumGMCWebRegular.svg#svgFontName') format('svg');
}

@font-face {
  font-family: 'StratumMedium';
  src: url('../fonts/StratumGMC_Web/StratumGMCWeb_EOT/StratumGMCWebMedium.eot');
  src: url('../fonts/StratumGMC_Web/StratumGMCWeb_EOT/StratumGMCWebMedium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_WOFF/StratumGMCWebMedium.woff') format('woff'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_TTF/StratumGMCWebMedium.ttf')  format('truetype'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_SVG/StratumGMCWebMedium.svg#svgFontName') format('svg');
}

@font-face {
  font-family: 'StratumBold';
  src: url('../fonts/StratumGMC_Web/StratumGMCWeb_EOT/StratumGMCWebBold.eot');
  src: url('../fonts/StratumGMC_Web/StratumGMCWeb_EOT/StratumGMCWebBold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_WOFF/StratumGMCWebBold.woff') format('woff'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_TTF/StratumGMCWebBold.ttf')  format('truetype'),
       url('../fonts/StratumGMC_Web/StratumGMCWeb_SVG/StratumGMCWebBold.svg#svgFontName') format('svg');
}

/****************************
*****************************
******** Typography *********
*****************************
****************************/

h1, h2, h3, h4 {
  font-family: 'StratumBold', Arial, sans-serif;
}

p, a, ul, li {
  font-family: 'StratumRegular', Arial, sans-serif;
  font-size: 14px;
}

strong {
  font-family: 'StratumBold', Arial, sans-serif;
}


/****************************
*****************************
*********** Layout **********
*****************************
****************************/

.wrapper {
  width: 100%;
}

.container {
  margin: auto;
  width: 100%;
}

@media only screen and (min-width: 1025px) {

  .container {
    width: 1280px;
  }

}

/****************************
*****************************
************ Hero ***********
*****************************
****************************/

.hero {
  position: relative;
  text-align: center;
  width: 100%;
} 

.hero .vehicle-info {
  color: #ffffff;
  font-family: 'Stratumregular', Arial, sans-serif;
  font-size: 7px;
  line-height: 9px;
  position: absolute;
     top: 35%;
  left: 18%;
  text-align: left;
  text-transform: uppercase;
  z-index: 100;
}

@media only screen and (min-width: 350px) {

  .hero .vehicle-info {
    top: 66%;
  }

}

@media only screen and (min-width: 767px) {

  .hero .vehicle-info {
    font-size: 9px;
    line-height: 12px;
    position: absolute;
    top: 420px;
    left: 940px;
  }

}

.hero .heroImgMobile {
  position: relative;
    top: 0;
    left: 0;
  z-index: 3;
  width: 100%;
  height: auto;
}

.hero .gmc-logo {
  margin-left: -95px;
  position: absolute;
    top: 34px;
  z-index: 4;
}

.hero-text-wrapper {
  box-sizing: border-box;
  position: absolute;
  bottom: 20px;
  padding: 0 20px;
  z-index: 5;
  width: 100%;
}

.hero-text-wrapper h1 {
  color: #ffffff;
  font-family: 'StratumMedium', Arial, sans-serif;
  font-size: 1.8em;
  text-align: left;
  text-transform: uppercase;
}

.hero-text-wrapper h2 {
  color: #918d8d;
  font-family: 'StratumRegular', Arial, sans-serif;
  font-size: 0.9em;
  text-align: left;
  text-transform: uppercase;
}

.hero-text-wrapper h3 {
  color: #e31837;
  font-family: 'StratumMedium', Arial, sans-serif;
  font-size: 0.9em;
  margin-bottom: 0.6em;
  text-align: left;
  text-transform: uppercase;
}

.hero-text-wrapper hr {
  border-color: #e31837;
  border-style: inset;
  border-width: 1px;
  color: #e31837;
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.hero-text-wrapper .leasing-info {
  width: 100%;
  height: auto;
}


@media only screen and (min-width: 767px) {

  .hero .heroImgDesktop {
    width: 100%;
    height: auto;
  }

  .hero .heroTextDesktop {
    position: absolute;
      bottom: 0;
    z-index: 14;
    width: 100%;
    height: auto;
  }

  .hero-content-wrapper {
    box-sizing: border-box;
    padding: 0 30px;
    position: absolute;
      bottom: 14px;
    width: 100%;
  }

  .hero-text-wrapper {
    float: left;
    padding-left: 0px;
    position: static;
    width: auto;
  }

  .hero-text-wrapper h1 {
    font-size: 4em;
  }

  .hero-text-wrapper .leasing-info {
    margin-top: 10px;
    float: right;
    width: 300px;
    height: auto;
  }

  .hero .gmc-logo {
    display: block;
    float: left;
    margin-left: 0px;
    padding-top: 20px;
    position: absolute;
    top: -270px;
    width: 191px;
    z-index: 4;
  }

  .hero-text-wrapper h2 {
    font-size: 1.8em;
  }

  .hero-text-wrapper h3 {
    display: inline-block;
    font-family: 'StratumRegular', Arial, sans-serif;
    font-size: 2em;
    float: left;
    line-height: 1.1em;
    margin-top: 8px;
    margin-bottom: 20px;
    width: 250px;
  }

}

@media only screen and (min-width: 1000px) {

  .hero-text-wrapper {
    padding-left: 45px;
  }

  .hero .gmc-logo {
    position: static;
    top: auto;
  }

  .hero-text-wrapper h2 {
    font-size: 1.6em;  
  }

  .hero-text-wrapper h3 {
/*    font-size: 1.1em;
    padding-right: 10px;*/
  }

}

@media only screen and (min-width: 1025px) {

  .hero {
    height: 800px;
    width: 1280px;
  }

  .hero-content-wrapper {
/*    bottom: 50px;
    padding: 0 60px;*/
  }

  .hero .heroImgDesktop {
    position: absolute;
      left: 0;
  }

  .hero-text-wrapper h2 {
    font-size: 2.4em;
  }

  .hero-text-wrapper h3 {
/*    font-size: 1.78em;
    line-height: 1.1em;
    margin-bottom: 0;
    width: 200px;*/
  }

  .hero-text-wrapper .leasing-info {
    width: 606px;
    height: 99px;
  }

}

ul.truck-hotspots {
  display: none;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

ul.truck-hotspots li {
  background: url('../images/sierra-hotspot.png') center center no-repeat;
  cursor: pointer;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
}

ul.truck-hotspots li.hotspot-grill {
  top: 303px;
  left: 470px;
}

ul.truck-hotspots li.hotspot-headlight {
  top: 390px;
  left: 600px;
}

ul.truck-hotspots li.hotspot-window {
  top: 267px;
  left: 574px;
}

ul.truck-hotspots li.hotspot-rim {
  top: 448px;
  left: 687px;
}

ul.truck-hotspots li.hotspot-door {
  top: 216px;
  left: 721px;
}

ul.truck-hotspots li.hotspot-step {
  top: 479px;
  left: 379px;
}

ul.truck-hotspots li.hotspot-badge {
  top: 387px;
  left: 766px;
}

ul.truck-hotspots li.hotspot-tailgate {
  top: 332px;
  left: 956px;
}

ul.truck-hotspots li.hotspot-back-wheel {
  top: 407px;
  left: 936px;
}

ul.truck-hotspots li div {
  background-color: #ffffff;
  box-sizing: border-box;
  display: none;
  position: absolute;
    bottom: 31px;
    left: 15px;
  z-index: 4;
}

ul.truck-hotspots li div:after {
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #ffffff transparent transparent transparent;
  content: ' ';
  display: block;
  position: absolute;
    bottom: -10px;
    left: 0px;
  width: 0;
  height: 0;
}

ul.truck-hotspots li:hover div, ul.truck-hotspots li:focus div {
  display: inline-block;
}

ul.truck-hotspots li div p {
  color: #000;
  font-size: 12px;
  line-height: 13px;
  margin: 5px 10px;
  white-space: nowrap;
}

@media only screen and (min-width: 1025px) {
  ul.truck-hotspots {
    display: block;
  }
}


/****************************
*****************************
******* Mobile Swiper *******
*****************************
****************************/

.features-wrapper {
  background-color: #ffffff;
  position: relative;
}

.features-swipe .swiper-slide .feature-img-wrapper {
  position: relative;
}

.features-swipe .swiper-slide .feature-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.features-swipe .swiper-slide .feature-img-wrapper h4 {
  background-color: #e31837;
  box-sizing: border-box;
  color: #ffffff;
  font-family: 'StratumMedium', Arial, sans-serif;
  font-size: 1.3em;
  padding: 10px 25px;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.swiper-nav-wrapper .swiper-button-next, .swiper-nav-wrapper .swiper-container-rtl .swiper-button-prev {
  background-image: url('../images/feature-slider-arrow-right.png');
  background-size: 42px 43px;
  float: left;
  margin: 0 10px;
  width: 42px;
  height: 43px;
}

.swiper-nav-wrapper .swiper-button-prev, .swiper-button-prev.swiper-button-disabled {
  background-image: url('../images/feature-slider-arrow-left.png');
  background-size: 42px 43px;
  float: left;
  margin: 0 10px;
  width: 42px;
  height: 43px;
}

.swiper-features-text {
  box-sizing: border-box;
  padding: 36px 44px;
}

.swiper-button-prev, .swiper-button-next {
  top: 30%;
}

.swiper-slide h2 {
  color: #414042;
  font-family: 'StratumBold', Arial, sans-serif;
  line-height: 24px;
}

.swiper-slide p {
  color: #414042;
  font-family: 'StratumRegular', Arial, sans-serif;
  line-height: 20px;
  margin-top: 4px;
}

@media only screen and (min-width: 767px) {
  
  .swiper-wrapper {
    margin: auto;
    max-width: 1280px;
    padding-top: 46px;
  }
  
  .swiper-nav-wrapper {
    padding: 23px 0;
    text-align: center;
    width: 100%;
  }
  
  .swiper-nav-inner {
    display: inline-block;
  }
  
  .swiper-button-prev, .swiper-button-next {
    position: relative;
    top: 20%;
    left: auto;
    right: auto;
  }
  
  .swiper-slide {
    box-sizing: border-box;
    padding: 0 23px;
  }

  .swiper-slide p {
    margin-top: 22px;
  }

  .swiper-features-text {
    padding: 0;
  }

  .swiper-slide .swiper-features-text h2 {
    font-size: 26px;
    margin: 20px 0;
  }

  .swiper-slide .swiper-features-text p {
    font-size: 22px;
    line-height: 28px;
  }

}

@media only screen and (min-width: 1205px) {
  
  .swiper-container {
    width: 1206px;
  }

}

/****************************
*****************************
******** Hero Modal *********
*****************************
****************************/

.heroModal {
  overflow: hidden;
  position: fixed;
    top: 0;
    left: 0;
  z-index: 20;
  height: 0;
  width: 0;
}

.heroModalBg {
  background-color: #000000;
  opacity: 0;
  position: absolute;
    top: 0;
    left: 0;
  z-index: 13;
  height: 100%;
  width: 100%;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

.modalCloseBtn {
  background: url('../images/modal-close-btn.png') center center no-repeat;
  cursor: pointer;
  position: absolute;
    top: 0;
    right: -31px;
  z-index: 14;
  height: 16px;
  width: 16px;
}

@media only screen and (min-width: 767px) {

  .heroModal.active {
    display: block;    
    width: 100%;
    height: 100%;
  }

  .heroModal.active .heroModalBg {
    opacity: 0.8;
  }

}

/****************************
*****************************
************ Map ************
*****************************
****************************/

.map-container {
  width: 100%;
  position: relative;
}

a.skipMap {
  background-color: #ffffff;
  color: #000000;
  height: 0;
  overflow: hidden;
  position: absolute;
    top: 2px;
    right: 0;
  text-decoration: none;
  z-index: 3;
}

a.skipMap p {
  padding: 5px;
}

a.skipMap:focus {
  height: auto;
}

.subheading {
  background-color: #e31837;
  box-sizing: border-box;
  color: #ffffff;
  display: block;
  font-family: 'StratumRegular', Arial, sans-serif;
  font-size: 23px;
  line-height: 23px;
  padding: 10px 35px;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
  width: 100%;
  height: auto;
}

.map-container #map {
  position: relative;
  height: 300px;
  width: 100%;
}

.maps-frame {
  height: 100%;
  width: 100%;
}

.gm-style-iw > div > div {
  overflow: hidden !important;
}

.gm-style-iw > div > div a {
  display: inline-block;
  font-size: 15px;
  line-height: 16px;
  margin-bottom: 6px;
}

.gm-style-iw > div > div p {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 1025px) {

  .map-container #map {
    height: 855px;
  }

  .subheading {
    padding: 30px 88px;
    font-size: 37px;
    text-align: left;
  }

  .map-container .subheading {
    background-color: #666666;
  }

}

/****************************
*****************************
********* Video *************
*****************************
****************************/

/* Mobile Video */
.sierra-video-mobile {
  width: 100%;
}

.sierra-video-mobile-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

#video-admire-every-angle {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.playVideoBtn {
  display: block;
  position: relative;
  text-align: center;
}

@media only screen and (min-width: 767px) {

  .playVideoBtn {
    cursor: pointer;
  }

  .playVideoBtn::after {
    background: url('../images/play-icon.png') center center no-repeat;
    content: ' ';
    position: absolute;
    top: 30%;  
    margin-left: -40px;
    z-index: 100;
    width: 78px;
    height: 58px;
  }

  .sierra-video-mobile {
    display: none;  
  }

}

/* Desktop Video */
.sierra-video-desktop-wrapper {
  margin: auto;
  position: relative;
    top: 8.9%;
  z-index: 15;
  width: 68.2%;
}

.sierra-video-desktop-inner {
  padding-bottom: 56.25%; /* 16:9 */
  position: relative;
  height: 0;
}

.sierra-video-desktop-inner iframe#modal-video-desktop {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.sierra-video-desktop-inner iframe#modal-video-desktop.active {
  width: 100%;
  height: 100%;
}

/****************************
*****************************
** Expndng Features (Mob.) **
*****************************
****************************/

.sierra-features-mobile-wrapper {
  box-sizing: border-box;
  background-color: #ffffff;
  display: inline-block;
  padding: 0px;
  width: 100%;
}

.sierra-features-mobile-wrapper h3 {
  background-color: #666666;
  color: #ffffff;
  font-family: 'StratumRegular', Arial, sans-serif;
  font-size: 20px;
  line-height: 20px;
  padding: 10px 0 9px 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

ul.sierra-features-expanding-mobile {
  display: inline-block;
  width: 100%;
}

ul.sierra-features-expanding-mobile > li {
  border-bottom: #cccccc solid 1px;
  display: block;
  width: 100%;
}

ul.sierra-features-expanding-mobile > li:last-child {
  border-bottom: none;
}

ul.sierra-features-expanding-mobile li ul {
  display: block;
  width: 100%; 
}

ul.sierra-features-expanding-mobile li ul li {
  box-sizing: border-box;
  display: block;
  float: left;
  font-family: 'StratumRegular', Arial, sans-serif;
  font-size: 16px;
  line-height: 18px;
  padding: 15px 15px 0 15px;
  width: 50%;
}

ul.sierra-features-expanding-mobile li:nth-child(2) ul li {
  text-align: right;
}

ul.sierra-features-expanding-mobile li ul li span {
  display: inline-block;
  font-family: 'StratumMedium', Arial, sans-serif;
  margin-bottom: 10px;
}

ul.sierra-features-expanding-mobile li ul li.has-featured-img {
  line-height: 0;
  padding: 0;
  text-align: left;
}

ul.sierra-features-expanding-mobile li ul li.has-featured-img img {
  max-width:100%;
  width:100%;
  height:auto;
}

@media only screen and (min-width: 767px) {
  ul.sierra-features-expanding-mobile li ul li {
    padding: 45px 15px 0 15px;
  }
}

@media only screen and (min-width: 1025px) {
  .sierra-features-mobile-wrapper {
    display: none;
  }
}

/****************************
*****************************
********** Footer ***********
*****************************
****************************/

footer {
  background-color: #ffffff;
  float: left;
}

footer ul.dealerships-footer {
  margin-top: 35px;
  width: 100%;
} 

footer ul.dealerships-footer > li {
  display: block;
  margin-top: 42px;
  width: 100%;
}

footer ul.dealerships-footer > li ul li:first-child:after {
  background-image: url('../images/marker-icon-footer.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  content: '';
  display: block;
  position: absolute;
    top: 16px;
    left: -36px;
  width: 24px;
  height: 32px;
}

footer ul.dealerships-footer li ul li {
  color: #3b3b3b;
  font-family: 'StratumRegular', Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  margin: 0 73px;
  position: relative;
  text-transform: uppercase;
}

footer ul.dealerships-footer li ul li:first-child {
  border-top: #cccccc solid 1px;
  padding-top: 16px;
}

footer ul.dealerships-footer li ul li a {
  color: #3b3b3b;
  display: inline-block;
  font-family: 'StratumMedium', Arial, sans-serif;
  font-size: 18px;
  line-height: 17px;
  margin-bottom: 5px;
  text-decoration: none;
  text-transform: uppercase;
}

footer ul.dealerships-footer li ul li a:hover {
  text-decoration: underline;
}

footer .copyright {
  margin-top: 60px;
  width: 100%;
}

footer .copyright p {
  color: #999999;
  font-size: 12px;
  line-height: 15px;
  margin: 24px;
  text-align: center;
}

@media only screen and (min-width: 767px) {

  footer {
    float: none;
    padding: 0px 36px;
  }

  footer > ul.dealerships-footer {
    display: block;
    margin: auto;
  }

  footer > ul.dealerships-footer > li {
    float: left;
    width: 25%;
  }

  footer > ul.dealerships-footer li ul li {
    margin: 0 24px;
  }

  footer .copyright {
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 100px;
  }

  footer .copyright p {
    text-align: left;
  }

}

@media only screen and (min-width: 1025px) {

  footer {
    padding: 0;
  }

  footer .copyright {
    border-top: 1px #cccccc solid;
    width: 936px;
  }

  footer .copyright p {
    margin: 29px 0;
  }

  footer > ul.dealerships-footer {
    width: 982px;
  }

}
