﻿/*===================== 
	Color information	
	-red: #d52027;
	-gray: #939597;
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}

/*===================== 
		Fonts

font-family: 'Josefin Sans', sans-serif;
font-family: 'Source Sans Pro', sans-serif;

=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
	font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
	padding:0;
	overflow-x:hidden;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
h1 {
	font-size: 45px;
	font-weight:700;
	color:#000;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	text-align:left;
	line-height:40px;
}
h2 {
	font-size: 45px;
	font-weight:700;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	color: #C91F25;
	line-height:40px;
}
h3{	font-size: 27px;
	font-weight:700;
	color:#fff;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	text-align:center;
	padding-top: 2%;
}
h6{	font-size: 27px;
	font-weight:700;
	color:#C91F25;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	text-align:center;
	padding-top: 2%;
}

h4 {
	font-size: 27px;
	font-weight:700;
	color:#000;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
}
h5 {
	font-size: 15px;
	font-weight:700;
	color:#000;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
}

p {
	margin: 0;
	padding:0;
	font-size:17px;
	font-weight:300;
	padding:0 2% 2% 2%;
	color:#000;
	font-family: 'Open Sans', sans-serif;
	text-align:left;
	line-height:27px;
	
}
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

	
.se-container #se-about span{color:#000; font-size: 18px;}

.bold{
    font-weight: bold;
	}
div.banner_text{
	background:#000;
	color:#fff;
	font-size:32px;
	text-align:left;
	padding:1% 0;
}
/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a.link,
a.link:link, 
a.link:visited, 
a.link:active {
	outline: 0;/*reset*/
     text-decoration: none;
	 color:#C91F25;
	}
	a.link:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #C91F25;
		}  
