﻿/*===================== 
	Color information
	
	orange #ee6d18
    dark grey #222222
    grey #303030
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
     scroll-behavior: smooth;
    scroll-padding-top: 120px;
	}

body {
	font-family: 'Rajdhani', sans-serif;
    margin: 0;
	padding:0;
	}

body.stick-cont.stick {
    padding-top:80px;
}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 

.img-ful-width {
    width:100%;
    height: auto;
    display: block;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

#podium-bubble {
    right:70px!important;
}

/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        text-transform: uppercase;
        font-size: 30px;
        font-weight: 700;
    }
	h2 {
        font-size: 24px;
        font-weight: 700;
    }
	h3 {
        font-size: 20px;
        font-weight: 700;
    }
	h4 {}
	h5 {}
	h6 {}

p {
    font-size: 18px;
    font-weight: 600;
	margin: 0;
	}
.disclamer {
    font-size: 14px;
    font-weight: 400;
}

.bold {
    font-weight: bold;
	}

.list-no-points {
    padding:5px 0;
    margin:0;
}
.list-no-points li {
    padding:1px 0;
    margin:0;
    list-style: none;
    font-size: 18px;
}
li {
    font-size: 18px;
}

.font-orange {
    color:#ee6d18;
}
.heading {
    color:#ee6d18;
    padding:20px 0 5px 0;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #ee6d18; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #303030;
		}  
.btn-1 {
    outline: none;
    border:0px;
    background:#ee6d18;
    color:#fff!important;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding:10px;
    min-width: 200px;
    width:auto;
    box-sizing: border-box;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
    margin:20px 0;
    transition: .2s ease-in;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    display: inline-block;
}
.btn-1:hover {
    background:#303030;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.5);
}
.btn-side .btn-1 {
    margin-right:20px;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
    margin: 0;
    background-image: -webkit-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);    
	}


header {
    padding:20px 0;
	margin: 0 auto;
	max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
	}
.head-cont-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px;
}
.head-logo-1 img {
	max-width: 100%;
	height: auto;
	display: block;
}
.head-cont-1 ul {
    padding:0 0 0 20px;
    margin:0;
}
.head-cont-1 ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.head-cont-1 ul li a {
    color:#ee6d18;
    font-size: 30px;
    line-height: 0;
}
.head-cont-1 ul li a:hover {
    color:#fff;
}
.head-location-cont-1 {
    padding:10px;
    display: flex;
}
.head-location-cont-1 ul {
    padding:0 0 0 20px;
    margin:0;
}
.head-location-cont-1 ul li {
    padding:1px 0;
    margin:0;
    list-style: none;
    font-family: 'Rajdhani', sans-serif;
}
.head-location-cont-1 ul li a {
    font-size: 16px;
    color:#fff;
}
.head-location-cont-1 ul li a:hover {
    color:#ee6d18;
}
.head-location-cont-1 ul li a .heading-1 {
    color:#ee6d18;
    font-size: 18px;
    font-weight: 700;
}
.head-location-cont-1 ul li a i {
    display: none;
}


/*===================== 
	nav styles 
=======================*/

.partspage .hide-parts {
    display: none;
}

#menu-button{display: none;}
nav.mobile { display:none;}
.menu-toggle.exit-click {
    display: none !important;
}

nav.primary.stick-cont.stick {
    position: fixed;
    top:0;
    z-index: 1003;
}

nav.primary {
	padding:20px 0;
	display:block;
	width:100%;
	position:relative;
	background: #ee6d18;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
	}
	nav.primary ul {
        max-width: 1100px;
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: space-between;
        align-items: center;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Rajdhani', sans-serif;
				color: #fff;
				font-size: 18px;
				text-decoration: none;
				padding: 10px;
				display: block;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 700;
				}	
            nav.primary ul li a img {
                max-width: 140px;
                height: auto;
                width:100%;
                display: block;
                box-sizing: border-box;
            }
            nav.primary ul li a img:hover {
                 filter: grayscale(100%);   
            }
			nav.primary ul li:hover {
				background: #222222;
				}
            nav.primary ul li:last-child:hover {
				background: rgba(0,0,0,0);
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #222222;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
				border-bottom: #fff solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                color:#ee6d18;
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.hero-wrap {
    width:100%;
    height: auto;
    background:url("/siteart/hero-bg-1.jpg") no-repeat center;
    background-size: cover;
}
.hero-wrap .container-1 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5vw 10px 21vw 10px;
    box-sizing: border-box;
    text-align: center;
}
.hero-wrap .container-1 h2 {
    color:#222222;
    text-shadow:0 0 10px #fff;
    font-size: 41px;
}

