@charset "utf-8";
/***** BEGIN RESET *****/

* {

    border:0;
    margin:0;
    padding:0;
}

body {
	-webkit-text-size-adjust: none;
	background:#fff;
	overflow-x:hidden;
	color:#000;
	line-height:1 !important;
	font-family: 'Oswald', sans-serif !important;
}


ol, ul {list-style: none;}
.clear {clear: both; height:0px; margin:0;}

#pad{padding: 30px 0}

.text-center{text-align: center}

/***** END RESET *****/

/****************************************************************************hover easing style


			-webkit-transition: all .5s ease; /* Safari and Chrome */
  /*  		-moz-transition: all .5s ease; /* Firefox */
  /*  		-ms-transition: all .5s ease; /* IE 9 */
  /*  		-o-transition: all .5s ease; /* Opera */
  /*  		transition: all .5s ease;


.pad-left {padding-left:25px;}


/*---POP-UP -----------------------------------*/

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.popup-box {
	width: 50%;
	margin: 0 auto;
	background: rgba(0,0,0,0.2);
	padding: 35px;
	border-radius: 20px/50px;
	background-clip: padding-box;
	text-align: center;
}
.popup .close {
    position: absolute;
    top: 10px;
    right: 15px;
	transition: all 0.2s;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding:0 10px 5px 10px; 
	background: #00467e
}
.popup .close:hover {
  background: #000; color: #fff;}
.popup .content {
  max-height: 60%;
  overflow: auto;
}

/*Let's make it appear when the page loads*/
.overlay:target:before {
    display: none;
}
.overlay:before {
	content:"";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	background: rgba(0, 0, 0, 0.85);
	position: fixed;
	z-index: 99999;
}
.popup {
	background: #fff;
	color: #000;
	font-size: 16px;
	font-weight: 300;
	border:2px solid #fff;
	border-radius: 5px;
	width: 95%;
	max-width: 900px;
	position: absolute;
	top: 3.5vw;
	left: 0;
	right: 0;
	float:none;
	padding:0 0 2% 0;
	margin: 0 auto;
	text-align:left;
	z-index: 99999999;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.overlay:target .popup {
    top: -280%;
    left: -100%;
}

.blue-bg{background: #00559a; color: #fff !important;}
.blue-bg #quotes{padding: 30px 0; color: #fff !important; margin: 0 auto; max-width: 90%;}
.popup #quotes{ max-width: 90%;}

/*=========================================
TYPOGRAPHY
========================================*/
a {color:#00559a;word-break: break-word; font-weight:600;transition: .3s all;}
a:hover {color: #000;}

.black {color:#000!important;}
.white {color:#fff!important;}

img.full-img {width:100%; height:auto;}

/*=========================================
HEADER
========================================*/
.top-half {
    display: flex;
}
.newsletter {
    display: flex;
    justify-content: space-between;
	    width: 100%;
}

.newsletter p {
    flex: fit-content;
    font-size: 18px;
}

.call-us-mobile {display:none}

/*After Hours dropdowns*/
.after-hours {position: relative; max-width: 280px; width: 90%; margin: 10px auto;}

.after-hours .click {border: 1px solid #ccc; font-family: "proxima-nova", sans-serif; text-transform: uppercase; text-align: center; padding: 5px; font-weight: 500; cursor: pointer; position: relative;}

.after-hours .click img {position: absolute;
    max-width: 40px;
    border-radius: 15px;
    padding: 5px;
    left: -10px;
    top: 50%;
    transform: translate(0, -50%);
    background: #fff;}

.after-hours .click span {padding-left: 30px;}

.after-hours .support-list {background: #eee; border: 1px solid #ccc; border-top: 2px solid #ccc; position: absolute; width: 100%; padding: 10px; line-height: 1.4; text-align: center; font-size: 15px; z-index: 5;}

#menu-button a .fa {color: #fff;}

.phones .blue .loc {    font-size: 16px;
    padding: 5px;
    background-color: #00559a;
    border-radius: 18px;
	color: #fff;
}

/*---YELLOW BAR---*/
.yellow-bar {
    background: #ffc300d9;
    padding: 15px;
    float: left;
    font-weight: 900;
    width: 100%;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
   margin-bottom: -54px;
    z-index: 2;
    position: relative;
	overflow: hidden;
}
.yellow-bar a {
	color: #fff;
    text-decoration: none;
    display: inline-block;
    max-width: 1300px;
}

#scroll-text {
  text-align: right;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  max-width: 1300px;
  -moz-animation: scrolltext 20s linear infinite;
  -webkit-animation: scrolltext 20s linear infinite;
  animation: scrolltext 20s linear infinite;
	transition: .3s all;
}

#scroll-text:hover{
  -webkit-animation-play-state:paused;
  -moz-animation-play-state:paused;
  -o-animation-play-state:paused;
  animation-play-state:paused;
  cursor: pointer;
	color: #00559a
}

/* for Firefox */
@-moz-keyframes scrolltext {
  from { -moz-transform: translateX(-100%); }
  to { -moz-transform: translateX(100%); }
}

/* for Chrome */
@-webkit-keyframes scrolltext {
  from { -webkit-transform: translateX(-100%); }
  to { -webkit-transform: translateX(100%); }
}

@keyframes scrolltext {
  from {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}



header {
	width:100%;
	float:left;
	background:#fff;
	position:relative;
	z-index:1;
/*	padding-bottom: 60px;*/
    margin-bottom: -56px;
	border-bottom:5px solid #00559a;
	    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

header p {
	text-align:center;
	color:#000;
	font-size:18px;
	line-height:35px
}

header .fa {
	color:#00559a;
}

.logo {
	width:25%;
	float:left;
	padding:18px 0;
	border-right:1px solid #aaa;
	box-sizing:border-box;
	height:165px;
}

.logo img {
	width:100%;
	max-width:250px;
	float:left;
}

.wrap {
	width:95%;
	max-width:1300px;
	margin:0 auto;
}
.wrap-logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
/*
.address {
	width:25%;
	float:left;
	padding:40px 0 10px;
	border-right:1px solid #aaa;
	box-sizing:border-box;
	height:165px;
	
}
*/
.phones {
	width:25%;
	float:left;
	padding:30px 0 20px;
	border-right:1px solid #aaa;
	box-sizing:border-box;
	height:165px;
}
.phones a {color: #00559a !important}
.smalls {
	font-size:12px;
	width:100%;float:left;line-height:16px;
}

.blue {
	color:#00559a;
	font-weight:bold;
}

header a {
	text-decoration:none;
	color:#00559a;
}

header a:hover {text-decoration:underline;}

.phones p {	line-height:25px;	font-size:18px;}

.newsletter {margin: 0 auto; text-align: center}

.newsletter p{display: inline-block; margin: 10px 25px;}

.specials-flex-row {display: flex; justify-content: flex-start; align-items: center;}
.specials-flex-column {display: flex; width: 50%;}
.specials-flex-column img {width: 100%; padding: 10px; object-fit: contain; height: auto;}

/*=======================
popup
=======================*/
.contactsec {
	width:100%;
	background:#00559a;
	float:left;
	padding:8px 10px;
	box-sizing:border-box;
	color:#fff;
	border-radius:5px;
	box-shadow: 3px 3px 10px #000;
}

.contactsec h2 {
	float:left;
	text-transform:uppercase;
	margin-top:5px;
	font-size:18px;
	
}

.contactsec .fa {
	float:right;
	border:1px solid #fff;
	color:#fff;
	font-size:20px;
	margin-left:7px;
	padding:3px 7px;
	box-sizing:border-box;
}

.contactsec .fa:hover {
	background:#fff;
	color:#00559a;
}

.contactfloater {
	width:300px;
	position:fixed;
	z-index:9999999;
	
    right: 10px;
	bottom: 140px;
}

.contactfloater .cycle-slideshow2 {
	float:right;
	width:100%;
	max-width:150px;
	padding-bottom: 0;
}

.home-page .contactfloater {
    bottom: 90px;
}


.slide {
	opacity: 0.5;
	position: fixed;
	max-width: 100%;
	display: inline-block;
 transition: all 500ms linear;
}

.slide--left {
    transform: translate(-150rem, 0);
}

.slide--right {
 transform: translate(10rem, 3rem);
}

.slide--in-view {
 opacity: 1;
}

.slide--in-view:nth-of-type(even) {
    opacity: 1;
    transform: translate(0, 0);
}

.slide--in-view:nth-of-type(odd) {
 opacity: 1;
 transform: translate(0, 3rem);
}

/*******************************************************************SLIDESHOW***************************************************************/
.slide-contain {
	width:100%;
	float:left;
	position:relative;
	z-index:0;
	background-color:#000;
}

.cycle-slideshow {
	width:100%;
	overflow:hidden;
	float:left;

	display:block;
}
.cycle-slideshow img {display:block; width:100%; float:left; padding-top:40px}

/* pager */
.pager { 
    text-align:center; width:100%; margin:-50px 0 -2px; position:relative; z-index:999; float:left;}
.pager span { 
    font-family:arial; font-size:50px; width:16px; height:16px; display:inline-block; color:#D30003; color:rgba(255,255,255,0.8); cursor:pointer; 
}
.pager span.cycle-pager-active { color:#008BFC;}
.pager > * { cursor:pointer;}



.cycle-slideshow2 img {display:block; width:100%; float:left; }




/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: 150px;
	
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}



/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:none;
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-opacity:0;
	-moz-opacity:0;
	-khtml-opacity:0;
}


/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
	color: #fff;
}
.nivo-nextNav {
	right:0px;
	color: #fff;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 5px 0;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}
/*========================================
CTA
========================================*/

.cta {
	width:100%;
	float:left;
	background:#fff;
	padding:20px 0;
	border-top:5px solid #00559a;
	border-bottom:5px solid #00559a;
	
}

.fourth {
	width:25%;
	float:left;
	padding:10px;
	box-sizing:border-box;
}

.overlayhover {
	width:100%;
	float:left;
	background:rgba(0,85,154,1.00);
}

.fourth img {
	width:100%;
	float:left;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
}

.overlayhover:hover img {
	opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

.fourth h2 {
	width:100%;
	float:left;
	padding:20px 0;
	color:#3B3B3B;
	text-transform:uppercase;
	text-align:center;
	border-bottom:2px solid #00559a;
}



ul.job-description-list-long {
    list-style: inside;
    font-size: 18px;
    line-height: 30px;
    margin-top: 10px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    margin-left: 30px;
}

ul.job-description-list-long li {
    margin-bottom: 15px;
}
td.radio-btns {text-align: left;padding: 12px 10px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #B4B4B4;}
td.radio-btns p {font-size: 15px !important ;margin: 0 !important;}
.radio-btns label {display: inline-block;margin-right: 20px;}
.radio-btns span {display: inline-flex;gap: 5px;align-items: center;justify-content: center;font-size: 16px;font-weight: 400 !important;}
.radio-btns span input {width: auto !important;}
/*===============================================
BRANDS
===============================================*/

.brands {
	width:100%;
	float:left;
	background:url("../siteart/ellensequipment-bg-welcome.jpg");
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
}

.brandoverlay {
	width:100%;
	float:left;
	padding:50px 0;
	background:rgba(255,255,255,0.70);
}

.brandthird {
	width:33.33%;
	float:left;
	padding:10px 10px;
	box-sizing:border-box;
}

.brandthird img {
	margin:0 auto;
	display:block;
	width:100%;
	max-width:200px;
}

.brandbutton {
	width:100%;
	float:left;
}

.brandbutton a {
	width:100%;
	max-width:300px;
	margin:0 auto;
	padding:20px 10px;
	box-sizing:border-box;
	color:#fff;
	text-transform:uppercase;
	font-weight:bold;
	font-size:20px;
	text-align:center;
	background:#00559a;
	display:block;
	text-decoration:none;
	margin-top:20px;
}

.brandbutton a:hover {
	background:#004883
}
.schedule-btn {
    display: none;
    margin-top: 20px;
    margin-left: 2%;
    text-align: right;
}
button.grey-btn {
   cursor: pointer;
	padding: 15px 20px;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 3px;
    /* float: right; */
    background: #00559a;
    color: #fff;
}
/*=========================
DOOSAN PAGE
=========================*/
.doosanbutton {
	    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/*=======================================
SCROLLING INVENTORY
=======================================*/

.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
 
.scrolling{
    width:100%;
    height:92px;
}

.featuredone {
	width:100%;
	float:left;
	margin-top:-50px;
	position:relative;
	z-index:1;
}

.blueinside {
	width:100%;
	float:left;
	background:#00559a;
}

.blueinside h2 {
	width:100%;
	float:left;
	text-align:center;
	color:#fff;
	text-transform:uppercase;
	font-size:25px;
}


.dealer-info .bold {
	font-size:18px!important;
}

.hosted-content .listings-wrapper .listings-list .dealer-info {
	font-size:14px!important;
	line-height:22px!important;
}

.contact-info-section {
	font-size:14px!important;
	line-height:20px!important;
}

.make-an-offer {
	display:none;
}

.gp-logo {
    text-align: center;
}

/***** back to top button *****/

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #00559a; /* Set a background color */
    color: #fff; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding:10px 12px; /* Some padding */
    border-radius: 3px; /* Rounded corners */
	font-family:'bebas_neueregular', Helvetica, Arial, sans-serif;
	font-size:14px;
	letter-spacing:0.5px;
	letter-spacing:0.5px;border:1px solid #fff;
	box-sizing:border-box;
}

#myBtn:hover {
    background-color:#003560; /* Add a dark-grey background on hover */
	color: #fff;
}

#myBtn .fa {
	margin-left:5px;
}



/*==================================================================================
SEARCH
==================================================================================*/

.searches {
	width:280px;
	margin-right:20px;
	float:left;
	background:#f2f2f2;
	background-size:cover;
	padding:20px;
	box-sizing:border-box;
	margin-bottom:30px;
}

.searches h2 {
	text-align:center;
	color:#fff;
	font-size:30px;
	font-weight:bold;
	line-height:28px;
	width:100%;
	float:left;
	text-transform:uppercase;
	margin-bottom:20px;
	letter-spacing:0;
}

.searches h3 {
	width:116%;
	float:left;
	text-align:center;
	text-transform:uppercase;
	color:#fff;
	background:#00559a;;
	font-size:16px;
	line-height:22px;
	padding:10px 0;
	font-weight:500;
	margin-bottom:10px;
	margin-left:-8%;
}

.margtop {
	margin-top:15px;
}

.searchcolumn {
	width:100%;
	float:left;
	padding:0 .5%;
	box-sizing:border-box;
	margin-bottom:10px;
}

#firstsearch {
	padding-left:0;
}

#lastsearch {
	padding-right:0;
}

#fullone {
	width:100%!important;
	padding-left:0!important;
}

.detailed-search {
	width:100%;
	float:left;
	max-width:none;
}

.detailed-search input {
    width: 100%;
    padding: 15px 13px;
    font-size: 12px;
    background-color: #fff;
	box-sizing: border-box;
	border-radius:8px;
	border:none;
	
}
.detailed-search select {
    width: 100%;
    padding:13px;
    font-size: 12px;
    background-color: #fff;
	box-sizing: border-box;
	border-radius:8px;
	max-width:none;
}


.detailed-search input[type="submit"] {
	text-transform:uppercase;
	font-size: 18px;
	font-weight:bold;
    width: 100%;
    color: #fff;
	background:#00559a;
    display: inline-block;
	cursor: pointer;
	margin-top:0px;
	padding:10px;
	border-radius:8px;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
	box-sizing:border-box;
}

.detailed-search input[type="submit"]:hover {
	background:#003C6C!important;
	color:#fff!important;
}



.detailed-search select:focus, .detailed-search input:focus{outline-color:#fff;}

.notfull {
	width: calc(100% - 300px);
	float:right;
}


/*======================================
ABOUT SECTION
======================================*/

.aboutsection {
	background:url("../siteart/aboutbg.jpg");
	background-size:cover;
	padding:75px 0 50px;
	background-attachment:fixed;
	float:left;
	width:100%;
	z-index:0;
	margin-top:-50px;
	position:relative;
}
.oldlocation {width:33.3333%;float:left;padding-right:7px;box-sizing:border-box;}

.oldlocation div {width:100%;float:left;height:590px;background:url("../siteart/Building.jpg");background-size:cover;background-position:center;margin-bottom:20px;}

.newlocation {width:33.3333%;float:left;padding-left:7px;padding-right:7px;box-sizing:border-box;margin-bottom:20px;}

.newlocation div {width:100%;float:left;height:190px;margin-bottom:10px;}
#topimg {background:url("../siteart/new-log-1.jpg");background-size:cover;background-position:center;}
#centerimg {background:url("../siteart/new-loc-2.jpeg");background-size:cover;background-position:center;}
#bottomimg {background:url("../siteart/new-loc-3.jpeg");background-size:cover;background-position:center;}

.newlocation1 {width:33.3333%;float:left;padding-left:7px;box-sizing:border-box;}

.newlocation1 div {width:100%;float:left;height:590px;background:url("../siteart/beal-city-location.jpg");background-size:cover;background-position:center;margin-bottom:20px;}

.welcome {
	width:100%;
	max-width:500px;
	float:right;
	background:rgba(255,255,255,0.85);
	padding:30px;
	box-sizing:border-box;
}

.welcome p {
	font-size:18px;
	line-height:30px;
	margin-top:10px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.welcome h2 {
	color:#00559a;
}

/*==========================================
FOOTER
==========================================*/
.footer {width:100%; background:#00559a; display: block; float: left; color: #fff;}
.footer-inner{width: 90%; margin: 0 auto; display: flex; padding:40px 0;}
.footer-inner .foot-col{justify-content: flex-start; width: 33%; text-align: center; color: #fff;}
.foot-col p{line-height: 25px;} .foot-col a{color: #fff; text-decoration: none} .foot-col h4{margin-bottom: 5px;}
.foot-col.center{border-left: 1px solid #fff; border-right: 1px solid #fff;} .foot-col.center a{color: #fff; text-decoration: none}

.dark-blue{background: #00467e;}

.flex-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.flex-social a {transition:.3s all;}
.flex-social a:hover {
	color:#f4be17 !important;
}
.bottomfoot {
	background: #00467e;
	width:100%;
	float:left;
	border-top:1px solid #fff;
}

.bottomfoot p {
	text-transform:uppercase;
	color:#74b4e3;
	font-size:12px;
	width:50%;
	float:left;
	padding:20px 0;
}

.bottomfoot a {text-decoration: none;}
.full-border{width: 100%; border-top: 1px solid #fff;}

.marleft {margin-left:30px;}

.weekrow {width:110px;float:left;}

.smalltxt {	font-size:13px;	color:#fff;}


/*footer {width:100%; background:#00559a; padding:30px 0 ; display: block; float: left;}

.footerthird {
	width:33.33%;
	float:left;
	box-sizing:border-box;
	border-left:1px solid #fff;
}

.footerthird h2 {
	color:#fff;
	width:100%;
	float:left;
	text-transform:uppercase;
	padding:0 20px;
	box-sizing:border-box;
	border-left:4px solid #fff;
}

.footerthird h3 {
	color:#74b4e3;
	margin:15px 0;
	width:100%;
	float:left;
	padding:0 20px;
	box-sizing:border-box;
	text-transform:uppercase;
}

.footerthird p {
	color:#74b4e3;
	line-height:25px;
	width:100%;
	float:left;
	padding:0 20px;
	box-sizing:border-box;
	padding-bottom:10px;
	text-transform:uppercase;
}

.footerthird p a {
	color:#74b4e3;
	line-height:25px;
	width:100%;
	float:left;
	box-sizing:border-box;
	text-decoration:none;
	margin-top:10px;
	text-transform:uppercase;
}

.footerthird p a:hover {
	text-decoration:underline;
}

.marleft {
	margin-left:40px;
}

.weekrow {
	width:110px;
	float:left;
}

.smalltxt {
	font-size:13px;
	color:#fff;
}

.footerthird hr {
	width:100%;
	float:left;
	border-top:1px solid #fff;
	margin:0!important;
}


*/
/*================================================================
SUBPAGES
================================================================*/

.subpages {
	width:100%;
	float:left;
	background:#fff;
	padding:50px 0;
}

.subpages p {
	font-size:18px;
	line-height:30px;
	margin-top:10px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.subpages h2 {
	color:#00559a;
	font-family: 'Oswald', sans-serif;
	font-size:24px;
}

.subpages h2.make-giant {font-size:36px; text-align:center;}
.subpages h2.sm-giant {font-size:28px; text-align:center;}

.title {
	width:100%;
	float:left;
	background:url("../siteart/titlebg.png");
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	z-index:0;
	border-bottom:5px solid #00559a;
}


.title h1 {
	width:100%;
	float:left;
	padding:75px 0 50px 0;
	text-align:center;
	color:#00559a;
	font-size:50px;
	text-transform:uppercase;
}

.title p {
	padding:75px 0 50px 0;
	text-align:center;
	color:#00559a;
	font-size:50px;
	text-transform:uppercase;
	font-weight:700;
}

.fourthbrand {
	width:25%;
	float:left;
	padding:15px;
	box-sizing:border-box;
}


.halfbrand {
	width:48%;
	float:left;
	padding:15px;
	box-sizing:border-box;
	margin:1%;
	background:url("../siteart/tablebg.jpg");background-size:cover;
	background-color:black;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
	
}

.halfbrand a {text-align:center;
	color:#fff;
	text-decoration:none;padding:40px 10px;box-sizing:border-box;width:100%;float:left;}

.halfbrand h3{font-size:35px;text-transform:uppercase;}
.halfbrand h2{font-size:60px;text-transform:uppercase;color:#fff;margin:0 0 5px 0;}
.halfbrand h4{font-size:30px;text-transform:uppercase;letter-spacing:5px;}

.halfbrand:hover {transform:scale(1.05);}


.fourthbrand .overlayhover {
	width:100%;
	max-width:250px;
	display:block;
	margin:0 auto;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
}

.fourthbrand img {
	width:100%;
	max-width:250px;
	display:block;
	margin:0 auto;
}

#beal-city,#mcbain,#all,#ithaca{
scroll-margin-top: 50px;text-transform: uppercase;color: #000 !important;text-decoration: underline;
}
.job-description-list{
	list-style: inside;
	font-size: 18px;
    line-height: 30px;
    margin-top: 10px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.job-title .button-wrap {
    display: inline-flex;
    gap: 20px;
    justify-content: center !important;
    width: 100%;
}

a.location-btn {
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    color: #00559a;
    border: 1px solid #e8e8e8;
	transition: .3s all;
}

a.location-btn:hover {background: #00559a;color: #fff;}
/*FORMS===================*/

#quotes {
width:100%;
display:block;
margin:20px auto;
max-width:1000px;
	 font-size:16px;
	 color:#000;
		font-family: 'Oswald', sans-serif;

}

#quotes tr td p a {
	color:#00559a!important;
}

#quotes tbody {
	width:100%;
	float:left;
}

#quotes tr {
width:49%;
float:left;	
margin-right:1%;
}

#quotes .two {
width:49%!important;
margin-right:0!important;
margin-left:1%!important;	
}

#quotes td {
width:100%;
float:left;
	font-size:14px;
	margin-bottom:10px!important;
}

#quotes td p {
font-size:14px;	
}

.fulltd h2 {
color:#00559a;	
margin-bottom:5px;
margin-top:25px;
font-weight:700;
text-transform:uppercase;
font-family: 'Oswald', sans-serif;
}

.fulltd p {
	float: left!important;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 15px!important;
}

.fulltd2 {
width:100%!important;
float:none!important;
max-width:500px!important;
display:block!important;
margin:0 auto!important;	
}

.location-flex {
	display: flex;
	justify-content: space-between;
	align-content: center;
	width: 100%!important;
}

.location-flex input {
	width: 10%!important;
	margin: 10px 0;
}

.location-flex label {
	font-size: 15px!important;
}

#quotes input {
	padding:12px 10px;
	box-sizing:border-box;
	background:#fff;
	border:1px solid #B4B4B4;

font-weight:200;
	color:#000;
	font-size:14px;
}

#quotes select {
	padding:12px 10px;
	box-sizing:border-box;
	background:#fff;
	border:1px solid #B4B4B4;
	width:100%;
	float:left;
font-weight:200;
	color:#000;
	font-size:14px;
}

.thirdtd {
	width:33.33%!important;
	float:left;
}

#quotes textarea {
	padding:12px 10px;
	border:1px solid #b4b4b4;
		font-family: 'Oswald', sans-serif;
	font-weight:200;
	color:#000;
	font-size:14px;
	background:#fff;
	box-sizing:border-box;
}

#quotes .CaptchaMessagePanel {
color:#000;
}

#quotes .CaptchaWhatsThisPanel a {
color:#000;	
}

 
/* selects have similar styles to input & textarea fields, but with no padding. Text in a dropdown select is positioned differently */
#quotes select {
	padding:12px 10px;
	box-sizing:border-box;
	background:#fff;
	border:1px solid #B4B4B4;
font-family: 'Roboto', sans-serif;
font-weight:200;
	color:#000;
	font-size:14px;
		font-family: 'Oswald', sans-serif;
}
   
#quotes input  {
    width:100%;
		font-family: 'Oswald', sans-serif;
}
 
#quotes input.larger  {
    width:100%;
}

#quotes textarea {
    width:100%;
    height:85px;
		font-family: 'Oswald', sans-serif;
}


#quotes input.checkbox {
    padding:0; 
    border:0;
    margin:0 5px 0 0;
    width:13px;
    height:13px;
    display:inline;
    background-color:#fff;
 }

#quotes input.radio {
    padding:0; 
    border:0;
    margin:0 5px 0 0;
    width:15px;
    height:15px;
    display:inline;
 }


#quotes input:focus,
#quotes textarea:focus,
#quotes select:focus {
	 

}
#quotes input.radio:focus,
#quotes input.checkbox:focus {
	background:none; 
	border:0;
	outline-style:none;
}
 

