﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	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 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    font-family: Arial, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
	}

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;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	margin: 0;
	}

h1 {
	font-family: 'Anton', sans-serif;
	font-size: 26px;
}

h2 {
	font-family: 'Anton', sans-serif;
	font-size: 24px;
}
	
h3 {
	font-family: 'Anton', sans-serif;
	font-size: 22px;
}

h4 {
	font-family: 'Anton', sans-serif;
	font-size: 20px;
}

h5 {
	font-family: 'Anton', sans-serif;
	font-size: 16px;
}

h6 {
	font-family: 'Anton', sans-serif;
	font-size: 16px;
}

.red {color: #C84334;}
.white {color: #FFFFFF;}

.bold {font-weight: 700;}
.semi-bold {font-weight: 600;}
.tracking {letter-spacing: 1px;}
.semi-tracking {letter-spacing: .25px;}
.caps {text-transform: uppercase;}
.center {text-align: center;}
.italic {font-style: italic;}

h3#lrg-text {font-size: 38px; line-height: 48px;font-weight: 700;}


/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  



/*===================== 
	nav styles 
=======================*/

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: center;
	background-color: #c84334;
}

nav ul {
	padding:0;
	margin:0;
}

nav ul li {

}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
	padding: 8px 0px;
}

nav ul li a {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff!important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .75px;
	padding: 10px 8px;
}	
			
nav ul li a:hover {
	background-color: #FFFFFF;
	color: #C84334!important;
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	line-height: ;
	color: ;
	text-align:;
	font-size: ;
	font-weight:;
	}
	
nav.primary ul li li a:hover { 
	color: ;
	text-align: ;
	font-size:  ;
	font-weight: ;
	}
	
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: 100%;
	background-color: #c84334;
	margin-top: 8px;
	border-top: 2px solid #000;
}
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;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	padding: 10px;
    text-align: left;
}

nav.primary ul ul li:hover {
	background-color: #000;
}

nav.primary ul ul li a:hover {
	color: #fff!important;
	background-color: transparent;
}

.dropdown_arrow {
	display: inline-block !important;
}

.dropdown_style {
	font-size: ;
	font-weight: ;
}


/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/

#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width: 100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	padding: ;
	background: #C84334;
	border-bottom: ;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color: #000;
		 text-decoration: none;
		 text-align: right !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;
}
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: Arial, 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!important;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
}
nav.mobile ul li a:hover {
	background: transparent;
	color: #c84334!important;
}


nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 15px;
	color: #000;
	text-decoration: none;
	text-transform: none !important;
}
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%;
}


/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
}
.header-bkgd {
	padding: 20px;
}
.header-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.header-logo {
	max-width: 200px;
    width: 100%;
	float: left;
	margin-top: 5px;
}
.header-contact-wrap {
	text-align: center;
    line-height: 1.5;
}
.header-contact-wrap h6 {
    margin-bottom: 10px;
}
.header-phone {
    font-weight: 700;
    letter-spacing: .5px;
    color: #000!important;
	margin-left: 8px;
    border-left: 1px solid #000;
    padding-left: 8px;
}
.header-phone:hover {
    color: #c84334!important;
}
.header-rental-logo {
	max-width: 240px;
    width: 100%;
    float: right;
	margin-top: 20px;
}





/*===================== 
	home page styles 
=======================*/

/* slideshow styles */
.slideshow-container {
  position: relative;
  margin: auto;
}
.mySlides {
  display: none;
}

/* hero section */
.hero-bkgd {
	margin: 50px 0px;
    padding: 0px 20px;
}
.hero-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.logo-container {}
.brand-logo {
	max-width: 110px;
    width: 100%;
    display: block;
    margin: 20px auto;
    padding: 10px;
}
.home-btn {
	width: 100%;
    background-color: #c84334;
    border: 2px solid #c84334;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px;
    margin: 5px auto;
}
.home-btn:hover {
	background-color: #FFFFFF;
	color: #C84334;
}
.middle-btn {
	width: 96%;
    margin-left: 2%;
    margin-right: 2%;
}

/* welcome section */
.welcome-bkgd {
	background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 60%, rgba(200,67,52,1) 60%);
	padding: 50px 20px;
}
.welcome-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.welcome-paragraph {
	margin-right: 30px;
}
.welcome-paragraph p {
    margin-top: 20px;
}
.welcome-apply {
	text-align: center;
}
.welcome-apply h5 {
    margin: 20px auto;
}
.apply-margin {
	margin-top: 35px;	
}
.resume-btn {
	font-family: 'Anton', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px 8px 30px;
}
.resume-btn:hover {
	background-color: #FFFFFF;
	color: #C84334;
}
.welcome-red {}
.welcome-black {}

