@charset "utf-8";

/* Remove the browser defaults and set to our own */
@import url("reset.css");

/* Import the fonts used for the site */
@import 'https://fonts.googleapis.com/css?family=Lato:300,400,700|Open+Sans:400,700|Quicksand:400,700';

/* Color Palette:
color1  : #7ecd31;
color2  : #052f5b;
color3  : #fba206;
color4  : #207bd9;
*/

/* Table of Contents
==================================================
01. STRUCTURE
02. ACCESSIBILITY
03. BASE STYLES
04. HEADER
05. BANNER SLIDE OVERRIDES
06. FOOTER
07. HOMEPAGE
08. PAGES
*/

/*
==================================================
01. STRUCTURE
==================================================
*/

html {
	font-size: 75%;
	-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}
body {
   font-family: 'Open Sans', sans-serif;
	 font-weight: 400;
   line-height: 1.4;
   font-size: 1em;
}
#web_container {
   max-width: 100%;
   min-width: 100%;
   overflow: hidden;
}
.content_width_container {
	margin:0 auto;
	padding:0;
}
.main {
   position:relative;
}
.clearfloat:after{
	content:" ";
	display:block;
	clear:both;
}
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}
#mobile_wrapper{
	width:100%;
   background:#fff;
	position:relative;
	z-index:200;
}

/*
==================================================
02. ACCESSIBILITY
==================================================
*/

a.accessibility-skip {
	display:block;
	padding:8px;
	position: absolute;
	top:-40px;
	left:0px;
	color:white;
	border-right:1px solid white;
	border-bottom:1px solid white;
	border-bottom-right-radius:8px;
	background: lightslategrey;
	-webkit-transition: top 1s ease-out, background 1s linear;
    transition: top 1s ease-out, background 1s linear;
    z-index: 100;
}
a.accessibility-skip:focus, a.accessibility-skip:active {
	position:absolute;
	left:0px;
	top:0px;
	display:block;
	background: lightslategrey;
	outline:0;
	-webkit-transition: top .1s ease-in, background .5s linear;
    transition: top .1s ease-in, background .5s linear;
}

/*
==================================================
03. BASE STYlES
==================================================
*/
img {
	width: 100%;
	height: auto;
}
#section_container {
   padding: 20px 20px 20px 20px;
}
#section_container.no-padding {
   padding: 0;
}
.content_width_container {
   margin: 0 auto;
   max-width: 1250px;
}
.content_width_container.no-max-width {
   max-width: none;
}
a:link {
 color: #7ecd31;
 text-decoration: none;
}
a:visited {
	color: #207BD9;
}
a:hover {
 text-decoration: underline;
}
a:active {
   color: #7ecd31;
}
p {
   font-size: 1.167em; /* 14px */
	 line-height: 1.6;
	 margin-bottom: 15px;
}
dt, dd {
   font-size: 1.167em; /* 14px */
	 line-height: 1.6;
	 margin-bottom: 15px;
}
dt {
	font-weight: bold;
}
h1 {
   color: black;
   font-size: 2.000em; /* 24px */
   font-weight: normal;
	 margin-bottom: 15px;
}
h2 {
   color: black;
   font-size: 1.667em; /* 20px */
   font-weight: normal;
	  margin-bottom: 15px;
}
h3 {
   color: black;
   font-size: 1.333em; /* 16px */
   font-weight: normal;
	  margin-bottom: 15px;
}
/*
Easy Responsive CSS Grid Layouts: I use the
box-sizing: border-box method in the below article.

Also, see article if you want to have something like
the columns respond from 4 columns to 2 columns
and than 1 column.

https://www.sitepoint.com/easy-responsive-css-grid-layouts/
*/

/* grid */
.row {
  margin: 0 -10px;
  margin-bottom: 20px;
}
.row:last-child {
  margin-bottom: 0;
}
[class*="col-"] {
  padding: 10px;
}

