﻿/*===================== 
	Color information
	
	-#cc3123 - red
	-#222222 - grey
	-white
	-black
		 
=======================*/
/*===================== 
	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%;}


/*===================== 
	@Font-Face 
=======================*/
@font-face {
  font-family: 'Archivo Narrow';
  font-style: normal;
  font-weight: 400;
}

/*===================== 
	base styles 
=======================*/

html {
    font-family: 'Archivo Narrow', sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
	font-family: 'Archivo Narrow', sans-serif;
	/*background-image: url(/siteart/hero.jpg);
	background-repeat: no-repeat;
	background-size: cover;*/
}

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;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 

.bkg {
    background: url(/siteart/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    background-position: center;
}



/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	margin: 0;
 	font-size: 16px;
	}

	
h1 {
 	font-size: 36px;
}
		

h2 {
 	font-size: 32px;
}

	
h3 {
 	font-size: 28px;
}


h4 {
 	font-size: 24px;
}


h5 {
 	font-size: 20px;
}


h6 {
 	font-size: 18px;
}

.bld {
	font-weight: bold;
}

.allcaps {
	text-transform: uppercase;
}

.red {
	color: #cc3123;
}

.wht {
	color: #fff;
}

.padding_bottom {
	padding-bottom: 15px;
}

.right {
	text-align: right;
}

.tracking {
	letter-spacing: 1px;
}

.brd_btm {
	border-bottom: 1px solid #000;
	margin-bottom: 5px;
}

.italic {
	font-style: italic;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #cc3123; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #222;
		}  

/*===================== 
	header styles 
=======================*/


header {
	margin: 0 auto;
	width: 100%;
	}
	
.header_wrapper {
	padding: 0;
}

.header_contain {
	padding: 0;
}

.header_bkg {
	background: url(/siteart/lg_header_bkg.png);
	background-repeat: no-repeat;
	padding: 0;
}

.logo_contain {
	box-sizing: border-box;
}

.logo {
	margin: 10px auto;
}

.top_nav {
	margin-top: 10px;
	text-align: right;
	width: 72%;
	font-size: 14px;
	font-family: 'Archivo Narrow', sans-serif;
	box-sizing: border-box;
}

.top_links {
	color: #222 !important;
	padding-right: 20px;
}

.top_links:hover {
	color: #cc3123 !important;
}

/*===================== 
	nav styles 
=======================*/
.nav_contain {
	top: 65px;
	box-sizing: border-box;
}

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: right;
	width: 95%;
	}

nav ul {
	padding:0;
	margin:0;
}

nav ul li {

}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
	text-align: left;
	padding-right: 20px;
}

nav ul li a {
	font-family:'Archivo Narrow', sans-serif ;
	font-size: 16px;
	font-weight: bold;
	color: #cc3123;
	text-transform: uppercase;
}	
			
nav ul li a:hover {
	color: #222;
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	line-height: 1.5;
	color: #fff;
	background: #cc3123;
	border: 2px solid transparent;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
	padding: 3px 20px;
	display: block;
	}
	
nav.primary ul li li a:hover { 
	color: #cc3123;
	background: #fff;
	}
	
nav.primary ul li li:hover { 
	}
	
	
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
	max-width: 235px;
	background: #fff;
	/*margin-top: 21px;*/
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 2000 !important;
	padding: 0;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
}

.dropdown_arrow {
	display: inline-block !important;
}

.dropdown_style {
	font-size: ;
	font-weight: ;
}


/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/
.mobile_contain {
	display: none;
}

#menu-button{ /* initially will need to be hidden */
	display: block;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	padding: 20px;
	text-align: center;
	min-height: 0 !important;
	padding-top: 65px;
	box-sizing: border-box;
	}
	#menu-button a{
		 color:#cc3123;
		 text-decoration: none;
		 text-align: center !important;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #000;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
	box-sizing: border-box;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: 'Archivo Narrow', sans-serif;
	font-weight: 700;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
.menu-toggle {
	text-align: right;
	font-size: 28px;
	color: #000;
}