#quotes input.button,
#quotes input.button:focus {
    width:220px; 
    margin:0;
    padding:20px 5px;
    background:#00559a;
	font-weight:bold;
	font-size:18px;
	text-transform:uppercase;
	border-radius:0px;
	border-bottom:none!important;
	line-height:14px;
	text-align:center;
	border:0!important;
	font-family: 'Oswald', sans-serif;
    color:#fff;
	margin-top:10px;
}
#quotes input.button:hover {
	background:#00437A;cursor: pointer;
	
}

#quotes label.basic {
    color:#212121;
    font-size:13px;
    text-align:left;
}
#quotes label.checkbox {
  /*  color:#212121;*/
    font-size:13px;
    text-align:left;
    display:inline;
    padding:0;
}
 
#quotes .fulltd {
width:100%!important;
margin-right:0;	
}

/*=========================
finance
=========================*/

.financefifth {
    width: 33%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.financefifth img {
	width:100%;
	max-width: 260px;
	margin:0 auto;
	display:block;
}

ol.number-list {
	    list-style: decimal !important;
    padding-inline-start: 40px !important;
	margin-top: 20px;
}

ol.number-list li::marker {
    font-family: 'Oswald', sans-serif !important;
    color: #00559a !important;
    font-weight: 900 !important;
}

.number-list li {
    margin-bottom: 20px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size: 18px;
}
/*========================
RENTALS
========================*/

.RentalTable {
	width:100%;
	float:left;
	background:url("../siteart/tablebg.jpg");
	background-color:black;
	background-size:cover;
	box-sizing:border-box;
	display:block;
	    margin-bottom: 10px;
}

.RentalTable tbody {
	width:100%;
	float:left;
	box-sizing:border-box;
}

.RentalTable  tr {
	width:100%;
	float:left;
	box-sizing:border-box;
}

.RentalTable  tr td {
	width:20%;
	float:left;
	color:#fff;
	font-size:14px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	padding:5px;
	box-sizing:border-box;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	min-height: 40px;
    display: flex;
    align-items: center;
	
}

.bigtd {
	width:40%!important;
	font-family: 'Oswald', sans-serif;
	color:#fff;
}

.toptitle td {
	font-size:16px!important; font-weight:bold!important;
	color:#fff;
	background:#00437A;
	font-family: 'Oswald', sans-serif!important;
}

.fullsrows {
	width:100%!important;
	float:left;
}

.biggertd {
	width:60%!important;
}

.biggertd a {
	color:#fff;
	text-decoration:underline;
}

.biggertd a:hover {
	text-decoration:none;
}

.cat-rent td {
    background: #fff !important;
    color: #00559a !important;
    font-size: 22px !important;
    padding: 10px 0 !important;
}

.PromoTable {
	width:100%;
	float:left;
	background:url("../siteart/tablebg.jpg");
	background-size:cover;
	box-sizing:border-box;
	display:block;
}

.PromoTable tbody {
	width:100%;
	float:left;
	box-sizing:border-box;
}

.PromoTable  tr {
	width:100%;
	float:left;
	box-sizing:border-box;
}

.PromoTable  tr td {
	width:12.5%;
	float:left;
	color:#fff;
	font-size:14px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	padding:10px 5px;
	box-sizing:border-box;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	box-sizing:border-box;
}

.PromoTable  .bigtd {
	width:25%!important;
	
	color:#fff;


}

.meyerhalf {
	width:50%;
	float:left;
	padding:10px;
	box-sizing:border-box;
}

.meyerhalf img {
	width:100%;
	float:left;
}
/*=================================
PRECISION FARMING
================================*/

.precisionhalf {
	width:50%;
	float:left;
	padding:10px;
	box-sizing:border-box;
	margin-bottom:10px;
}

.precisionhalf img {
	width:100%;
	max-width:300px;
	display:block;
	margin:0 auto;
}

.precisionhalf p {
	width:100%;
	text-align:center;
	font-size:16px;
}

.precisionhalf a {
	text-decoration:none;
	text-align:center;
	font-size:20px;
	font-weight:bold;
	font-family: 'Oswald', sans-serif;
	color:#00559a;
}

.precisionhalf a:hover {
	text-decoration:underline;
}

.precisionflex {
	display: flex;
	text-align: center;
}

.precisionflex-item {
	padding: 0 20px;
}

.subbutton {
	width:100%;
	max-width:400px;
	margin:0 auto;
	padding:20px 10px;
	box-sizing:border-box;
	color:#fff;
	text-transform:uppercase;
	font-weight:bold;
	font-size:20px;
	text-align:center;
	background:#00559a;
	display:block;
	text-decoration:none;
	margin-top:20px;
	font-family: 'Oswald', sans-serif!important;
}

.subbutton:hover {
	background:#000;
	color: #fff !important;
}

hr {
	width:100%;
	float:left;
	border-top:1px solid #333333;
	margin:30px 0;
}

.prec-box {display:flex; flex-direction:row; flex-wrap:wrap; align-content:stretch;}

/*--parts --*/
.parts{display: flex; margin: 10px auto; padding: 20px 0;  align-items: center;}


.partsthird {justify-content: flex-start; font-size:35px !important; line-height:50px; padding:20px 0;width:33.3%; float:left; margin-bottom:40px; text-align: center;}

.plmhalf {width: 50%;
	justify-content: flex-start;
	background:#fff;
	border:1px solid #BFBFBF;
	padding:20px 0;
	text-align:center;
	font-size:40px!important;
	line-height:50px;
}
.plmhalf .inner{width: 90%; margin:  0 auto;}
.plmhalf:first-child{margin-right: 10px;}

a.plmhalf {text-decoration:none;}
a.plmhalf:hover {border-color:#00559a;}

.plmhalf img {
	width:100%;
	max-width:200px;
	display:block;
	margin:0 auto;
	
}

.plmhalf h2 {
	width:100%;
	display:block;
	margin:10px 0;
	text-align:center;
	font-size:20px;
	color:#00559a;
	font-weight:bold;
}

.plmhalf p {
	color:#000;
	font-size:16px;
	display:block;
	line-height:24px;
	text-align:center;
}

.two-thirds {width:66%; float:left; margin-right:2%;}
.one-third {width:32%; float:left;}

.three-quarter {width:73%; float:left; margin-right:2%;}
.one-quarter {width:25%; float:left;}

p.lg-text {font-size:22px;}

.contact-card {width:100%; float:left; border:1px #999 solid; padding:20px; margin-bottom:15px; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box;}
.contact-card img {width:30%; float:left; margin-right:5%;}
.info-box {width:65%; float:left;}
.info-box a {color:#000; text-decoration:none;}
.info-box a:hover {color:#00559a;}


/*--- employment ----*/

.career-wrap{display: flex; align-items: center;}
.career-btn{flex: 1; padding: 20px 0; margin: 5px; text-align: center; color: #fff; text-decoration: none;
	text-transform:uppercase;
	font-weight:bold;
	font-size:18px;
	background:#00559a;
	font-family: 'Oswald', sans-serif!important;}
.career-btn:hover{background: #000}
.video-wrap,.vid {position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;}
.video-wrap iframe, .video-wrap object, .video-wrap embed,.vid iframe, .vid object, .vid embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.button-wrap {
    display: flex;
	gap: 10x;
    margin-bottom: 50px;
}

.vid-grid {    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    grid-auto-rows: minmax(100px, auto);
    text-align: center;}

.button-wrap p {flex: 1;}


/*--- Rodent Shield ----*/

.rodent-shield-section {
	background-color: rgba(191, 191, 191, 0.15);
	text-align: center;
	padding: 20px;
}
.rodent-shield-section-half-wrapper {
	display: flex;
}
.rodent-shield-section-half {
	display: flex;
	justify-content: center;
	flex-direction: column;
	background-color: rgba(191, 191, 191, 0.15);
	padding: 20px;
	width: 50%;
}
.rodent-shield-section-half img {
	width: 100%;
}
.rodent-shield-section-thirds-wrapper {
	display: flex;
}
.rodent-shield-section-thirds {
	display: flex;
	justify-content: center;
	flex-direction: column;
	background-color: rgba(191, 191, 191, 0.15);
	padding: 20px;
	width: 33.33%;
}
.rodent-shield-vid {
	width: 35%;
}


/*--- jobs ----*/

.job-post {
    margin: 40px auto;
    max-width: 750px;
}

.job-square-container {
    height: auto;
    margin: 0px auto 20px;
    position: relative;
    text-align: left;
    width: 100%;
}

.job-square-link {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.job-square-link:hover .job-square-box, .job-square-link:focus .job-square-box {
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 25px;
}

.job-square {
    border: 1px solid rgb(215, 215, 215);
    box-shadow: none;
    padding: 20px;
    transition: box-shadow 0.2s ease 0s;
}

.job-square .postedDate {
    color: rgb(178, 178, 178);
    font-size: 0.9em;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: left;
    text-transform: none;
}



.job-square h2 {
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 0px;
    max-width: none;
    text-transform: unset !important;
}



.job-square h3 {
    font-size: 1em;
    letter-spacing: 1px;
    margin: 5px 0px;
    max-width: none;
    text-transform: capitalize;
}

h3 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 1.05em;
    margin-top: 10px;
}

.job-square h3 .location-icon {
    background-color: rgb(239, 239, 239);
    display: inline-block;
    font-size: 0.8em;
    margin: 0px 6px 6px 0px;
    padding: 2px 6px;
}

.job-square h3 .title-jobs {
    font-weight: bolder;
}

.job-square .button {
    margin: 20px 0px 0px;
    max-width: 200px;
}

.button-apply {
    background-color: rgb(255, 221, 0);
    border: 0px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    display: block;
    font-family: "JD Sans", sans-serif;
    font-size: 0.9em;
    font-weight: bold;
    margin: auto;
    padding: 15px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.2s ease 0s;
    width: 100%;
}

.center {
	text-align: center;
}
.button-yellow {
	 background-color: rgb(255, 221, 0);
    border: 0px;
    color: #00467e;
    cursor: pointer;
    display: block;
    font-family: "JD Sans", sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin: 0 auto;
    padding: 15px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.2s ease 0s;
    width: 230px;
	text-decoration: none;
}

.button-toys a {
	
	text-decoration: none;
}

/*service table========================================*/

.servicetable {
	width:100%;
	float:left;
	box-sizing:border-box;
	display:block;
	border:1px solid #4D4D4D;
	margin-bottom:30px;
}

.servicetable tbody {
	width:100%;
	float:left;
	box-sizing:border-box;
	display:block;
}

.servicetable tr {
	width:100%;
	float:left;
	border-bottom:1px solid #4D4D4D;
	box-sizing:border-box;
	display:block;
}

.servicetable td {
	width:33.33%;
	float:left;
	box-sizing:border-box;
	display:block;
	color:#000;
	font-size:14px;
	padding:10px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.servtitle {
	width:100%!important;
	background:#00559a;
	color:#fff!important;
	text-align:center;
	font-size:22px!important;
	line-height:30px;
	font-weight:bold;
	padding:15px;
	box-sizing:border-box;
	text-transform:uppercase;
	font-family: 'Oswald', sans-serif!important;
}

.fulltd {
	width:100%!important;
	text-align:center;
}

.mission {
	width:100%;
	float:left;
	background:url("../siteart/tablebg.jpg");
	background-color:black;
	background-size:cover;
	box-sizing:border-box;
	padding:30px 50px;
}

.mission h2 {
	color:#fff!important;
	text-transform:uppercase;
	text-align:center;
	font-size:55px;
}

.mission p {
	color:#fff;
	text-align:center;
	font-size:25px;
	line-height:32px;
}

.history {
	width:100%;
	float:left;
	border-bottom:1px solid #333333;
	padding:20px 0;
	margin:20px 0;
}

.history img {
	width:100%;
	max-width:300px;
	float:left;
	margin-right:20px;
}

.hisotry p {
	 width: calc(100% - 320px);
  width: -moz-calc(100% - 320px);
  width: -webkit-calc(100% - 320px);
}


.mapinfo {
	width:400px;
	float:left;
	padding-right:15px;
	box-sizing:border-box;
}

.map {
	 width: calc(100% - 400px);
  
	float:left;
	height:350px;
	margin-bottom:10px;
}

.infobreaker {width:100%;float:left;margin:30px 0;border-top:1px solid #aaa;}

.storehours {width:100%;flaot:left;}

.storehours p {text-align:center;}
.storehours p strong {text-transform:uppercase;}



.servhalf {width:50%;float:left;font-weight:bold;margin-bottom:15px;}
.servthird {width:33%;float:left;font-weight:bold;margin-bottom:15px;}
/*==================================
OUR STAFF
==================================*/

.job-listing {width:100%; display:block; border:1px solid #9C9C9C; border-radius:5px; padding:7px 0; float:left; margin-bottom:20px; background:url("../siteart/tablebg.jpg");
	background-size:cover;}
.job-details {width:94%; float:left; margin-right:0%; line-height:36px;}
.job-title {width:100%; float:left; margin-right:0%;}
.job-loc {width:35%; float:left;}
.toggle-job {width:3%; float:left; margin-top:4px; margin-right:2%; background-position:center; background-repeat:no-repeat;}
.toggle-job.plus {font-size:27px; padding-left:10px;box-sizing:border-box; color:#fff;}
.toggle-job.minus {font-size:27px; padding-left:10px;box-sizing:border-box; color:#fff;}

.toggle-job.plus:hover {cursor:pointer; color:#fff;}
.toggle-jobtwo {width:3%; float:left; height:36px; margin-right:2%; background-position:center; background-repeat:no-repeat;}
.toggle-jobtwo.plus {font-size:27px; padding-left:10px; box-sizing:border-box;color:#fff;}
.toggle-jobtwo.minus {font-size:27px; padding-left:10px;box-sizing:border-box;color:#fff;}

.toggle-jobtwo.plus:hover { cursor:pointer;}


.job-page h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0 10px;
}

.job-page p strong,.job-page strong {color: #00559a !important;}
.job-description hr {
	margin:7px 0 10px 0;
	border-top:1px solid #fff;
}

.job-title h4 {	
	font-size:27px;
	line-height:30px;
	font-weight:600;
	color:#fff;
	text-transform:uppercase;
	font-family: 'Oswald', sans-serif!important;
}

.job-btns {width:39%; float:left;}
.apply {width:49%; float:left; text-align:right; background:#fff; font-family: 'Roboto Condensed', sans-serif; color:#ff3333!important; text-align:center;font-size:18px;  -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;}
.send-resume {width:49%; float:left; text-align:right; margin-right:2%; background:#fff; font-family: 'Roboto Condensed', sans-serif; color:#ff3333!important; text-align:center;font-size:18px;  -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; }
.job-description {padding:0 0 10px 0; width:100%; float:left;}


.staff {
	width:22%;
	box-sizing:border-box;
	padding:1.5%;
	margin:1%;
	text-align:center;	
	border:1px solid #9C9C9C;
	border-radius:7px;
	background:#fff;
	display: inline-block;
}

.staff img {
	width:100%;
	float:left;
	margin-bottom:10px;	
}

.staff h3 {
	font-weight:700;
	font-size:24px!important;
	text-align:center;
	color:#00559a;
}

.staff h3 span {
    font-size: 18px !important;
    font-weight: 500;
    color:#565656;
}

.staff p {
	text-align:center;
	color:#565656;
	font-size:16px;
		
}

.staff p a {
	color:#565656;
}

.staff p a:hover {
	text-decoration:none;
}


.newshalf {
	width:48%;
	float:left;
	margin:1%;
	padding:20px;
	box-sizing:border-box;
	border:1px solid #BFBFBF;
}

.newshalf img {
	width:100%;
	float:left;
}

.newslinks {
	width:50%;
	padding:0 20px;
	box-sizing:border-box;
	float:left;
	margin-top:20px;
}

.newslinks h2 {
	margin-bottom:20px;
	text-align:center;
}

.newslinks a {
	width:100%;
	float:left;
	background:#D4D4D4;
	padding:10px;
	box-sizing:border-box;
	color:#00559a;
	text-decoration:none;
	font-size:18px;
	margin-bottom:10px;
}

.newslinks a:hover {
	color:#fff;
	background:#00559a;
}

.headermobile {
	display:none;
}

.kuhnpromo {
	width:100%;
	float:left;
	border-bottom:1px solid #333333;
	padding-bottom:20px;
	margin-bottom:20px;
}

.kuhnpromo img {
	width:400px;
	float:left;
	margin-right:20px;
}

.kuhnpromo .rightinfo {
	 width: calc(100% - 420px);
  width: -moz-calc(100% - 420px);
  width: -webkit-calc(100% - 420px);
	float:left;
}




.nhpromo {
	width:100%;
	float:left;
	border-bottom:1px solid #333333;
	padding-bottom:20px;
	margin-bottom:20px;
}

.nhpromo img {
	width:500px;
	float:left;
	margin-right:20px;
}

.nhpromo .rightinfo {
	 width: calc(100% - 520px);
  width: -moz-calc(100% - 520px);
  width: -webkit-calc(100% - 520px);
	float:left;
}

.nhpromo .rightinfo p {
	font-size:14px;
	line-height:18px;
}


/*collapsible*/

.collapsible {
  background-color: #eee;
  color: #000;
font-weight:bold;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
	margin-top:15px;
	text-transform:uppercase;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.smalltext {
	font-size:10px!important;
	line-height:12px!important;
	margin-bottom:20px;
}





.job-listing2 {width:100%; display:block; border:1px solid #9C9C9C; float:left; border-left:0;border-right:0; margin:5px 0 10px;padding:10px 0;
	background-size:cover;}
.job-listing2 .job-details { width: calc(100% - 50px); float:right; margin-right:0%; line-height:36px;}
.job-title {width:100%; float:left; margin-right:0%;}
.job-loc {width:35%; float:left;}
.toggle-job {width:3%; float:left; margin-top:4px; margin-right:2%; background-position:center; background-repeat:no-repeat;}
.job-listing2 .toggle-job.plus {width:50px;font-size:27px; padding-left:10px; margin:0;box-sizing:border-box; color:#000;}
.toggle-job.minus {font-size:27px; padding-left:10px;box-sizing:border-box; color:#fff;}

.job-listing2 .toggle-job.plus:hover {cursor:pointer; color:#00559a;}
.toggle-jobtwo {width:3%; float:left; height:36px; margin-right:2%; background-position:center; background-repeat:no-repeat;}
.toggle-jobtwo.plus {font-size:27px; padding-left:10px; box-sizing:border-box;color:#fff;}
.toggle-jobtwo.minus {font-size:27px; padding-left:10px;box-sizing:border-box;color:#fff;}

.toggle-jobtwo.plus:hover { cursor:pointer;}

.job-listing2  .job-description hr {
	margin:7px 0 10px 0;
	border-top:1px solid #9c9c9c;
}

.job-listing2 .job-title h4 {	
	font-size:18px;
	line-height:30px;
	font-weight:500;
	color:#000;
	text-transform:uppercase;
	font-family: 'Oswald', sans-serif!important;
}

.requestbutton {
	width:100%;
	float:left;
	margin-bottom:20px;
}

.requestbutton a {
	float:right;
	background:#00559a;
	color:#fff;
	font-size:18px;
	padding:15px 35px;
	text-transform:uppercase;
	font-weight:bold;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #00559a;
}

.requestbutton a:hover {
	background:#fff;
	color:#00559a
}




.rentalrequestbutton {
	width:100%;
	float:left;
	margin-bottom:20px;
}

.rentalrequestbutton a {
	display:block;
	margin:0 auto;
	width:100%;
	max-width:400px;
	background:#00559a;
	color:#fff;
	font-size:18px;
	padding:15px;
	text-transform:uppercase;
	font-weight:bold;
	text-decoration:none;

	border-radius:5px;
	border:1px solid #00559a;
	box-sizing:border-box;
	text-align:center;
}

.rentalrequestbutton a:hover {
	background:#fff;
	color:#00559a;
}

.rightside h2 {
	margin-bottom:15px;
}

.rightside {
	width:100%;
	max-width:500px;
	float:right;
	padding-left:20px;
	box-sizing:border-box;
	margin-top:20px;
}

.rightside img {
	width:100%;
	float:left;
}

.leftside {
	width:calc(100% - 500px);
	float:left;
	margin-top:20px;
}

.leftside-photos {width:100%; max-width:450px; float:left; padding: 0px 20px 30px 0px;}

.p-img-wrapper {
	display: flex;
	justify-content: flex-start;
	
}

.cd-tabs{position:relative;width:100%}
.cd-tabs:after{content:"";display:table;clear:both}
.cd-tabs::after{position:absolute;top:0;right:0;z-index:1;pointer-events:none;background:-webkit-linear-gradient(right,#f8f7ee,rgba(248,247,238,0));background:linear-gradient(to left,#f8f7ee,rgba(248,247,238,0));visibility:visible;opacity:1;-webkit-transition:opacity .3s 0s,visibility 0 0;-moz-transition:opacity .3s 0s,visibility 0 0;transition:opacity .3s 0s,visibility 0 0}
.no-cssgradients .cd-tabs::after{display:none}
.cd-tabs.is-ended::after{visibility:hidden;opacity:0;-webkit-transition:opacity .3s 0s,visibility 0 .3s;-moz-transition:opacity .3s 0s,visibility 0 .3s;transition:opacity .3s 0s,visibility 0 .3s}
.cd-tabs-navigation{width:100%}
.cd-tabs-navigation:after{content:"";display:table;clear:both}
.cd-tabs-navigation li{float:left;list-style-type:none!important}
.cd-tabs-navigation a{position:relative;display:block;text-align:center;font-size:20px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:700;color:#00559a;padding:10px!important;text-decoration:none;background-color:none; font-family: 'Roboto Condensed', sans-serif; text-transform:uppercase;}
.no-touch .cd-tabs-navigation a:hover{color:#fff;background-color:#ACACAC;}
.cd-tabs-navigation a.selected{background-color:#00559a!important;color:#fff}
.cd-tabs-navigation a::before{position:absolute;top:12px;left:50%;margin-left:-10px;display:inline-block;height:20px;width:20px;background-image:url(../img/vicons.svg);background-repeat:no-repeat}
.cd-tabs-navigation a[data-content='equipment']::before{background-position:0 0}
.cd-tabs-navigation a[data-content='parts']::before{background-position:-20px 0}
.cd-tabs-navigation a[data-content='equipment'].selected::before{background-position:0 -20px}
.cd-tabs-navigation a[data-content='parts'].selected::before{background-position:-20px -20px}
.cd-tabs-content{background:none;border-top:3px solid #00559a; display:inline-block;width:100%;padding:20px;height:auto!important;box-sizing:border-box}
.cd-tabs-content li{display:none}
.cd-tabs-content li.selected{display:block;-webkit-animation:cd-fade-in .5s;-moz-animation:cd-fade-in .5s;animation:cd-fade-in .5s}
.cd-tabs-content li p{font-size:14px;font-size:.875rem;line-height:1.6;color:#8493bf;margin-bottom:2em}
@-webkit-keyframes cd-fade-in{0%{opacity:0}100%{opacity:1}}
@-moz-keyframes cd-fade-in{0%{opacity:0}100%{opacity:1}}
@keyframes cd-fade-in{0%{opacity:0}100%{opacity:1}}

.vid {	box-sizing:border-box;
}

.galhalf {
	width:48%;
	float:left;
	margin:1%;
}

#photos {
	background:url("../siteart/Gallery/3.jpg");
	background-size:cover;
}

#videos {
	background:url("../siteart/Gallery/buttonbg.jpg");
	background-size:cover;
}
.galhalf h2 {
	width:100%;
	float:left;
	padding:25px 0;
	text-align:center;
	margin:150px 0;

	text-transform:uppercase;
	font-size:35px;
	border-top:5px solid rgba(255,255,255,.50);
	background:rgba(255,255,255,.75);
	border-bottom:5px solid rgba(255,255,255,.50);
	-moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; 
}

.galhalf:hover {
	box-shadow: 0 0 10px #00559a;
}



/*GALLERY*/
.gallery-wrap {
	padding:20px 0;
}

.gallery-images {
	width:100%;
	display:block;
	text-align:center;
	margin: 0 auto;
	position:relative;
    float: none;
    align-content: center;
	float:left;
}

.gallery-box img:hover{
	opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
	
}
.gallery-box {
	text-align:center;
    box-sizing: border-box;
    display: inline-block;
	    display: inline;
    vertical-align: top;
    margin: 0 auto;
	padding:2.5px;
	height:50px;
	width:auto;
}

.gallery-box img {
	border:1px solid #000;
	height:150px;
	width:auto;
}

.gallery-box a:hover {
	color:#fab337; /*yellow*/
	text-decoration:none;
	width:100%;
	height:120px;
}


.farmfourth {
	width:25%;
	float:left;
	padding:10px;
	box-sizing:border-box;
}

.farmfourth img {
	width:100%;
	max-width:150px;
	margin:0 auto;
	display:block;
}

.farmfourth p {
	text-align:center;
	font-size:14px;
	line-height:18px;
}

.farmfifth {
	width:25%;
	float:left;
	padding:10px;
	box-sizing:border-box;
}

.farmfifth img {
	width:100%;
	max-width:150px;
	margin:0 auto;
	display:block;
}

.farmfifth p {
	text-align:center;
	font-size:14px;
	line-height:18px;
}

.imghalf {
	width:50%;
	float:left;
	padding:20px;
	box-sizing:border-box;
}

.imghalf img {
	width:100%;
	max-width:500px;
	margin:0 auto;
	display:block;
}

.pdfthird {
	width:33.33%;
	float:left;
	padding:10px;
	box-sizing:border-box;
}

.pdfthird a {
	width:100%;
	max-width:400px;
	margin:0 auto;
	padding:20px 10px;
	box-sizing:border-box;
	color:#fff;
	text-transform:uppercase;
	font-weight:bold;
	font-size:20px;
	text-align:center;
	background:#00559a;
	display:block;
	text-decoration:none;
	margin-top:20px;
	font-family: 'Oswald', sans-serif!important;
}

.pdfthird a:hover {
	background:#000;
}

.privacy-policy {font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"; font-size:18px; line-height:30px; margin-top:10px;}
.terms-conditions {color:#000;}

/**********************************************************************************************************************************************************************************************
***********************************************************************************************RESPONSIVE**************************************************************************************
***********************************************************************************************************************************************************************************************/
@media screen and (max-width:1200px) {
	.four-box .subbutton {font-size: 16px !important;}

}
@media screen and (max-width:1160px) {
.newsletter p {
    font-size: 16px;
	margin: 10px 0;
}	
}

@media screen and (max-width:1070px) {
	
}
@media screen and (max-width:1024px) {
    .contact-card {padding:15px;}
    .contact-card img {width:100%; margin:0 0 10px 0;}
    .info-box {width:100%;}
}

@media screen and (max-width: 980px) { 
	.yellow-bar {
		float: none;
		margin-bottom: 0;
		background: #ffc300;
	}
	.precisionflex.four-box {display: flex !important;flex-wrap:wrap;}
	.four-box .subbutton {flex-basis: 45% !important;max-width: 100% !important;margin: 0 !important;flex-grow: 1 !important;} 
	#scroll-text {
		animation: none;
		transform: none;
		text-align: center;
	}
	.nav-wrap {
		width: 100%;
	}
	
    .popup {width:90%; top:50px;}
	
	header {padding-bottom: 10px; margin-bottom: -20px;}
    
	.headermobile {
		display:block;
	}
	
	.headermobile .toprow {
    display: grid;
    grid-template-columns: repeat(2, 0fr);
}
	
	.logo {padding:10px 0;}

	.toprow {
		width:100%;
		float:left;
	}
	
	.boxes {
		width:100%;
		float:left;
		font-size: 20px;
		box-sizing:border-box;
		padding:15px 10px;
		border-left:1px solid #d9d9d9;
	}
	.logo {
    display: flex;
    justify-content: space-between;
		width: 100% !important;}
	
	
	.boxes .fa {
		text-align:center;
		width:100%;
		float:left;
		font-size:20px;
		color:#00559a
	}
	
	/*.address {
		display:none;
	}*/
	
	.phones {
		display:none;
	}
	.top-half {
    display: block;
}
	
	.newsletter {
		display:none;
	}
	
	.logo {
		 width: calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: -webkit-calc(100% - 100px);
		border-right:none;
		height:auto;
	}
	
	.logo img {
    max-width: 250px;
}
	.slide-contain {
		display:none;
	}
	.schedule-btn {
    display: inline-block;
	}
	.cta {
		border-top:none;
	}
	
	
	.fourth h2 {
		font-size:18px;
	}
	
	.staff {
		width:45%;
	}
	
	.marleft {
		margin-left:0;
		width:100%;
		 width: calc(100% - 120px);
		  
			float:left;
	}
	
	.two-thirds {width:60%; margin-right:2%;}
    .one-third {width:38%;}

	
	.call-us-mobile {display:flex;justify-content: space-between;gap:2px;}
	.call-us-mobile a{flex: 1;
    text-align: center;
    padding: 20px 0;
    background: #eaeaea;}
	.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
		width:95%;
		margin: 0 auto;
}
	.yellow-icon{color:#ffc300 !important;}
	
	.top-half{flex:1;}
	
	header .wrap{width:100%;}
	.navigation-wrap{width:100% !important;}
	
	.specials-flex-row {flex-wrap: wrap;}
	.specials-flex-column {display: flex; width: 100%; flex-direction: column;}
}

@media screen and (max-width: 940px) {
	
	.footerthird {
		width:50%;
	}
	
	#foothours {
		width:100%!important;
		border-top:1px solid #fff;
		padding-top:10px;
		height:auto!important;
	}
	
	.mapinfo {
		width:100%;
	}
	
	.mapinfo p {
		text-align:center;
	}
	
	.map {
		width:100%;
		margin-top:30px;
		height:200px;
	}
	
	.newshalf {
		width:100%;
		margin:10px 0;
	}
	
	.toggle-job.plus {
		width:50px;
		margin-right:0;
	}
	
	.toggle-jobtwo.plus {
		width:50px;
		margin-right:0;
	
	}
	
	.job-details {
		 width: calc(100% - 50px);
  width: -moz-calc(100% - 50px);
  width: -webkit-calc(100% - 50px);
	}
	

    
	.fourthbrand {
		width:33.33%;
		padding:10px;
	}
	
	.financefifth {
		width:33.33%;
	}
	
	
	.notfull {
		width:100%;
		margin-top:20px;
	}
	
	.searches {
	
	width:100%;
	margin-right:0;
	}
	
	.searches h3 {
		width:100%;
		margin-left:0;
	}
	
	.farmfourth {
		width:50%;
	}
	.farmfifth {
		width:50%;
	}
	.halfbrand {width:98%;margin:10px 1%;}
	.halfbrand h2 {font-size:50px;}
	
}

@media screen and (max-width: 880px) { 
	.button-wrap {flex-wrap:wrap;}
	.button-wrap p {flex-basis:100%;}
	.precisionflex {display: block;}
}

@media screen and (max-width: 850px) { 
	.RentalTable tr {
		margin-bottom:10px;
		background:url("../siteart/tablebg.jpg");
		
	}
	
	.RentalTable {
		background:#fff;
	}
	
	.RentalTable tr td {
		width:50%;
	}
	.bigtd {
		width:100%!important;
	}
	
	
	.kuhnpromo img {
		width:100%;
		margin-tight:0;
		margin-bottom:20px;
	}
	
	.kuhnpromo .rightinfo {
		width:100%;
	}
	
	
	.nhpromo img {
		width:100%;
		margin-tight:0;
		margin-bottom:20px;
	}
	
	.nhpromo .rightinfo {
		width:100%;
	}

	
	
	.PromoTable tr {
		margin-bottom:10px;
		background:url("../siteart/tablebg.jpg");
		
	}
	
	.PromoTable {
		background:#fff;
	}
	
	.PromoTable tr td {
		width:50%;
	}
	
	.PromoTable .bigtd {
		width:100%!important;
	}
	
	.vid-grid {grid-template-columns: repeat(1, 1fr);}
	
	.p-img-wrapper {
		flex-wrap: wrap;
	}
	.rodent-shield-section-half-wrapper {
		flex-direction: column;
		align-items: center;
	}
	.rodent-shield-section-half {
		width: 100%;
	}
	.rodent-shield-section-thirds-wrapper {
		flex-direction: column;
		align-items: center;
	}
	.rodent-shield-section-thirds {
		width: 100%;
	}
	.rodent-shield-vid {
		width: 70%;
	}
}

@media screen and (max-width: 800px) {
	.oldlocation {
    width: 100%;
		padding-right: 0;
	}
	
	.newlocation {
		padding-left: 0;
		width: 50%;
	}
	
	.newlocation1 {
		padding-right: 0;
		width: 50%;
	}
}

@media screen and (max-width: 750px) { 
	.footer-inner .foot-col{padding: 0 20px;}
	
	.vid {
		width:100%;
	}
	
	.rightside {
		width:100%;
		float:left;
		padding-left:0;
		max-width:100%;
	}
	
	.leftside {
		width:100%;
		float:left;
	}
	
	.rightside img {
		float:none;
		display:block;
		margin:0 auto;
		width:100%;
		max-width:500px;
	}
	
	.mobilefull {
		width:100%!important;
	}
    
    .two-thirds {width:100%; margin-right:0;}
    .one-third {width:70%;}

    .three-quarter {width:100%; margin-right:0;}
    .one-quarter {width:70%;}

    p.lg-text {font-size:20px;}
    
    .contact-card {padding:15px; margin-bottom:15px;}
    .contact-card img {width:35%; margin:0 5% 0 0;}
    .info-box {width:60%;}
}

@media screen and (max-width: 620px) { 
	.parts{display: block; margin: 10px auto;}
	.plmhalf {width:100%;margin: 10px auto; justify-content: flex-end}
	.plmhalf:first-child {margin-right: 0;}
	.partsthird {width:100%; font-size: 20px !important; line-height: 25px !important; margin: 10px auto; justify-content: flex-end}
	.halfbrand h2 {font-size:40px;}
	.logo{flex-wrap:wrap;gap:20px;justify-content: flex-start;}
	.logo a{flex-basis:100%;}
	.schedule-btn{display:block;flex:1;text-align: left;}
}


@media screen and (max-width: 600px) { 
.fourth {
		width:50%;
	}
	
	.brandthird {
		width:50%;
	}
	
	.brandoverlay {
		padding:50px 0 100px;
	}
	
	#quotes tr {
		width:100%;
		margin-right:0;
	}
	
	#quotes .two {
		width:100%!important;
		margin-left:0!important;
	}
	
	.thirdtd {
		width:100%!important;
	}
	
	.staff {width:98%;}
	.precisionhalf {width:100%;}
	
	.fourthbrand {
		width:50%;
		padding:10px;
	}
	
	.financefifth {
		width:50%;
	}
	
	.contactfloater  { display:none;}
	
	.farmfourth {width:100%;	}
	.farmfifth {width:100%;	}
	.imghalf {
		width:100%;
		padding:20px 0;
	}
	
	.pdfthird {
		width:100%;
		padding:10px;
	}
	
	.servhalf {width:100%;margin-bottom:0px;margin-top:0!important}
	.servthird {width:100%;margin-bottom:0px;margin-top:0!important}
	.plmhalf p {width:100%;float:left;text-align:center;}
	.call-us-mobile a{font-size: 15px;}
}


@media screen and (max-width: 530px) { 
	.popup .close { top: -50px;}
	.call-us-mobile .yellow-icon {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}
	.four-box .subbutton {flex-basis: 100% !important;}
	.call-us-mobile a{flex-basis:100%;padding: 10px 5px;}
	.subpages {float: none;padding: 50px 0 !important;display: inline-block;}
	.wrap {width: 90% !important;}
	header .wrap,.navigation-wrap{width:100% !important;}
	.wrap.nav-wrap{width:100% !important;}
	.footer-inner{display: block}
	.footer-inner .foot-col{justify-content: flex-end; padding: 15px 0; width: 100%; text-align: left}
	.foot-col.center{border: none;}
	
	.bottomfoot p {
		width:90%; margin: 0 auto; text-align:left!important;
		padding:15px 0;
	}
	
	
	.marleft {
		margin-left:0;
		width:100%;
		 width: calc(100% - 110px);
		 
			float:left;
	}
	
	.brands {background-attachment:local;}
	
	.aboutsection {	background-attachment:local;}
	
    .one-third, .one-quarter {width:100%;}
    p.lg-text {font-size:18px;}
	
	
/*--- employment ----*/

.career-wrap{display: block; align-items: center;}
.career-btn{flex: 1; padding: 20px 0; margin: 10px auto; font-size:18px; display: block}
	
	.job-title .button-wrap {
       flex-wrap: wrap;
    gap: 15px;
    width: 90%;
    margin: 0 auto 20px !important;
    text-align: center;
    display: flex !important;
}
	.job-title .button-wrap a {flex-basis: 100%;}

}
@media screen and (max-width: 450px) {
	.newlocation{
		width: 100%;
		padding: 0;
	}
	
	.newlocation1 {
		width: 100%;
		padding: 0 !important;
	}
	
	.call-us-mobile{flex-wrap:wrap;}
	.call-us-mobile a{padding: 15px 0;}
	.call-us-mobile .yellow-icon {
    display: inline-block;
    margin-bottom: 0;
    font-size: 15px;	}
	.mobile-head{align-items: stretch;}
	button.grey-btn{width:100% !important;}
	
	.title h1 {font-size: 36px !important}
	.application .fulltd span {
    flex-wrap: wrap;gap: 10px !important ;
}
	.application .fulltd span input[type=text],.application .fulltd span input[type=textarea] {flex-basis: 100% !important;}
}

@media screen and (max-width: 340px) {
	.cd-tabs-navigation li {
		width:100%;
	}	
	
	button.grey-btn{font-size:14px;}
}