@media all and ( min-width: 850px ) {

  .col-2-3 {
    float: left;
    width: 66.66%;
  }
  .col-1-2 {
    float: left;
    width: 50%;
  }
  .col-1-3 {
    float: left;
    width: 33.33%;
  }
  .col-1-4 {
    float: left;
    width: 25%;
  }
  .col-1-8 {
    float: left;
    width: 12.5%;
  }
}

/*
==================================================
04. HEADER
==================================================
*/
header .content_width_container {
   margin: 0 auto;
   max-width: 100%;
}
.logo {
	  width: 240px;
    height: 86px;
    margin: 0 auto;
    display: block;
}
.top-graphic {
	display: none;
}
	@media screen and (min-width: 850px) {
		.logo {
			width: 250px;
			height: 89px;
			position: absolute;
			top: 34px;
		}
		.top-graphic {
			display: block;
		}
}
@media screen and (min-width: 1050px) {
	.logo {
		width: 330px;
		height: 117px;
		position: absolute;
		top: 22px;
	}
}
@media screen and (min-width: 1450px) {
	.logo {
		width: 380px;
		height: 135px;
		position: absolute;
		top: 23px;
	}
}
/* Important Notice */
#header_important_notice {
   width: 100%;
   height: 60px;
   background: #c8102e;
   position: relative;
   padding: 10px 10px 10px 10px;
}
#header_important_notice.show {
   display:block;
}
#header_important_notice.hide {
   display:none;
}
#header_important_notice span.notice_title {
   display:block;
   font-size:14px;
   text-align:center;
   width:94%;
   height:14px;
   padding: 6px 3%;
   color:#ffffff;
   font-weight:700;
}
#header_important_notice span.notice_content {
   display:block;
   font-size:14px;
   text-align:center;
   width:94%;
   height:14px;
   padding: 6px 3%;
	color:#ffffff;
}
#header_important_notice span.notice_content a {
color:white;
}
#header_important_notice span.notice_content a:hover {
color:white;
font-weight:bold;
text-decoration:underline;
}
@media (max-width: 600px) {
	#header_important_notice {
	   height: 80px;
	}
}

/*
==================================================
05. BANNER SLIDE OVERRIDES
==================================================
*/

@media screen and (min-width: 550px) {
	.mobile_banner {
		display: none;
	}
}
#slide .slide_nav a,
#slideshow .slide_nav a {
   background: #7ecd31 !important;
   color: #7ecd31 !important;
}
#slide .slide_nav a:first-child,
#slide .slide_nav a:last-child {
   visibility:hidden;
}
#slide .slide_nav a:hover,
#slideshow .slide_nav a:hover {
   background: white !important;
   color: white !important;
}
#slide .slide_nav a.active,
#slideshow .slide_nav a.active {
   background: #052f5b !important;
   color: #052f5b !important;
}
#slide .slide_text {
	text-align: center;
}
#slide .slide_text h1 {
	font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  letter-spacing:2px;
  top: 50%;
  transform:translate(0,-50%);
  -ms-transform:translate(0,-50%);
  -webkit-transform:translate(0,-50%);
}
#slide .slide_text h1.banner-1,
#slide .slide_text h1.banner-3 {
  right: 4%;
	width: 30%
}
#slide .slide_text h1.banner-2,
#slide .slide_text h1.banner-4 {
  left: 4%;
	width: 30%
}
#slide .slide_text h1 span {
  display:block;
	color: white;
  width:100%;
  font-weight:400;
  font-size: 25px;
  line-height:1.3em;
  text-transform:uppercase;
	text-align: left;
}
#slide .slide_text h1 p {
	font-family: 'Lato', sans-serif;
	color: white;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4em;
  margin: 5px 0 9px 0;
	text-align: left;
}
#slide .slide_text h1 a {
	border-radius: 10px;
  color: white;
  background-color: #01579e;
  font-size: 14px;
	font-family: 'Quicksand', sans-serif;
	font-weight: 400;
  letter-spacing: 1px;
  line-height: 15px;
  border: 1px solid white;
  padding: 5px 25px 3px 25px;
  text-transform: uppercase;
	cursor: inherit;
	text-decoration: none;
}
#slide .slide_text h1 a:hover,
#slide .slide_text h1 a:focus {
  background: #7ecd31;
  color:white;
  text-decoration:none;
}
@media screen and (min-width: 550px) and (max-width: 749px ) {
	 #slide .slide_text h1 span {
 	  font-size: 13px;
 	}
	#slide .slide_text h1 p {
	  display: none;
	}

	#slide .slide_text h1 a {
		  display: none;
	}
}
@media screen and (min-width: 750px) and (max-width: 1000px ) {
	 #slide .slide_text h1 span {
 	  font-size: 15px;
 	}
	#slide .slide_text h1 p {
	  font-size: 12px;
	}
	#slide .slide_text h1 a {
		font-size: 12px;
	  padding: 10px 40px 8px 40px;
	}
}
@media screen and (min-width: 1350px) {
	#slide .slide_text h1 span {
	  font-size: 30px;
	}

	#slide .slide_text h1 p {
	  font-size: 22px;
	}
	#slide .slide_text h1 a {
		font-size: 14px;
	  padding: 10px 40px 8px 40px;
	}
}