.menu-toggle a:hover {
	color: #000 !important;
}

.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	padding: 8px 0 6px 0 !important;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 14px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
}
nav.mobile ul li a:hover {
	color: #cc3123;
}


nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 5px 0px 20px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 13px;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #000;
	text-decoration: none;
}
nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	background:url(../siteart/menu-dropdown-arrow.png) 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-44px 0 0 0;
	cursor:pointer;
	z-index: 12399994;
	width:44px;
	height:44px;
	-webkit-transition:background-size .3s ease-in-out;
	-moz-transition:background-size .3s ease-in-out;
	transition:background-size .3s ease-in-out;
}
nav.mobile ul li span.click:hover{
	background-size:60%;
}





/*===================== 
	default styles 
=======================*/

.home {
	background: url(/siteart/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	height: 800px;
}

.hero_wrapper {
	padding: 0;
	height: 600px;
}

.hero_overlay_wrapper {
	width: 30%;
	background-color: rgba(255, 255, 255, 0.75);
	padding: 30px;
	float: right;
	top: 313px;
	margin-right: 70px;
    margin-bottom: 70px;
}

.hero_overlay {}

.hero_text {
	text-align: right;
}

.hero_head {}

.hero_p {
	padding: 15px 0;
}

.hero_btn {
	border-radius: 0;
	border: 2px solid #cc3123;
	background-color: #cc3123;
	color: #fff !important;
	padding: 10px 15px;
}

.hero_btn:hover {
	color: #cc3123 !important;
	background-color: transparent;
}

.manf_wrapper {
	background: url(/siteart/logo_bkg.jpg);
}

.manf_wrapper a img {
	max-width: 250px !important;
	padding: 20px;
	box-sizing: border-box;
}

.manf_contain {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-right: 5%;
	margin-left: 5%;
	text-align: center;
}

.manf_logo {
	display: inline-block;
	margin: auto;
	padding: 10px 40px;
}

.serv_wrapper {
	background: url(/siteart/img_bkg.jpg);
}

.serv_contain {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-right: 5%;
	margin-left: 5%;
}

.img_contain {
	display: inline-block;
	margin: auto;
}

.serv_links {
	color: #fff !important;
}

.serv_links:hover{
	color: #cc3123 !important;
	text-shadow: 2px 2px 5px black;
}

.serv_img {
	margin: auto;
	display: inline-block;
	margin: auto;
}

.serv_text {
	position: absolute;
    width: 81%;
    padding: 20px;
    bottom: 0px;
    left: 15px;
}

.serv_head {}

.serv_p {}

.search_wrapper {
	background: url(/siteart/dirt_bkg.jpg);
	background-size: cover;
}

.search_contain {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-right: 5%;
	margin-left: 5%;
}

.search_head {
	text-align: center;
}

.inv_btn {
	width: 33%;
    text-align: center;
    margin: auto;
}

.inv_btnlink {
	color: #fff !important;
	background: #cc3123;
	border: 2px solid #cc3123;
	border-radius: 0;
	width: 100%;
    padding: 10px;
    margin: 15px 10px;
}

.inv_btnlink:hover {
	background: none;
	border-color: #fff;
}

.search_equip {
	width: 66%;
	padding-right: 0;
}

.search {
	margin: 15px 10px;
	margin-right: 0px;
	padding: 10px;
	width: 75%;
}

.search_button {
	color: #fff !important;
	background: #cc3123;
	border: 2px solid #cc3123;
	border-radius: 0;
	padding: 10px;
	width: 23%;
}

.search_button:hover {
	background: none;
	border-color: #fff;
}

	
/*===================== 
	showroom styles 
=======================*/
.showroom_wrapper {
	background: url(/siteart/img_bkg.jpg);
	padding:0;
}

.showroom_contain {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-right: 5%;
	margin-left: 5%;
	display: inline-block;
}

.showroom_head {
	color: #cc3123;
	padding-bottom: 5px;
}

.showroom_menu {
	display: inline-block;
	vertical-align: middle;
	margin: 10px;
	padding: 15px;
	background: rgba(255,255,255,0.5);
	border: 1px solid #000;
	transition: ease-in .3s;
}

.showroom_menu:hover {
	background: #fff;
	box-shadow: 2px 2px 5px #888;
	transition: ease-out .3s;
}

.showroom_menu img {
	display: block;
	margin: auto;
	height: 65px;
	width: auto;
}

.showroom_list {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin: 0 auto;
	padding: 30px 0;
}

.listing {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	background: #000;
	margin: 10px 4%;
	padding: 0;
	box-shadow: 2px 2px 5px #888;
	text-align: center;
}

.listing img {
	width: 100%;
	display: block;
	opacity: .6;
	transition: ease .3s;
	margin: 0 auto;
}

.listing:hover img {
	opacity: 1;
	transition: ease .3s;
}

.listing_subhead {
	width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 5px;
    background: #000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
	letter-spacing: 1px;
}


/*===================== 
	inventory styles 
=======================*/
.border-bottom {
	border-bottom: 2px solid;
}

.body-wrapper {
    margin-bottom: 0!important;
    padding: 20px 0;
}

.list-content .list-title .list-listings-count {
	color: #cc3123 !important;
}

.list-content .list-top-section .listing-option-bar .list-listings-count {
	color: #cc3123 !important;
}

.list-container-flexrow .price-container .price {
	color: #cc3123 !important;
}

.list-container-flexrow .view-listing-details-link, .list-container-flexrow .buy-now-link, .list-container-flexrow .check-availability-link, .list-container-flexrow .email-seller-link, .list-container-flexrow .dealer-phone-call {
	background-color: #222 !important;
}

.list-container-flexrow .view-listing-details-link:hover, .list-container-flexrow .buy-now-link, .list-container-flexrow .check-availability-link:hover, .list-container-flexrow .email-seller-link:hover, .list-container-flexrow .dealer-phone-call:hover {
	background-color: #cc3123 !important;
}

.detail-content .search-results {
	color: #cc3123 !important;
}

.detail-content .detail-main-body .main-detail-data .detail-price {
	color: #cc3123 !important;
}

.detail-content .detail-main-body .main-detail-data .offer-btn, .detail-content .detail-main-body .main-detail-data .buy-btn {
	background-color: #222 !important;
}

.detail-content .detail-main-body .main-detail-data .offer-btn:hover, .detail-content .detail-main-body .main-detail-data .buy-btn:hover {
	background-color: #cc3123 !important;
}

.detail-content .dealer-info .phone-and-email .send-email-btn {
	color: #222 !important;
	border-color: #222 !important;
}

.detail-content .dealer-info .phone-and-email .send-email-btn:hover {
	color: #cc3123 !important;
	border-color: #cc3123 !important;
}

.detail-content .detail-additional-data .data-row .data-label {
	background-color: #222 !important;
}

.detail-content {
    padding-top: 20px;
    padding-bottom: 20px;
}

.button {
	background-color: #222 !important;
	border-color: #222 !important;
}

.button:hover {
	background-color: #cc3123 !important;
	border-color: #cc3123 !important;
}

.rent-title {
	color: #222 !important;
}

.faceted-search-content .selected-facets-container .selected-facet {
	background-color: #222 !important;
}

#parts-content .parts-top-section .parts-title-and-breadcrumbs .parts-title .parts-listings-count {
	color: #cc3123 !important;
}