a{text-decoration: none; color:#C91F25;}
/*===================== 
	header styles 
=======================*/

.header-wrap-sticky {
	width: 100%;
	margin: 0;
	z-index: 9999999;
	background:rgba(1,1,1,.8);
	position:absolute;
}
.header-wrap {
	width: 100%;
	margin: 0;
	z-index: 9999999;
	background: #f6a200;
	border-bottom: 3px solid #556c36;
}
header {
	margin: 0 auto;
	max-width: 80%;
	margin-top:-55px;
}
header img{ padding: 8px 0px 2px 0px; width:25%; }
.head_right{
	float:right;
	margin-top: -55px;
}
.header-phone h2{
	font-size: 19px;
	font-weight:800;
	color:#fff;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	text-align: right;
	margin-right:11%;
	padding: 1% 0px;
	
}
.header-phone a { color:#fff;}
.header-phone{background: #000;  width: 100%; float:right; text-align:left; border-bottom: 5px solid #C91F25;}
.num{
	text-align:right;
	font-weight:300;
	font-size:24px;
	}
.top{
	padding:12% 3% 1% 0;
}
.side {
	background: #fff;
    position: fixed;
    z-index: 999999999;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}


/*===================== 
	Home Page layout styles 
=======================*/
#banner img{
	position:relative;
	width:100%;
}
.popOver {
    height: 100%;
    width: 100%;
    -webkit-animation: bummer 2s;
    animation: bummer 2s;
    -webkit-transform: scale(2,2); 
    transform: scale(2,2);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; /* Add this so that your modal doesn't 
                                      close after the animation completes */
}
.popOver img{
	width:100%;
}


@-webkit-keyframes bummer {
    100% {
        -webkit-transform: scale(1,1); 
    }
}

@keyframes bummer {
    100% {
        transform: scale(1,1); 
    }
}


.work-text-2 {text-align:center; color:#C91F25;}
.work-header-2 h3{color:#C91F25;}
.text-container {
	background:#fff;
	position: relative;
	z-index: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  	clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); 
	width:100%;
	background-size:cover;
	justify-content:space-around;
	align-items:flex-start;
	bottom:0;
 }
.text-container:after {
	background: inherit;
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  transform: skewY(-1.5deg);
  transform-origin: 100%;
  z-index: -1;
}
.text-container:before{
  background: inherit;
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  transform: skewX(-1.5deg);
  transform-origin: 100%;
  z-index: -1;
}
.text-container-2 {
	z-index: 999;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  	clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); 
	width:100%;
	background-size:cover;
	justify-content:space-around;
	align-items:flex-start;
	bottom:0;
	padding-bottom:3%;
	text-align:center;
 }
.text-container-2:after {
	background: inherit;
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  transform: skewY(-1.5deg);
  transform-origin: 100%;
  z-index: -1;
}
.text-container-2:before{
  background: inherit;
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  transform: skewX(-1.5deg);
  transform-origin: 100%;
  z-index: -1;
}
.process-box {
	position:relative;
	background:#000;
	z-index: 999;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  	clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); 
	width:100%;
	background-size:cover;
	justify-content:space-around;
	align-items:flex-start;
	bottom:0;
	padding-bottom:7%;
	text-align:center;
  @include angle(before);
}
.process-box p {color:#fff;}
.process-box:before{
  background: inherit;
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  transform: skewY(1.5deg);
  transform-origin: 100%;
  z-index: -1;
}


.map {background:url("../siteart/map.jpg") no-repeat; width: 100%;}
.map img {width:100%;}
.map-header {text-align:center; padding-top:4%;}
#buttons-map{ border-radius: 7px;  display:inline-block; width: 285px; color:#000; background:#fff;border: 2px solid #000; font-weight:700; font-size:18px; text-decoration:none; margin: 20px 10px 7% 0px; padding: 10px 0px;}
#buttons-map:hover{background: #000; border: 2px solid #000; color:#C91F25;}

.about-text {width:50%; margin: 0 auto; padding-left:2%; margin-top:4%; padding-top:0%; padding-bottom:3%; }
.about-text p {margin-left:17%; padding-top:3%; padding-bottom:5%;}

.work {background: #FA0000;position:relative; padding-bottom:7%; text-align:center; }
.work-text {padding-top:6%;  }
.work-text h3 {border-top: 3px solid #000; width: 300px; text-align:center; display:inline-block;line-height:70px;}
.work-text h6 {border-top: 3px solid #000; width: 300px; text-align:center; display:inline-block;line-height:70px;}

.work-header {
  display:inline-block;
  overflow:hidden;
  white-space:nowrap;
}

.work-header:first-of-type {    /* For increasing performance 
                       ID/Class should've been used. 
                       For a small demo 
                       it's okaish for now */
  animation: showup 7s infinite;
}

.transition:last-of-type {
  width:0px;
  animation: reveal 10s infinite;
}

.transition:last-of-type span {
  margin-left:-355px;
  animation: slidein 10s infinite;
}


@keyframes showup {
    0% {opacity:0;}
    20% {opacity:1;}
    80% {opacity:1;}
    100% {opacity:0;}
}

@keyframes slidein {
    0% { margin-left:-800px; }
    20% { margin-left:-800px; }
    35% { margin-left:0px; }
    100% { margin-left:0px; }
}

@keyframes reveal {
    0% {opacity:0;width:0px;}
    20% {opacity:1;width:0px;}
    30% {width:355px;}
    80% {opacity:1;}
    100% {opacity:0;width:355px;}
}

/*Buttons*/
.inventory {width:70%;  margin: 0 auto; text-align:center;}
.inventory-2 {width:70%;  margin: 0 auto; text-align:center; padding-bottom:3%;}

#buttons-inv{ border-radius: 7px; display:inline-block; width: 285px; color:#000; background:none;border: 2px solid #000; font-weight:700; font-size:18px; text-decoration:none; margin: 20px 10px 0px 0px; padding: 10px 0px;}
#buttons-inv:hover{background: #000; border: 2px solid #000; color:#C91F25;}

/*Sales Buttons*/
.sales-buttons {width:60%;  margin: 0 auto; text-align:center; display:inline-block;}
#buttons-sales{ border-radius: 50%; display:inline-block; width: 250px; height:250px; color:#000; background:none;border: 2px solid #000; font-weight:700; font-size:18px; text-decoration:none; margin: 20px 10px 0px 0px;}
#buttons-sales:hover{background: #C91F25;; border: 2px solid #000; color:#C91F25;}
.circle {float:left; text-align:center;}
.circle h5 {padding-top:20px;}

/*Work We've Done*/
.work-buttons {width:80%;margin: 0 auto;}
.process {width:60%; margin: 0 auto;}
.process p {padding-top:2%;}
.process-text {padding-top:3%;}

/*Lightbox*/
.row {margin: 0 auto; text-align:center; display:inline-block;}
.column img {width: 100%;}

.row > .column {
  padding: 3px 3px 0px 3px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  width: 32%;
  display: inline-block;
}
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}
.brandbar {margin-top:2%;}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.prev {margin-left:-50%;}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
 .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
  cursor:pointer;
}
/*  SCROLLING INVENTORY
------------------------------------------------*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
 
.scrolling{
    width:100%;
    height:92px;
}

/*------------------*/

.feature {/*background-image:url(../siteart/feature.jpg) no-repeat;*/ width: 100%; box-sizing:border-box; background-image:url(../siteart/feature.jpg); padding:4% 5%;}
.wrapper-inner {width:80%; margin: 0 auto; text-align:center;}

.manu-bar{
	width:64%;
	background:#fff;
	margin: 0 auto;
	text-align: center;
	padding:20px 0px;
}
.dealers {background:url(../siteart/road.png) no-repeat; width:100%; height:380px; display:inline-block; text-align:center; margin: 0 auto;}

.dealers h4 {text-align:center; padding-top:4%; color:#fff;}
.dealers img {margin: 0 auto; text-align:center; width:200px; display:inline-block; padding:1% 1%;}

.wrapper {background: #B3B3B3 !important;}
 /* CONTACT */
.container {width:75%; margin: 0 auto;}
.contact-inner p {text-align:center; margin: 0 auto; color:#fff !important;}
.contact-inner {float: left; width: 270px;  padding: 2% 2%; margin-right:10px;  border: 3px solid #000; border-radius: 7px; height: 130px; background: #000;}
.contact-text {padding-top:6%;  }
.contact-text h6 {border-top: 3px solid #000; width: 300px; text-align:center; display:inline-block;line-height:70px;}
/* SERVICE*/
.service-text {padding: 3% 0 5% 0;  margin: 0 auto; text-align:center;}
.service-text h6 {border-top: 3px solid #000; width: 300px; text-align:center; display:inline-block;line-height:70px;}
.form-text {padding: 1% 0 2% 0;  margin: 0 auto; text-align:center;}
.form-text h6 {border-top: 3px solid #000; width: 300px; text-align:center; display:inline-block;line-height:70px;}

/*RENTALS*/
.rentals-text {padding: 3% 0 5% 0;  margin: 0 auto; text-align:center;}
.rentals-text h6 {border-top: 3px solid #000; width: 300px; text-align:center; display:inline-block;line-height:70px;}
.rentals-text p {text-align:center; }
/*CONSIGNMENT*/
.consignment-text {padding: 3% 0 5% 0;  margin: 0 auto; text-align:center;}
.consignment-text h6 {border-top: 3px solid #000; width: 300px; text-align:center; display:inline-block;line-height:70px;}
.consignment-text p {text-align:center; }


#buttons-service{ 
	border-radius: 7px; 
	display:inline-block; 
	width: 285px; 
	color:#fff; 
	background:#000;
	border: 2px solid #000; 
	font-weight:700; 
	font-size:18px; 
	text-decoration:none; 
	margin: 20px 10px 0px 0px; 
	padding: 10px 0px; 
	text-align:center;
	text-transform:uppercase;}

 /* Form styles */
.yellow {	
	background:#000;
	padding-top:6%;
	padding-bottom:2%;
}

form {padding-bottom: 3%;}
#formpage {
	vertical-align:top;
	width:80%; 
	margin: 0 auto;
}

#formpage div {
	vertical-align:top;
	padding:5px 5px;
}

#formpage input {
	padding:6px 5px 10px;
	border:2px solid #000;
	font-family: 'Open Sans', sans-serif;	
	color:#000;
	font-size:13px;
	background:#fff;
}

#formpage textarea {
	padding:6px 5px;
	border:2px solid #000;
	font-family: 'Open Sans', sans-serif;	
	font-weight: 700;
	color:#000;
	font-size:12px;
	background:#fff;
	margin-top: 5px;
}

/* selects have similar styles to input & textarea fields, but with no padding. Text in a dropdown select is positioned differently */
#formpage select {
	border:2px solid #000;
	font-family: 'Open Sans', sans-serif;
	color:#000;
	vertical-align:middle;
	font-size:12px;
	line-height:normal;
	padding:5px;
	width:100%;
}

.formfield {
	width:31%; 
	float:left; 
	margin-right: 10px; 
	margin-top: 10px;
	color: #000!important;
	
}
#formpage input  {
    width:100%;
	margin-top: 5px;
}
 
#formpage input.larger  {
    width:100%;
}

#formpage textarea {
    width:97%;
    height:85px;
}

#formpage input.radio {
    padding:0; 
    border:0;
    margin:0 5px 0 0;
    width:15px;
    height:15px;
    display:inline;
	
 }

/* focus states of various types of fields */
#formpage input:focus,
#formpage textarea:focus,
#formpage select:focus {
	background:#C91F25; 
	color:#fff;
	font-weight:700;
	font-family: 'Open Sans', sans-serif;
	border:2px solid #000;
	outline-style:none;
}
#formpage input.radio:focus,
#formpage input.checkbox:focus {
	background:none; 
	border:0;
	outline-style:none;
}