/*
==================================================
06. FOOTER
==================================================
*/

/* grid */
footer .row {
  margin: 0 -10px;
  margin-bottom: 20px;
}
footer  .row:last-child {
  margin-bottom: 0;
}
footer  [class*="col-"] {
  padding: 10px;
}
@media all and ( min-width: 600px ) {

  footer .col-1-4 {
    float: left;
    width: 50%;
  }
  footer  .col-1-4:nth-child(4n+1) {
    clear: both;
  }

}

@media all and ( min-width: 1100px ) {

  footer .col-1-4 {
    width: 25%;
  }
  footer .col-1-4:nth-child(4n+1) {
    clear: none;
  }
  footer .conquest {
	  display: block;
	  text-align: center;
  }

}
#footer {
    padding: 20px 20px;
    background-color: #052f5b;
}
@media screen and (min-width: 850px) {
	#footer {
		padding: 60px 80px;
	}
}
#footer h3 {
	color: white;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-size: 1.6em;
	font-family: 'Open Sans', sans-serif;
}
#footer p {
	color: white;
	font-size: 1em;
	max-width: 275px;
}
#footer ul {
	margin: 10px 0 0 10px;
	color: white;
	font-size: 1em;
}
#footer li {
	line-height: 2.2;
}
#footer a {
	color: white;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}