.mobile-breadcrumb {
	background-color: #222 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .detail-price {
	color: #cc3123 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {
	background-color: #222 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile:hover {
	background-color: #cc3123 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile {
	background-color: #222 !important;
	border-color: #222 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile:hover {
	background-color: #cc3123 !important;
}

.detail-content-mobile .accordion-container .form-bottom .captcha-and-submit .mobile-close {
	color: #222 !important;
	border-color: #222 !important;
}

.detail-content-mobile .accordion-container .form-bottom .captcha-and-submit .mobile-close:hover {
	color: #cc3123 !important;
	border-color: #cc3123 !important;
	background-color: #fff !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile {
	background-color: #222 !important;
	border-color: #222 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile:hover, .detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile:hover {
	background-color: #cc3123 !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-label {
	background-color: #222 !important;
}

.detail-content-mobile .share-listing {
	color: #222 !important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn {
	background-color: #222 !important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn:hover {
	background-color: #cc3213 !important;
}

.faceted-search-content .mobile-done-button-container .mobile-done-button {
	background-color: #222 !important;
}

.faceted-search-content .mobile-done-button-container .mobile-done-button:hover {
	background-color: #cc3123 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile,.list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller-link {
	background-color: #222 !important;
	border-color: #222 !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile:hover, .list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller-link:hover {
	background-color: #cc3123 !important;
}