#formpage input.button,
#formpage input.button:focus {
    width:200px;
    margin:0;
    padding:12px 0;
    background: #C91F25; /* For browsers that do not support gradients */
    border: 3px solid #000;
	border-radius:7px;
    font-size:20px;
    line-height:14px;
    font-weight:700;
    color:#000;
	font-family: 'Open Sans', sans-serif;
    text-transform:uppercase;

}
#formpage input.button:hover {
	background: #fff;
	color:#000;
	text-shadow:none;
	font-family: 'Open Sans', sans-serif;
    text-transform:uppercase;
	padding:12px 0;
	border: 3px solid #000;
}

/* for plain text next to an input field, if not using a table structure */
#formpage label.basic {
    color:#212121;
    font-size:13px;
    text-align:left;
} 

/*FINANCE*/
.finance-text p { padding:2% 0; margin: 0 auto; text-align:left;}
.finance-text {width:50%; margin: 0 auto; padding-left:2%; margin-top:4%; padding-top:0%; padding-bottom:3%; }
.finance-button {background: #fff; width:300px; text-align: center; padding:10px 0;border-radius: 7px; border:2px solid #000; font-size:20px; color:#000; letter-spacing: 1px; font-weight:700;}
.finance-button:hover {background:#C91F25}






/*control the Captcha */

.CaptchaPanel {margin:0 auto !important;padding:0 0 0 0 !important;line-height:normal !important;color:#000;width: 30%;}

.CaptchaImagePanel {
margin:0 auto;
padding:0 0 0 0;
}

.CaptchaMessagePanel {
padding:0 0 0 0 !important;
margin:0 0 0 0 !important;
font-weight:normal !important;
font-size:12px;
line-height:14px;
text-align: center;
}

.CaptchaAnswerPanel {
margin:0 0 0 0;
padding:2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
	line-height:0;
	margin:0 0 0 0;
	padding:10px 0 10px 0 !important;
}
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 


/*===================== 
	footer styles 
=======================*/
footer {
	background: #000;
	color: #fff;
	position: relative;
	z-index: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  	clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); 
	width:100%;
	background-size:cover;
	justify-content:space-around;
	align-items:flex-start;
	bottom:0;
 }
.text-container:before{
  background: inherit;
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  transform: skewX(-1.5deg);
  transform-origin: 100%;
  z-index: -1;
}
footer p {color: #fff; font-size:13px; padding-top:1%; padding-left:1%;}


.sm-button{ color:#d52027; border: 2px solid #d52027; padding: 8px 14px; margin: 20px 10px; float: left; width:100%; max-width:180px; font-size: 15px;font-family: 'Josefin Sans', sans-serif; text-align:center;}
.sm-button:hover{color:#fff; border: 2px solid #fff; background:#d52027;}


/*Scrolling INV*/

.scrolling{ width:100%; height:92px; }
.banner {
	width:100%;
	height:92px;
	overflow:hidden;
	background: #fff;
	padding: 5px 0px 5px 0px;
	
} 

/*===================== 
   FACETED INV
=======================*/
.info,.list-content .list-title .list-listings-count,.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price,.bread-crumbs-heading .return-links .return-links-link i,.bread-crumbs-heading .return-links .return-links-link span,.compare-listings-container .compare-container .compare-price,.list-content .list-main-section .list-container .list-listing .listing-top-right .listing-dealer-info .dealer-name,.detail-content .detail-main-body .main-detail-data .detail-price, .detail-content .detail-main-body .main-detail-data .alternate-retail-price,.detail-content .search-results,.currency-selector {
	color: #C91F25 !important;
}
.faceted-search-content .selected-facets-container .selected-facet,.compare-listings-container .compare-container .button,.detail-content .detail-main-body .main-detail-data .offer-btn, .detail-content .detail-main-body .main-detail-data .buy-btn,.detail-content .detail-additional-data .data-row .data-label,.modal-bg .form-bottom .captcha-and-submit .captcha-placeholder button, .modal-bg .form-bottom .captcha-and-submit .captcha-placeholder input, .modal-container .form-bottom .captcha-and-submit .captcha-placeholder button, .modal-container .form-bottom .captcha-and-submit .captcha-placeholder input,.contact-options a,.detail-content-mobile .detail-contact-bar .contact-bar-btn {
	background: #C91F25 !important;
}

.detail-content .dealer-info .phone-and-email .send-email-btn,.list-content .list-listing-mobile .dealer-phone-container a {
	color:#C91F25 !important;
		border-color: #C91F25 !important;
}

.compare-chkbox-container .compare-listings .fa-check {
	    top: -4px !important;
    left: 6px !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .listing-dealer-info .dealer-name {
	text-align: right !important;
}

.contact-info-heading h2 {
	font-size: 24px !important;
	line-height: auto !important;
}
.contact-options .collapsible-content a,.detail-content-mobile .detail-additional-data .data-row .data-label,.view-listing-details-link, .buy-now-link {
	color: #fff !important;
	background: #000 !important;
}

/*===================== 
   Responsive Styles
=======================*/

@media screen and (max-width: 1700px){
	.sales-buttons {width:83%;}
	.container {width:89%;}
}

@media screen and (max-width: 1550px){
	header {max-width:93%;}
	.text-container {top:75%;}
	.sales-buttons {width:80%;}
	#contact {width:50%;}
	.contact-inner {margin-bottom:2%;}
}

@media screen and (max-width: 1370px) {	
	.sales-buttons {width:63%;}

}


@media screen and (max-width: 1200px) {	
	.sales-buttons {width:52%;}
	#contact {width:70%;}
	.head_right {float:none;}
	.brandbar {margin-top:6%;}


}

@media screen and (max-width: 1120px) {
	.about-text {width:80%;}
	.wrapper-inner {width: 103%;}
	.column {width:49%;}
	.formfield {width:30%;}
	.sales-buttons {width:58%;}

}
@media screen and (max-width: 1024px) {	
	.sales-buttons {width:81%;}
	#contact {width:66%;}

}
@media screen and (max-width: 980px) {	
	.sales-buttons {width:65%;}
	.header-phone h2 {margin-right:0; text-align:center;}
}

@media screen and (max-width: 945px) {
.list-content .faceted-search-content {
	width: 18% !important;
}
.container {
	width: 98% !important;
}
}

@media screen and (max-width: 900px) {	
	.feature {padding: 3% 0;}
	.wrapper-inner {width:100%;}
	.column {width:100%;}
	.sales-buttons {width:68%;}
	#contact {width:50%;}
	.brandbar {margin-top:15%;}
	.finance-text {width:95%;}
	
}



@media screen and (max-width:768px) {
	.header-phone {width: 100%; margin:0px; border-bottom-left-radius:0; border-bottom-right-radius: 0;}
	header img {width:45%;}
	.about-text p {margin-left:0%;}
	.process {width:80%;}
	.dealers {height:395px;}
	.formfield {width:94%;}
	.CaptchaPanel {width:50%;}
	.sales-buttons {width:75%;}
	#contact {width:37%;}
	
	

}
@media screen and (max-width:680px) {
	.sales-buttons {width:91%;}
	#contact {width:45%;}
	.inventory-2 {margin-left:15%;}

}

@media screen and (max-width: 568px){
	.sales-buttons {width:53%;}
	#contact {width:56%;}
}
@media screen and (max-width: 475px){
	.header-phone h2 {font-size:14px;}
	.col-1-4 {width:95%;}
	.products-container {height: 850px;}
	.inventory {margin-left:5px;}
	.work-text {padding-top:15%;}
	.dealers img {width:200px;}
	.form-text h3 {font-size:17px;}
	.container {width:85%;}
	.contact-inner {margin-bottom:3%;}
	.CaptchaPanel {width:100%;}
	.sales-buttons {width:65%;}
	#contact {width:68%;}
	.inventory-2 {margin-left:40px;}


}
@media screen and (max-width: 414px) {
	.inventory {margin-left:51px;}
	#contact {width:85%;}
}

@media screen and (max-width: 384px) {
	.inventory {margin-left:40px;}
}

@media screen and (max-width: 375px) {
	.sales-buttons {width:81%;}
	.inventory {margin-left:32px;}
}
@media screen and (max-width: 320px) {
	.header-phone h2 {font-size:12px;}
	.inventory {margin-left:5px;}
	#contact {width:95%;}
}