#footer .location:before {
    content: "\f041";
    font-family: FontAwesome;
    position: relative;
    left: -10px;
    top: 1px;
    color: #71b6d5;
    font-weight: normal;
		font-size: 1.6em;
}
#footer .email:before {
    content: "\f0e0";
    font-family: FontAwesome;
    position: relative;
    left: -10px;
    top: 1px;
    color: #71b6d5;
    font-weight: normal;
		font-size: 1.4em;
}
#footer .phone:before {
    content: "\f095";
    font-family: FontAwesome;
    position: relative;
    left: -10px;
    top: 1px;
    color: #71b6d5;
    font-weight: normal;
		font-size: 1.6em;
}
#footer input[type="email"] {
   border: 0;
	 font-size: 1.1em;
}
#footer .email_newsletter {
	margin-top: 20px;
    display:inline-block;
		border-radius: 5px;
		line-height: 2.9;
		border-color: transparent;
		padding: 0 0 0 15px;
		background-color: white;
}
@media screen and (max-width: 849px) {
	#footer  button {
	   margin-right: -2px;
	}
}
#footer  button {
	background-color: #71b6d5;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  border: 0;
  height: 34px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: white;
}
#footer  button:hover {
	cursor: pointer;
}
/*
==================================================
07. HOMEPAGE
==================================================
*/
header {
	padding: 20px 20px 20px 20px;
}
@media screen and (min-width: 850px) {
	header {
		padding: 20px 60px 0 60px;
	}
}
header ul {
	float: none;
  text-align: center;
  color: #207bd9;
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
	margin-top: 10px;
}
@media screen and (min-width:850px) {
	header ul {
		float: right;
		text-align: right;
		font-size: 14px;
		margin-top: 0;
	}
}
header ul li {
	line-height: 2.2em;
}
header ul span {
    color: #fba206;
    margin-right: 5px;
}
@media screen and (min-width: 850px) {
	header ul span {
		margin-right: 10px;
	}
}
header .phone {
    font-size: 17px;
    color: #207bd9;
    text-decoration: none;
}
@media screen and (min-width:850px) {
	header .phone {
		font-size: 20px;
	}
}
@media screen and (max-width: 849px) {
	header .phone:hover {
		text-decoration: underline;
	}
}
#HomePage .main_container .email {
	border-bottom: 8px solid #fefdfa;
}
#HomePage .main_container #section_container_three .email {
	border-top: 8px solid #fefdfa;
	background-color: white;
}
#HomePage .email_form .col-1-3 {
	padding-top: 0;
}
#HomePage .email_form .list_new_equipment {
    display: block;
    border-radius: 15px;
    line-height: 3.2;
    border: 2px solid #207bd9;
    padding: 0 0 0 20px;
    background-color: white;
    width: 80%;
    margin: 30px auto 0 auto;
}
@media screen and (min-width: 850px) {
	#HomePage .email_form .list_new_equipment {
		margin-top: 20px;
		margin-left: 5%;
		display:inline-block;
	}
}
@media screen and (min-width: 850px) {
	#HomePage .email_form .list_new_equipment {
		margin-top: 30px;
	}
}
#HomePage .email_form input[type="email"] {
   border: 0;
	 font-size: 1.1em;
	 width: 68%;
}
@media screen and (min-width: 850px) {
	#HomePage .email_form input[type="email"] {
		 width: 80%;
	}
}
#HomePage .email_form  button {
	background-color: transparent;
  border: 0;
  height: 40px;
  color: #fcb046;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
  float: right;
  font-size: 1.2em;
}
#HomePage .email_form  button:hover {
	cursor: pointer;
}
#HomePage .email_form label {
    color: #207bd9;
    font-size: 0.9em;
		font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    margin: -17px 0 0 -17px;
    line-height: 1;
    background-color: white;
}
@media screen and (min-width: 850px) {
	#HomePage .email_form label {
		font-size: 1.3em;
		margin: -10px 0 0 50px;
		padding: 0 10px;
	}
}
@media screen and (max-width: 849px) {
	#HomePage .email_form .col-1-3 img {
		display:none;
	}
	#HomePage #section_container_one .email {
		background-color: #7ecd31;
	}
	#HomePage .email_form label {
    background-color: #7ecd31;
  }
}
@media screen and (min-width: 850px) {
	#HomePage .email_form .col-1-3 img {
		margin-bottom: -15px;
		z-index: -1;
    position: relative;
	}
}
/* sub navigation */
@media screen and (max-width: 849px) {
	#HomePage #section_container_two {
		background-color: #207bd9;
		margin-bottom: 0 !important;
		padding: 10px 0 30px 0;
	}
	#HomePage .sub-nav a {
    background-color:rgba(5, 47, 91, .9) !important;
  }
}
@media screen and (max-width: 1920px) {
	#HomePage #section_container_two {
    margin-bottom: -8%;
  }
}
@media screen and (max-width: 1453px) {
	#HomePage #section_container_two {
    margin-bottom: -12%;
  }
}
@media screen and (max-width: 1263px) {
	#HomePage #section_container_two {
    margin-bottom: -16%;
  }
}
@media screen and (max-width: 1117px) {
	#HomePage #section_container_two {
    margin-bottom: -20%;
  }
}
@media screen and (max-width: 1004px) {
	#HomePage #section_container_two {
    margin-bottom: -24%;
  }
}
@media screen and (max-width: 907px) {
	#HomePage #section_container_two {
    margin-bottom: -28%;
  }
}
#HomePage #section_container_two .content_width_container {
	margin: 20px 20px 0 20px;
}
@media screen and (min-width: 850px) {
	#HomePage #section_container_two .content_width_container {
		margin: 0;
	}
}
@media screen and (min-width: 850px) {
	#HomePage .sub-nav {
		background-image:url('../images/sub-navigation.jpg');
	  background-repeat:no-repeat;
		background-size: contain;
	  height: 387px;
	}
}
#HomePage .sub-nav a {
   text-decoration: none;
	 font-family: 'Quicksand', sans-serif;
	 font-weight: 700;
	 letter-spacing: 1px;
}
@media screen and (max-width:849px) {
	#HomePage .sub-nav a {
		width: 90%;
		display: block;
		margin: 0 auto;
		border-radius: 20px;
		border: 1px solid white;
		color: white;
		text-transform: uppercase;
		font-size: 1.5em;
		text-align: center;
		padding: 2% 7%;
		white-space: nowrap;
	}
}
@media screen and (min-width:850px) {
	#HomePage .sub-nav a {
		margin: 25% 0 0 0;
		display: inline-block;
		border-radius: 20px;
		border: 1px solid white;
		color: white;
		text-transform: uppercase;
		font-size: 1.5em;
		text-align: center;
		padding: 2% 7%;
		background-color: rgba(5, 47, 91, .9);
	  white-space: nowrap;
	}
	#HomePage .sub-nav a:hover {
		background-color: rgba(126, 205, 49, .9);
	}
}
@media screen and (min-width:850px) {
	#HomePage .sub-nav .sales {
		left: 22%;
		position: relative;
	}
	#HomePage .sub-nav .services {
		left: 4%;
		position: relative;
	}
	#HomePage .sub-nav .rentals {
		left: 4%;
		position: relative;
	}
	#HomePage .sub-nav .safety {
		left: 4%;
		position: relative;
	}
}
@media screen and (min-width:950px) {
	#HomePage .sub-nav .sales {
		left: 24%;
		position: relative;
	}
	#HomePage .sub-nav .services {
		left: 7%;
		position: relative;
	}
	#HomePage .sub-nav .rentals {
		left: 7%;
		position: relative;
	}
	#HomePage .sub-nav .safety {
		left: 4%;
		position: relative;
	}
}
@media screen and (min-width:1050px) {
	#HomePage .sub-nav .sales {
		left: 26%;
		position: relative;
	}
	#HomePage .sub-nav .services {
		left: 9%;
		position: relative;
	}
	#HomePage .sub-nav .rentals {
		left: 9%;
		position: relative;
	}
	#HomePage .sub-nav .safety {
		left: 4%;
		position: relative;
	}
}
@media screen and (min-width:1050px) {
	#HomePage .sub-nav .sales {
		left: 28%;
		position: relative;
	}
	#HomePage .sub-nav .services {
		left: 11%;
		position: relative;
	}
	#HomePage .sub-nav .rentals {
		left: 11%;
		position: relative;
	}
	#HomePage .sub-nav .safety {
		left: 4%;
		position: relative;
	}
}
@media screen and (min-width:1350px) {
	#HomePage .sub-nav .sales {
		left: 28%;
		position: relative;
	}
	#HomePage .sub-nav .services {
		left: 14%;
		position: relative;
	}
	#HomePage .sub-nav .rentals {
		left: 14%;
		position: relative;
	}
	#HomePage .sub-nav .safety {
		left: 6%;
		position: relative;
	}
}
@media screen and (min-width:1600px) {
	#HomePage .sub-nav .sales {
		left: 30%;
		position: relative;
	}
	#HomePage .sub-nav .services {
		left: 16%;
		position: relative;
	}
	#HomePage .sub-nav .rentals {
		left: 16%;
		position: relative;
	}
	#HomePage .sub-nav .safety {
		left: 8%;
		position: relative;
	}
}
@media screen and (min-width:1800px) {
	#HomePage .sub-nav a {
		margin: 18% 0 0 0;
	}
}
.col-1-3.md-col .contact {
	max-width: 230px;
	margin: -20px auto 0 auto;
  display: block;
}
.col-1-3.md-col .contact:hover {
	opacity: .8;
}
#HomePage .col-2-3.lg-col {
	width: 100%;
}
@media all and ( min-width: 850px ) {
	.col-1-3.sm-col {
		width: 17.33%;
		padding-top: 0;
	}
	.col-2-3.lg-col {
		width: 55%
	}
	#HomePage .col-2-3.lg-col {
		width: 65.33%;
	}
	.col-1-3.md-col {
		width: 27.66%;
		padding-top: 0;
		text-align: center;
	}
	.col-1-3.md-col .contact {
	  padding: 47px 0 0 0;
		margin-top: 0;
	}
}
@media all and ( min-width: 850px ) {
	#HomePage .copy {
	   margin: 5% 17% 0 20px;
	}
}
@media all and ( min-width: 1700px ) {
	#HomePage .copy {
	   margin: 9% 17% 0 20px;
	}
}
 /* Ads slider */