.sub-cat-wrap {
    width: 100%;
    margin: 0;
    background-image: -webkit-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);    
}
.sub-cat-btn-cont-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sub-cat-btn-cont-1 a {
    width:23%;
    margin:20px 0;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
    background:#ee6d18;
}
.sub-cat-btn-cont-1 a img {
    width:100%;
    height: auto;
    display: block;
    transition: .3s ease-in;
}
.sub-cat-btn-info {
    width:100%;
    background:#ee6d18;
    text-align: center;
    padding:10px 0;
    transition: .2s ease-in;
}
.sub-cat-btn-info h3 {
    color:#fff;    
    font-size: 28px;
    line-height: 26px;
    font-weight: 700;
    transition: .2s ease-in;
}
.sub-cat-btn-info p {
    color:#222222;    
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    transition: .2s ease-in;
}
.sub-cat-btn-cont-1 a:hover img {
     mix-blend-mode: luminosity;
}
.sub-cat-btn-cont-1 a:hover .sub-cat-btn-info {
    background:#303030; 
}
.sub-cat-btn-cont-1 a:hover .sub-cat-btn-info p, .sub-cat-btn-cont-1 a:hover .sub-cat-btn-info h3 {
    color:#ee6d18;
}
.about-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-cont h1 span {
   color:#ee6d18; 
}
.about-cont p {
   padding:20px 0;
}

.about-cont .btn-1 {
    margin-right:15px;
}
.about-img-1 img {
    width:100%;
    height: auto;
    display: block;
}
.section-wrap {
    width:100%;
    margin:0;
}
.section-label {
    width:100%;
    background:#ee6d18;
    color:#fff;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    padding:10px;
    display: block;
    box-sizing: border-box;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
}
.brand-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.brand-cont-1 a {
    margin:20px auto;
    
}
.brand-cont-1 a img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Rental Page */

.rental-banner {
    width: 100%;
    height: auto;
    background:url("/siteart/lease-banner-1.jpg") no-repeat center;
    background-size: cover;
    padding: 8vw 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.rental-banner h3 {
    font-size: 45px;
    color:#fff;
    text-shadow: 0 0 10px #000;
    text-align: center;
}
.rental-banner .btn-1 { 
    margin:20px auto;
}
/* Promotions */

.promo-cont-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin:10px auto 30px auto;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
    padding:15px;
    box-sizing: border-box;
}
.promo-cont-1 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin:0 auto;
}
.promo-cont-1 .col-1-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #222222;
}
.promo-cont-1 ul {
    padding:0 0 0 20px;
    margin:0;
}
.promo-cont-1 ul li {
    padding:0 0 10px 0;
    margin:0;
    list-style: none;
    font-size: 20px;
    font-weight: 600;
}
.promo-cont-1 ul li a {
    color:#ee6d18;
}
.promo-cont-1 ul li a span {
    color:#303030;
    font-weight: 600;
}
.promo-cont-1 ul li a:hover span {
    color:#ee6d18;
}
.promo-cont-1 ul li a:hover {
    color:#222222;
}


/* Service */

.resources-gallery a {
    box-sizing: border-box;
    width:32%;
    margin:20px 0;
}
.resources-gallery a img {
    width:100%;
    height: auto;
    display: block;
}

/* Parts */


.parts-specials a {
    max-width: 300px;
    margin:20px auto;
}

.table {
    width:100%;
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
}
.table-header {
    background-color: #ee6d18;
    color: #ffffff;
}
.table th, .table td {
    box-sizing: border-box;
    border: 1px solid #222222;
    padding:5px;
}

/* Careers */

.position-list {
    width:48%;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
    background:#fff;
    padding: 15px;
    box-sizing: border-box;
    margin:20px auto;
}

/* Contact */