/* map section */
.map-bkgd {
	background-image: url("/siteart/map-locations.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	padding: 50px 20px 30px 20px;
}
.map-wrap {
	max-width: 1200px;
	display: block;
	margin: auto;
}
.map-text {
	float: right;
}
.map-location {
	margin-bottom: 20px;
}
.map-location-text {
	display: inline-table;
    margin-left: 5px;
}
.map-location h5 {
    margin-bottom: 5px;
}
.map-location-phone {
	color: #000!important;
    font-weight: 600;
    letter-spacing: .5px;
    font-family: 'Roboto', sans-serif;
}
.map-location-phone:hover {
	color: #C84334!important;
}
.map-location i.fas.fa-map-marker-alt {
    font-size: 24px;
    color: #c84334;
}

	
/*===================== 
	new equip styles 
=======================*/
.equip-bkgd {
	margin: 50px 0px;
    padding: 0px 20px;
}
.equip-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.equip-card {
	display: inline-table;
    border: 1px solid #000;
    padding: 20px 5px 0px 5px;
    min-height: 150px;
    height: 100%;
	width: 100%;
    position: relative;
}
.equip-brand {
	max-width: 125px;
	width: 100%;
}
.equip-text {}
.equip-link {
	background-color: #c84334;
    border: none;
    width: 100%;
    padding: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    letter-spacing: .5px;
    color: #fff;
}
.equip-link:hover {
	background-color: #000;
}
.btn-holder {
	position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    padding: 0px;
}
.equip-mid-wrap {
	margin-top: 20px;
	padding: 0px;
}


/*===================== 
	videos page styles 
=======================*/
.videos-bkgd {
	margin: 30px 0px;
    padding: 0px 20px;
}
.video-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.youtube-wrap {
	border: 1px solid #000;
	border-top: 5px solid #c84334;
    padding: 10px;
    margin: 20px 0px;
}
.youtube-wrap h1 {
	margin-bottom: 20px;
	margin-top: 10px;
}


/*======================= 
	rental page styles 
=========================*/
.rental-bkgd {
	margin: 50px 0px;
    padding: 0px 20px;
}
.rental-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.rental-loc-container {
	background-color: #c84334;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
	margin-top: 50px;
}
.rental-btn {
	font-family: 'Anton', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px 8px 30px;
    margin-top: 25px;
}
.rental-btn:hover {
	background-color: #FFFFFF;
	color: #C84334;
}
.rental-wrap h1 {
    margin-bottom: 25px;
}




/*======================= 
	parts page styles 
=========================*/
.parts-bkgd {
	margin: 50px 0px;
    padding: 0px 20px;	
}
.parts-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.parts-brand-logo {
	max-width: 125px;
    width: 100%;
    display: block;
    margin: 10px auto;
}
.brand-logo-height {
	max-height: 60px;
    width: auto;
}
.parts-contact {
	/*margin-top: 50px;*/
	/*padding: 0px 20px;*/
	background-color: lightgrey;
    padding: 50px 20px;
}
.red-parts-contact {
	background-color: #c84334;
    padding: 50px 20px;
}
.parts-phone {
	color: #fff!important;
}
.parts-phone:hover {
	color: #000!important;
}
.contact-form {
	width: 100%;
    border: 1px solid #000;
    padding: 10px 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
form h4 {
    margin-top: 30px;
}
.upload-btn {
	width: 100%;
    padding: 10px 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
.p-form {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 15px;
    text-transform: uppercase;
}
.submit-button {
	background-color: #c84334;
    border: 2px solid #c84334;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 50px;
    display: block;
    margin: 25px auto;
}
.submit-button:hover {
	background-color: #FFFFFF;
	color: #C84334;
}


/*control the Captcha */
.CaptchaPanel {
	margin:15px 0 0 0 !important;
	padding:15px 0 0 0 !important;
	text-align: center;
	line-height:normal !important;
	clear: both!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;} 
  

/*====================================== 
	track loader parts page  styles 
========================================*/
.track-bkgd {
	margin: 50px 0px;
	padding: 0px 20px;
}
.track-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.track-wrap h1 {
    margin-top: 10px;
}
.track-phone {
	background-color: #c84334;
    border: 2px solid #c84334;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 50px;
    display: block;
    margin: auto;
	margin-top: 25px;
}
.track-phone:hover {
	background-color: #FFFFFF;
	color: #C84334;
}
.track-link {
	display: block;
    margin: 5px 0px;
    color: #000!important;
}
.track-link:hover {
	color: #c84334!important;
}
.parts-price-container {
    border: 2px solid #c84334;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 50px;
}
.track-parts-btn {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #c84334;
	border: none;
    color: #fff;
    padding: 10px 30px 8px 30px;
    margin-top: 25px;
}
.track-parts-btn:hover{
    background-color: #000;
}


/*====================================== 
	financing page  styles 
========================================*/
.financing-bkgd {
	margin: 50px 0px;
	padding: 0px 20px;
}
.financing-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.financing-card {
	border: 1px solid #000;
    border-top: 5px solid #c84334;
    padding: 20px;
    text-align: center;
	height: 160px;
	position: relative;
}
.financing-logo {
	max-width: 200px;
    width: 100%;
    display: block;
    margin: auto;
}
.financing-link {
	position: absolute;
    bottom: 20px;
    left: 0;
    right: auto;
    top: auto;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #c84334!important;
    font-weight: 600;
    letter-spacing: .25px;
}
.financing-link:hover {
	color: #000000!important;
}


/*=============================== 
	location page styles 
================================*/
.locations-bkgd {
	margin: 50px 0px;
	padding: 0px 20px;
}
.locations-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.locations-card {
	border: 1px solid #000;
    border-top: 5px solid #c84334;
    padding: 20px;
    text-align: center;
}
.locations-phone {
	background-color: #c84334;
    border: 2px solid #c84334;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 50px;
    display: block;
    margin: auto;
	margin-top: 15px;
}
.locations-phone:hover {
	background-color: #FFFFFF;
	color: #C84334;
}
.locations-card h4 {
	margin: 15px 0px;
}
.locations-map {
	width: 100%;
}


/*=============================
	service page styles 
==============================*/
.service-locations-bkgd {
	background-color: lightgrey;
    padding: 50px 20px;
}
.service-locations-bkgd .locations-card {
	background-color: #FFFFFF;
}
.service-bkgd {
	margin: 50px 0px;
	padding: 0px 20px;
}
.service-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.service-phone {
	color: #000000!important;
}
.service-phone:hover {
	color: #C84334!important;
}


/*=============================
	sourcewell page styles 
==============================*/
.sourcewell-bkgd {
	margin: 50px 0px;
	padding: 0px 20px;
}
.sourcewell-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.sourcewell-logo {
	max-width: 175px;
    width: 100%;
    display: block;
    margin: auto;
}


/*=============================
	skid attachments styles 
==============================*/
.skid-bkgd {
	margin: 50px 0px;
	padding: 0px 20px;
}
.skid-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.skid-btn {
	background-color: #fff;
    border: 1px solid #000;
    color: #c84334;
    /*text-align: center;*/
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .75px;
    font-weight: 500;
	width: 100%;
    padding: 20px;
    margin: 15px 0px;
	text-align: left;
}
.skid-btn:hover {
	border: 1px solid #c84334;
	color: #000000;
}
.skid-btn p {
    color: #000;
    text-transform: none;
    font-weight: 400;
    margin-top: 10px;
}
.skid-img {
	/* height: 100px; */
    /* width: auto; */
    display: block;
    margin: 20px auto;
    /* margin-bottom: 25px; */
    max-width: 250px;
	width: 100%;
}
.skid-link {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #000!important;
}
.skid-link:hover {
	color: lightgrey!important;
}



/*=============================
	construction equip styles 
==============================*/
.construction-bkgd {
	margin: 50px 0px;
	padding: 0px 20px;
}
.construction-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.construction-btn {
	background-color: #fff;
    border: 1px solid #000;
    color: #c84334;
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .75px;
    font-weight: 500;
	width: 100%;
    padding: 20px;
    margin: 15px 0px;
}
.construction-btn:hover {
	border: 1px solid #c84334;
	color: #000000;
}


/*====================================== 
	thank you page  styles 
========================================*/
.thank-bkgd {
	margin: 50px 0px;
	padding: 0px 20px;
}
.thank-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
	text-align: center
}
.thank-btn {
	background-color: #c84334;
    border: 2px solid #c84334;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 50px;
    display: block;
    margin: auto;
	margin-top: 25px;
}
.thank-btn:hover {
	background-color: #FFFFFF;
	color: #C84334;
}


/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:1200px; 
	text-align:center; 
	margin:0 auto;
	}

.footer-bkgd {
	background-color: #000;
    color: #fff;
    padding: 20px;
}
.footer-wrap {
	max-width: 1200px;
    display: block;
    margin: auto;
}
.footer-link-container {}
.footer-header {
	color: #c84334;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    border-bottom: 1px solid #c84334;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.footer-list-left {
	width: 50%;
    float: left;
	list-style-type: none;
    padding: 0px;
}
.footer-item {}
.footer-list-link {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff!important;
}
.footer-list-link:hover {
	color: #c84334!important;
}
.footer-list-right {
	width: 50%;
    float: right;
	list-style-type: none;
    padding: 0px;
}
.footer-location-container {
	text-align: center;
}
.footer-location {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff!important;
}
.footer-phone {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff!important;
    font-weight: 600;
    letter-spacing: .5px;
    display: block;
    margin-top: 10px;
}
.footer-phone:hover {
	color: #c84334!important;
}
.footer-red-bkgd {
	background-color: #c84334;
    padding: 10px;
}
.copyright-text {
	font-size: 11px;
    color: #fff;
    letter-spacing: .25px;
    text-align: center;
}
.copyright-link {
    color: #fff!important;
}
.copyright-link:hover {
	color: #000!important;
}

/*  scrolling inventory
------------------------------------------------*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
	border-top: 1px solid #000;
}
 
.scrolling{
    width:100%;
    height:92px;
}






/*========================= 
	 Responsive styles 
===========================*/
@media only screen and (max-width : 1778px) {
	.welcome-bkgd {background: linear-gradient(90deg, rgba(0,0,0,1) 62%, rgba(200,67,52,1) 62%);}
}

@media only screen and (max-width : 1646px) {
	.welcome-bkgd {background: linear-gradient(90deg, rgba(0,0,0,1) 63%, rgba(200,67,52,1) 63%);}
}

@media only screen and (max-width : 1392px) {
	.welcome-bkgd {background: linear-gradient(90deg, rgba(0,0,0,1) 65%, rgba(200,67,52,1) 65%);}
}

@media only screen and (max-width : 1259px) {
	.welcome-bkgd {background: linear-gradient(90deg, rgba(0,0,0,1) 66%, rgba(200,67,52,1) 66%);}
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {
	.logo-container {text-align: center;}
	.brand-logo {margin: 20px 10px; display: inline-table;}
	.hero-bkgd {margin-top: 0px;}
	.financing-card {margin: 10px 0px;}

}

@media only screen and (max-width : 1169px) {
	nav ul li a {padding: 5px; font-size: 12px;}
}

@media only screen and (max-width : 1131px) {
	.equip-card {min-height: 175px;}

}

@media only screen and (max-width : 1109px) {
	.brand-logo {max-width: 125px;}

}

@media only screen and (max-width : 1056px) {
	.equip-card {min-height: 185px;}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
	.header-contact-wrap {text-align: right;}
	.header-logo {margin-top: 10px;}
	.home-btn {width: 99%;}
	.middle-btn {margin: 5px auto; width: 99%;}
	.welcome-bkgd {background: transparent; margin: 0px; padding: 0px;}
	.welcome-red {background-color: #c84334; padding: 50px 20px;}
	.welcome-black {background-color: #000; padding: 50px 20px; text-align: center;}
	.welcome-paragraph {margin-right: 0px;}
	.equip-card {min-height: 175px; width: 100%; margin: 10px auto; text-align: center;}
	.equip-brand {display: block; margin: auto; margin-bottom: 15px;}
	.equip-mid-wrap {margin: 0px;}
	.locations-card {margin: 10px 0px;}
	.sourcewell-logo {margin-bottom: 50px;}
	.apply-margin {margin-top: 0px;}
	h3#lrg-text {font-size: 30px; line-height: 35px;font-weight: 700;}

}

@media only screen and (max-width : 959px) {
	.brand-logo {max-width: 100px;}

}

@media only screen and (max-width : 809px) {
	.brand-logo {max-width: 90px; margin: 10px;}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	.header-logo {float: none; display: block; margin: auto;}
	.home-btn {width: 100%;}
	.middle-btn {width: 100%;}
	.map-bkgd {background: transparent; padding: 50px 20px;}
	.map-text {float: none; text-align: center;}
	.map-location {margin: 0px 30px; display: inline-table;}
	.equip-card {min-height: 175px;}
	.skid-btn {text-align: center;}

}

@media only screen and (max-width : 691px) {
	.map-location {margin: 15px;}
}

@media only screen and (max-width : 601px) {
	.map-location {margin: 30px auto; display: block;}
	.map-bkgd {padding: 20px;}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
 	.financing-card {height: 200px;}
 
}

@media only screen and (max-width : 420px) {
	.equip-card {min-height: 200px;}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	.equip-card {min-height: 225px;}

}