#HomePage .bx-wrapper {
	margin: 0 auto;
}
#HomePage .bx-wrapper, #HomePage .bx-window {
	width: 100% !important;
	background: url('../images/banner-logos-bg.jpg') 0 0 no-repeat;
}
#HomePage #slider {
	list-style:none;
	padding: 0;
}
#HomePage #section_container_four .content_width_container {
	text-align: center;
}
#HomePage .content_width_container h3 {
  background-color: #7ecd31;
	border-radius: 10px;
	padding: 6px 45px;
	display: inline-block;
	color: white;
	font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 2em;
  letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
  bottom: -35px;
  z-index: 1;
}
#HomePage #slider img {
	margin:0;
	display:inline-block;
	max-width: 300px;
}
#HomePage #slider li {
	width:300px;
	height:200px;
	padding-top: 65px;
}

/*
==================================================
08. PAGES
==================================================
*/
#Sales .col-1-3.sm-col img,
#Services .col-1-3.sm-col img,
#Safety-Training .col-1-3.sm-col img,
#Contact .col-1-3.sm-col img,
#Employment .col-1-3.sm-col img {
	margin-top: -4px;
}
.copy {
	margin: 30px 20px 30px 20px;
}

@media screen and (min-width: 850px) {
	#Sales .copy,
	#Services .copy,
	#Safety-Training .copy,
	#Contact .copy,
	#Employment .copy {
		margin: 30px 20px 30px 20px;
	}
}
@media screen and (max-width: 849px) {
	#Sales .sm-col img,
	#Services .sm-col img,
	#Safety-Training .sm-col img,
	#Contact .sm-col img,
	#Employment .sm-col img,
	#FourOFour .sm-col img  {
	    display: none;
	}
}
#HomePage .copy ul,
#Employment .copy ul,
#Contact .copy ul {
	font-size: 1.167em; /* 14px */
	line-height: 1.6;
	margin-bottom: 15px;
	list-style: disc;
	margin-left: 35px;
}
#Sales .copy ul {
	font-size: 1.167em; /* 14px */
	line-height: 1.6;
	margin-bottom: 15px;
	list-style: none;
}
#Sales .copy img {
  float: none;
  margin: 0 15px 15px 0;
}
@media screen and (min-width: 850px) and (max-width: 1089px) {
	#Sales .copy img {
	 width: 285px;
 }
}
@media screen and (min-width: 1090px) {
	#Sales .copy img {
		width: 285px;
	  float: left;
	  margin: 0 15px 15px 0;
	}
	#Sales .copy ul {
		margin-left: 35px;
	}
}
h1 {
	color: #01579e;
	text-transform: uppercase;
}
#Contact .copy ul {
	list-style: none;
	margin-left: 15px;
}
#Contact .list {
	border-left: 3px solid #fba206;
}
 /*Form */