.location-cont {
    width:48%;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
    background:#fff;
    padding: 15px;
    box-sizing: border-box;
    margin:20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.location-cont-2 {
    width:100%;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
    background:#fff;
    padding: 15px;
    box-sizing: border-box;
    margin:20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.location-cont .location-info-col-1 {
    padding: 0 0 20px 0;
    margin: 0;
    border-bottom: 2px solid #222222;
    width:100%;
}
.location-cont .location-info-col-2 {
    padding:20px 0 0 0;
    width:100%;
    height: 300px;
}
.location-cont-2 .location-info-col-3 {
    width:48%;
    border-right: 2px solid #222222;
}
.location-cont-2 .location-info-col-4 {
    width:48%;
}
.location-cont-2 .location-info-col-4 iframe {
    height: 400px;
}
.location-cont ul, .location-cont-2 ul {
    padding: 0;
    margin: 0;
}
.location-cont ul li, .location-cont-2 ul li {
    padding: 0 0 5px 0;
    margin: 0;
    list-style: none;
}
.location-cont ul li a, .location-cont-2 ul li a {
    padding: 0 0 5px 0;
    margin: 0;
    list-style: none;
    font-size: 20px;
    font-weight: 600;
}
.location-cont ul li a span, .location-cont-2 ul li span {
    font-size: 22px;
    font-weight: 700;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	max-width: 1100px;
	box-sizing: border-box;
	padding:30px 10px 20% 10px;
	margin:0 auto;
}

.form-capta {
    display: none;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 5px 0 5px 5px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.form-info-checkbox input {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    width:auto;
}
.form-info-checkbox label {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-radio {
    display: flex;
    align-items: center;
    padding:0 0 5px 0;
}
.form-info-radio input[type="radio"] {
	padding: 0;
	margin:  0 0 0 5px;
	box-sizing: border-box;
    width:auto;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Rajdhani', sans-serif;
}

select {
	margin:0;
	padding:0;
}


.form-inline .btn-1 {
    margin:20px auto;
    display: block;
    max-width: 200px;
    min-width: none;
    
}


.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/* scroll to top style */

.scrollToTop-1 {
	bottom:25px;
	right:25px;
	z-index:16777269;
	padding-top:5px;
	padding-bottom:5px;
	display:none;
	position:fixed;
	opacity:.8;
	
}
.scrollToTop-1 a {
 	text-decoration:none;
 	line-height:150%;
 	padding:5px 12px;
 	opacity:.8;
 	display:block;
 	background:#000;
	font-size:14px;
	text-align:center;
	color:#fff;
	z-index:16777269;
}
.scrollToTop-1 a:hover {
	box-shadow:0 0 5px 0 rgba(0,0,0,.5)
}

/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1100px;
	margin: 0 auto;
	padding:50px 10px;
	box-sizing: border-box;
	}
.container-inv {
	margin: 0 auto;
	padding:50px 10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.flex-cont-2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.flex-cont-3 {
	display: flex;
	flex-wrap: wrap;
}
.flex-cont-4 {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.flex-cont-5 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.flex-cont-6 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
    font-family: 'Rajdhani', sans-serif;
	width: 100%;
    margin: 0;
    background-image: -webkit-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(34,34,34,1.00) 0%,rgba(34,34,34,1.00) 0.52%,rgba(48,48,48,1.00) 51.30%,rgba(34,34,34,1.00) 100%);    
	}
footer .container-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.foot-info {
    width:calc(100% - 260px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.foot-info ul {
    padding:0;
    margin:0;
}
.foot-info ul li {
    padding:2px 0;
    margin:0;
    list-style: none;
}
.foot-info ul li a {
    color:#fff;
    font-size: 16px;
    font-weight: 500;
}
.foot-info ul li a span {
    color:#ee6d18;
    font-weight: 700;
}
.foot-info ul li a:hover {
    color:#ee6d18;
}
.foot-logo {
    max-width: 201px;
}
.foot-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.foot-logo ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding:15px 0 0 0;
    margin:0 auto;
}
.foot-logo ul li {
    padding:0 10px;
    margin:0;
    list-style: none;
}
.foot-logo ul li a {
    color:#fff;
    font-size:24px; 
}
.foot-logo ul li a:hover {
    color:#ee6d18;
}
.foot-bottom {
    width:100%;
    background:#ee6d18;
    padding:30px 10px;
    box-sizing: border-box;
}
.foot-bottom p {
    text-align: center;
    color:#fff;
    font-size: 14px;
}
.foot-bottom p a {
    color:#fff;
}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:490px; 
	text-align:center; 
	margin:0 auto;
	}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 960px)  {
    nav.primary ul li a {
        font-size: 1.6vw;   
    }
    .sub-cat-btn-info h3 {
        font-size: 2.4vw;
    }
    .sub-cat-btn-info p {  
        font-size: 2vw;
    }
    .resources-gallery a {
        width:48%;
    }
}

@media screen and (max-width: 800px)  {
    html {
        scroll-padding-top: 0;
	}
    body.stick-cont.stick {
      padding-top: 0px;
    }
    .col-1-2, .col-1-4, .col-3-4, .col-1-3 {
        width:100%;
    }
    
    .head-cont-1 {
        width:100%;
        box-sizing: border-box;
    }
    .head-logo-1 {
        margin: 0 auto;
    }
    
    .head-cont-1 ul {
        display: none;
    }
    .head-location-cont-1 {
        width:100%;
        box-sizing: border-box;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .head-location-cont-1 ul {
        padding:5px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .head-location-cont-1 ul li a i {
        display: block;
        color:#ee6d18;
        padding:0 5px;
    }
    .head-location-cont-1 ul li a .hide-mobile {
      display: none;
    }
    .head-location-cont-1 ul li a .heading-1:hover, .head-location-cont-1 ul li a i:hover {
      color: #fff!important;
    }
    

	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    .mobile.open + .menu-toggle.exit-click {
        position: fixed !important;
        top: 0 !important;
        left: 250px !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1000;
        font-family: 'Rajdhani', sans-serif;
    }
    
	nav.primary{display:none;}
	#menu-button{ 
		width: 100%;
		display: block;
		font-size: 24px;
		position: relative;
		line-height:60px; 
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
		background: #ee6d18;
        box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
        text-align: center;
	}
		#menu-button a{
			 color:#fff;
			 text-decoration: none;
			 font-weight:normal;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #303030;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		border-top: 1px solid #454545;
		border-bottom: 1px solid #151515;
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		border-left:4px #333 solid;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		border-left:4px #ee6d18 solid; /* border highlight - Change to fit match site colors */
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
		border-left:4px #555 solid;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#ee6d18; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		padding:8px 3px;
		margin:0 6px 0 0;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}


	nav.mobile ul li .fa-chevron-down {color:#999;}
    
    .hero-wrap .container-1 {
        padding: 4vw 10px 28vw 10px;
    }
    .hero-wrap .container-1 h2 {
        font-size: 6vw;
        line-height: 6vw;
    }
    .sub-cat-btn-cont-1 a {
      width: 45%;
        margin:20px auto;
    }
    .sub-cat-btn-info h3 {
        font-size: 4vw;
        line-height: normal;
    }
    .sub-cat-btn-info p {  
        font-size: 3vw;
        line-height: normal;
    }
    .about-img-1 {
        display: none;
    }
    .rental-banner h3 {
        font-size: 7vw;
    }
    .promo-cont-1 .col-1-4 {
        border-right: 0px solid #222222;
        border-bottom: 2px solid #222222;
        padding:0 0 20px 0;
    }
    .promo-cont-1 .col-3-4 {
        text-align: center;
        padding:20px 0 0 0;
    }
    .position-list {
        width:100%;
    }
    .location-cont {
        width:100%;
    }
    .location-cont-2 .location-info-col-3 {
        width:100%;
        border-right: 0px solid #222222;
        border-bottom: 2px solid #222222;
        padding:0 0 20px 0;
    }
    .location-cont-2 .location-info-col-4 {
        width:100%;
        padding:20px 0 0 0;
    }

    
}

@media screen and (max-width: 770px)  {
    #inventory-pg #podium-bubble {
        right:0px!important;
    }
}

@media screen and (max-width: 600px)  {
    footer .container-1 {
      justify-content: center;
    }
    .foot-info {
        display: none;
    }
    .resources-gallery a {
        width:100%;
    }
    
}
	
@media screen and (max-width: 440px)  {
     .sub-cat-btn-cont-1 a {
        width: 95%;
    }
    .sub-cat-btn-info h3 {
        font-size: 9vw;
    }
    .sub-cat-btn-info p {  
        font-size: 6vw;
    }   
    .btn-1 {
        min-width: 10px;
        width:100%;;
    }
}