.detail-content .dealer-info .contact-information .address, .detail-content .dealer-info .contact-information .phone, .detail-content .dealer-info .contact-information .contact {
	display: inline-grid;
}

.paging-container .page-navs .list-page-nav{
	background-color: #cc3123 !important;
}
/*====================
	search inventory
=====================*/
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price {color: #cc3123 !important;}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link {background-color: #222 !important;}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link:hover {background-color: #cc3123 !important;}

.list-content .list-listing-mobile .price-container .price {color: #cc3123 !important;}

.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call, .list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text {color: #222 !important; border-color: #222 !important;}

.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call:hover, .list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text:hover {color: #cc3123 !important; border-color: #cc3123 !important;}

.list-content .list-listing-mobile .view-listing-details-link, .list-content .list-listing-mobile .buy-now-link, .list-content .list-listing-mobile .check-availability-link, .list-content .list-listing-mobile .email-seller-link {background-color: #222 !important;}

.list-content .list-listing-mobile .view-listing-details-link:hover, .list-content .list-listing-mobile .buy-now-link:hover, .list-content .list-listing-mobile .check-availability-link:hover, .list-content .list-listing-mobile .email-seller-link:hover {background-color: #cc3123 !important;}



/*===================== 
	services styles 
=======================*/
.service_wrapper {}

.service_contain {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-right: 5%;
	margin-left: 5%;
}

.services {}

.service_img {}

.drone {}

.service_head {
	color: #cc3123;
	padding-bottom: 5px;
}

.service_caption {
	font-style: italic;
}

.service_p {}

.service {
	padding: 20px;
}

.service_btn {
	background-color: #cc3123;
	border: 2px solid #cc3123;
	color: #fff;width: 50%;
    padding: 10px;
    margin: auto;
    display: block;
}

.service_btn:hover {
	background: none;
	color: #cc3123;
}



/*===================== 
	auctions styles 
=======================*/
.AT_wrapper {
	padding: 20px 0;
	width: 1020px;
}

.tabs li a:link, .tabs li a:visited, .tabs li a:active {
	height: 100%;
}


/*===================== 
	location styles 
=======================*/
.location_wrapper {}

.location_contain {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-right: 5%;
	margin-left: 5%;
}

.location_head {
	color: #cc3123;
	padding-bottom: 5px;
}

.location_para {
	padding-top: 5px;
	padding-bottom: 10px;
}

.location{
	padding: 20px;
}



/*===================== 
	news styles 
=======================*/
.news_wrapper {}

.news_contain {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-right: 5%;
	margin-left: 5%;
}

.news_head {
	color: #cc3123;
	padding-bottom: 5px;
}

.news_caption {
	font-style: italic;
}

.news_para {
	padding-top: 5px;
	padding-bottom: 5px;
}

.news{
	padding: 20px;
}



/*===================== 
	contact styles 
=======================*/
.contact_pg {
	padding: 0;
}

.contact_wrapper {
	padding: 0;
}

.contact_wrapper_bkg {
	background: url(/siteart/img_bkg.jpg);
	padding: 0;
}

.contact_contain {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-right: 5%;
	margin-left: 5%;
}

.contact_head {
	color: #cc3123;
	padding-bottom: 5px;
}

.contact {
	padding: 20px;
}

.contact_btn {
	background-color: #cc3123;
	border: 2px solid #cc3123;
	color: #fff;
	width: 65%;
    padding: 10px;
	margin: auto;
    display: block;
}

.contact_btn:hover {
	background: none;
	color: #cc3123;
}

.career_p {
	padding-top: 5px;
	padding-bottom: 5px;
}

.staff_wrap {
	padding: 10px;
	height: 132px;
}

.staff_caption {
	font-style: italic;
}

.contact_subhead {
	font-style: italic;
	padding: 5px;
}

.apply_btn {
	background-color: #cc3123;
	border: 2px solid #cc3123;
	color: #fff;
    padding: 10px 30px;
    display: block;
	margin: 5px 0;
}

.apply_btn:hover {
	background: none;
	color: #cc3123;
}


/*===================== 
	form styles 
=======================*/

.form- {
    padding: 0;
}

.contact-text {
    
}

.contact_form {
    margin: 15px auto;
    padding: 15px;
    border: 1px solid #222;
	border-radius: 0;
    width: 100%;
}

.contact-p {
    font-size: 14px;
}

.submit-button {
    background-color: #cc3123;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px; 
    border: 2px solid #cc3123;
	border-radius: 0;
    margin-top: 10px;
}

.submit-button:hover{
    color: #cc3123;
    background-color: #fff;
}



/*===================== 
	captcha styles 
=======================*/

/*control the Captcha */
.CaptchaPanel {
    margin:0 0 0 0 !important;
    padding:0 0 0 0 !important;
    text-align: center;
    line-height:normal !important;
    }

.CaptchaImagePanel {
    margin:0 0 0 0;
    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;
    }

.CaptchaAnswerPanel {
    margin:0 0 0 0;
    padding:2px 0px 2px 0px !important;
    }

.CaptchaWhatsThisPanel {
        line-height:0;
        margin:0 0 0 0;
        padding:8px 0 8px 0 !important;
    }
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 



/*====================
	thank you styles
=====================*/
.thanks-button {
    color: #fff;
    background-color: #cc3123;
    padding: 10px 20px;
    border: 2px solid #cc3123;
    margin: 30px auto;
    font-size: 20px;
}

.thanks-button:hover{
    color: #cc3123;
    background: none;
}



/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	}

.divfooter {
	display:none;
	}
	
.footer_wrapper {
	background-color:#222;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	box-sizing: border-box;
}

.footer_contain {
	padding-top: 50px;
	padding-bottom: 50px;
	margin-left: 5%;
	margin-right: 5%;
	width: 90%;
	box-sizing: border-box;
}

.contact_footer {
	padding-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
}

.foot_head {
	padding-bottom: 10px;
}

.sm_foot {
	font-size: 12px;
	line-height: 1.5;
}

.foot_link {
	color: #fff !important;
}

.foot_link:hover {
	color: #cc3123 !important;
}

.linked_footer {
	padding-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
}

.foot_icon {
	display: inline-block;
	padding-right: 5px;
}

.copyright_wrapper {
	background-color:#222;
	box-sizing: border-box;
}

.copyright_contain {
	width: 90%;
	margin-right: 5%;
	margin-left: 5%;
	padding-top: 20px;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.copyright_footer {
	box-sizing: border-box;
}


/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/

@media only screen and (max-width: 1715px) {
	.manf_logo {padding: 10px 35px;}
}


@media only screen and (max-width: 1648px) {
	.manf_logo {padding: 10px 30px;}
}


@media only screen and (max-width: 1582px) {
	.manf_logo {padding: 10px 23px;}
}


@media only screen and (max-width: 1500px) {
	.logo_contain {margin-left: 45px;}
	.nav_contain {width: 70%; float: right;}
	nav.primary {width: 95%;}
	.top_nav {width: 69%;}
	.hero_overlay_wrapper {width: 40%;}
	.manf_logo {padding: 10px 20px;}
	.serv_text {width: 85%;left: 15px;}
	.service_btn {width: 65%;}
	.contact_btn {width: 80%;}
}


@media only screen and (max-width: 1448px) {
	.manf_logo {padding: 10px 45px;}
}


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.header_bkg {background: url(/siteart/header_bkg.png); background-repeat: no-repeat;}
	nav > ul > li {padding-right: 15px;}
	nav.primary {width: 100%;}
	.top_nav {width: 70%; float: right;}
	.top_links {padding-left: 15px; padding-right: 0;}
	.hero_overlay_wrapper {width: 45%;}
	.serv_text {width: 104%;left: -2px;bottom: -16px;}
	.search_button {width: 22%;}
	.service_btn {width: 75%;}
	.contact_btn {width: 100%;}
	.AT_wrapper {width: 90%;}
}

@media only screen and (max-width: 1092px) {
	.serv_text {line-height: 1.1;}
}


/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
	.bkg{display: none;}
	.header_bkg {background: #fff;}
	.logo_contain {margin-left: 0px;}
	.nav_contain {display: none;}
	.mobile_contain {display: block;}
	.footer_contain {text-align: center;}
	.sm_foot {text-align: center;}
	.home {background: none;}
	.hero_wrapper {background: url(/siteart/hero.jpg);background-repeat: no-repeat;background-size: cover; height: 550px;}
	.hero_overlay_wrapper {width: 100%;margin: 0; top: 355px;}
	.hero_text {text-align: center;}
	.serv_img {padding: 10px;}
	.serv_text {width: 41%;left: 245px;bottom: 5px;}
	.img_contain {text-align: center;}
	.inv_btn {width: 80%; margin: 0 10%;}
	.search_equip {width: 80%; margin: 0 10%;}
	.service_btn {width: 100%;}
	.service_contain {text-align: center;}
	.contact_contain {text-align: center;}
	.contact_btn {width: 50%; margin: 5px auto;}
	.apply_btn {width:45%; margin: 5px auto;}
	.location_contain {text-align:center;}
	.news_contain {text-align: center;}
	.showroom_contain {text-align: center;}
	.listing {width: 45%; margin: 10px 2%;}
	.showroom_menu {width: 45%; margin: 10px 2%;}
}

@media only screen and (max-width : 945px) {
	.serv_text {left: 225px;}
}


@media only screen and (max-width : 875px) {
	.serv_text {left: 200px;}
}


/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.hero_wrapper {height: 410px;}
	.hero_overlay_wrapper {top: 193px;}
	.serv_text {left: 150px; width: 52%;}
	.search {width: 67%;}
	.search_button {width: 27%;}
	.body-wrapper {padding: 20px;}
	.service_btn {margin: 5px 0;}
	.listing {width: 90%; margin: 10px 5%;}
	.showroom_menu {width: 90%; margin: 10px 5%;}
}


@media only screen and (max-width : 650px) {
	.serv_text {left: 100px;width: 62%;}
}


@media only screen and (max-width : 565px) {
	.serv_text {left: 60px;width: 73%;}
}


/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.hero_wrapper {height: 255px;}
	.hero_overlay_wrapper {top: 0px;height: 100%;padding-top: 50px;}
	.serv_text {left: 20px;width: 90%;}
	.inv_btn {width: 95%;margin: auto;display: block;padding: 0;}
	.search_equip {width: 100%;margin: auto;padding:0;}
	.search_button {width: 28%;}
	.contact_btn {width: 90%;}
	.apply_btn {width:75%;}
}

@media only screen and (max-width : 425px) {
	.hero_overlay_wrapper {padding-left: 15px; padding-right: 15px;}
	.serv_text {left: 15px;}
}

@media only screen and (max-width : 400px) {
	#menu-button {padding-top: 55px;}
	.hero_overlay_wrapper {padding-top: 15px;}
	.serv_text {bottom: 0px;width: 90%;}
	.search {width: 61%;}
	.search_button {width: 33%;}
}

@media only screen and (max-width : 350px) {
	.hero_btn {padding: 10px 10px;}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	#menu-button {padding-top: 45px;}
	.hero_overlay_wrapper {top: 0px;}
	.serv_text {left: 7px;bottom: -10px;width: 94%;}
	.contact_btn {width: 100%;}
}