#Contact .form p {
   padding-top: 0;
	 margin-bottom: 0;
}
@media screen and (min-width:850px) {
	#Contact .copy {
		margin: 30px 60px;
	}
}
.form input[type='text'] {
	height: 40px !important;
}
.form textarea {
     height: inherit !important;
	   width: 100% !important;
}
.form input[type=submit] {
	width: 140px !important;
	background: rgba(5, 47, 91, 1) !important;
	color: white !important;
	font-size: 14px !important;
	border-radius: 10px !important;
	float: left !important;
	margin-top: 30px;
	letter-spacing: 1px;
	height: 40px;
	border: none !important;
}
.form input[type=submit]:hover {
	background-color: #7ecd31 !important;
}
.form p {
	width: 100% !important;
}
.form .state {
   color: black !important;
}
@media screen and (max-width: 849px) {
	.form .state {
	    width: 100% !important;
	}
	.form {
		margin-top: -10px;
	}
}
::-webkit-input-placeholder { /* Chrome */
  color: black;
}
:-ms-input-placeholder { /* IE 10+ */
  color: black;
}
::-moz-placeholder { /* Firefox 19+ */
  color: black;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: black;
  opacity: 1;
}
/* new inventory */
#New-Forklifts .col-1-3.products-all,
#Used-Forklifts .col-1-3.products-all,
#Rentals-Leasing .col-1-3.products-all  {
		width: 100%;
}
#New-Forklifts .col-2-3.products-all,
#Used-Forklifts .col-2-3.products-all,
#Rentals-Leasing .col-2-3.products-all {
		width: 100%;
}
@media screen and (min-width: 1050px) {
	#New-Forklifts .col-1-3.products-all,
	#Used-Forklifts .col-1-3.products-all,
	#Rentals-Leasing .col-1-3.products-all {
	    float: left;
	    width: 50%!important;
	}
	#New-Forklifts .col-2-3.products-all,
	#Used-Forklifts .col-2-3.products-all,
	#Rentals-Leasing .col-2-3.products-all {
	    float: left;
	    width: 50% !important;
	}
	#New-Forklifts #inventory_data,
	#Used-Forklifts #inventory_data,
	#Rentals-Leasing #inventory_data {
		padding-left: 20px;
	}
}
#New-Forklifts .main_container h3,
#Used-Forklifts .main_container h3,
#Rentals-Leasing .main_container h3 {
	color: #7ecd31;
	margin-bottom: 5px;
}
#New-Forklifts .price,
#Used-Forklifts .price,
#Rentals-Leasing .price {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 13px;
}
#New-Forklifts .forklift_picture,
#Used-Forklifts .forklift_picture,
#Rentals-Leasing .forklift_picture  {
   position:relative;
   left:50%;
   top:50%;
	transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	display: block;
	width: 100%;
	margin: 0;
}
#New-Forklifts .image_container,
#Used-Forklifts .image_container,
#Rentals-Leasing .image_container  {
	float: left;
	clear: left;
	display: block;
	width: 250px;
   height:188px;
	margin: 0 20px 0 0;
   overflow:hidden;
}
@media screen and (max-width: 649px) {
	#New-Forklifts .forklift_picture,
	#Used-Forklifts .forklift_picture,
	#Rentals-Leasing .forklift_picture {
		float: none;
		margin-bottom: 0px;
      position:relative;
      left:0;
      top:0;
   	transform:translate(0,0);
   	-ms-transform:translate(0,0);
   	-webkit-transform:translate(0,0);
	}
   #New-Forklifts .image_container,
   #Used-Forklifts .image_container,
   #Rentals-Leasing .image_container  {
      width:100%;
      height:auto;
		float: none;
		margin: 0 auto 20px auto;
   }
	#New-Forklifts .description,
	#Used-Forklifts .description,
	#Rentals-Leasing .description  {
		margin-bottom: 50px;
	}
}
@media screen and (min-width: 650px) {
	#New-Forklifts .products,
	#Used-Forklifts .products,
	#Rentals-Leasing .products {
		height: 249px;
		margin-bottom: 20px;
	}
}
#New-Forklifts .see-products,
#Used-Forklifts .see-products,
#Rentals-Leasing .see-products {
	display: block;
	font-size: 15px;
}
@media screen and (min-width: 850px) {
	#New-Forklifts .see-products,
	#Used-Forklifts .see-products,
	#Rentals-Leasing .see-products {
		display: none;
	}
}
#SiteMap .copy a {
		color: black;
		line-height: 2;
}
#SiteMap .copy ul li ul {
	margin-left: 15px;
}
