﻿/*===================== 
	Color information
	
	green #0a3e07
    light green #76bc21
    orange #76bc21
    dark grey #232323
    Grey #303030
    light grey #e9e9e9
		 
=======================*/
/*===================== 
	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;
	}

body {
	font-family: 'Mulish', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        font-size: 30px;
        font-weight: 800;
}
	h2 {
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-size: 26px;
        font-weight: 600;
}
	h4 {
        font-size: 18px;
        font-weight: 800;
}
	h5 {}
	h6 {}

p {
    font-weight: 600;
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: 800;
	}
.font-white {
    color:#fff;
}
.show-m {
    display: none!important;
}

.btn-1 {
    background:#76bc21;
    color:#000!important;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding:10px 0;
    display: block;
    max-width: 260px;
    width: 100%;
    margin: 20px 0;
    border:none;
}
.btn-1:hover {
    background:#303030;
}

.img-full-w {
    width:100%;
    height: auto;
    display: block;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/ 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		}  

p a {
    color:#76bc21!important;
}
p a:hover {
    color:#e9e9e9!important;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    background:#0a3e07;
    font-family: 'Mulish', sans-serif;
	}
.top-head-cont-1 {
    background:#232323;
    width:100%;
}
.top-head-cont-1 .container-1 {
    padding:10px;
}
.top-head-cont-1 ul {
    padding:0 10px;
    box-sizing: border-box;
    margin:0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.top-head-cont-1 ul li {
    display: block;
    padding:10px 0 10px 15px;
    margin:0;
}
.top-head-cont-1 ul li a {
    color:#76bc21;
    font-size:16px; 
}

.top-head-cont-1 ul li a:hover {
    color:#e9e9e9; 
}

header {
	margin: 0 auto;
	max-width: 1100px;
    display: flex;
    justify-content: space-between;
	}
.head-logo-1 {
    max-width: 220px;
    width: 100%;
}
.head-logo-1 img {
    width: 100%;
    height: auto;
    display: block;
}
.logo-flex {display: flex !important;}
.logo-flex p{font-size:40px; }
/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:15px 0;
	display:block;
	position:relative;
    width: 100%;
	}
	nav.primary ul {
        width:100%;
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: space-between;
		}
		nav.primary ul li {
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Mulish', sans-serif;
				color: #fff;
				font-size: 14px;
				text-decoration: none;
				padding: 15px 11px;
				display: block;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .1s ease-in;
				-moz-transition: .1s ease-in;
				-o-transition: .1s ease-in;
				transition: .1s ease-in;
				font-weight: 700;
				}	
			nav.primary ul li a:hover {
				background: #76bc21;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				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 { 
			}
/* 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: 500;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 290px;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.box-bg-1 {
    width:100%;
    background-color:#303030;
    background-image:url("../siteart/bg-pattern.png");
    padding:20px 0;
}
.sub-cat-cont-1 {
    width:100%;
	margin: 0 auto;
	padding:30px 10px;
	box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 200;
}
.sub-cat-cont-1 .sub-cat-btn-1 {
    width:19%;
    position: relative;
    display: block;
    overflow: hidden;
    margin:10px auto;
    height: 13vw;
}
.sub-cat-cont-1 .sub-cat-btn-1:hover::after {
    background:rgba(118,188,33,0.00);
}
.sub-cat-cont-1 .sub-cat-btn-1:hover img {
    filter: brightness(100%)contrast(100%)grayscale(0%);
}
.sub-cat-cont-1 .sub-cat-btn-1:after {
    content: "";
    background:rgba(118,188,33,1.00);
    position: absolute;
    top:0;
    right:0;
    left:0;
    width:100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: .1s ease-in;
    -moz-transition: .1s ease-in;
    -o-transition: .1s ease-in;
    transition: .1s ease-in;
}
.sub-cat-cont-1 .sub-cat-btn-1 img {
    width:100%;
    height: auto;
    display: block;
    opacity: 1.0;
    filter: brightness(90%)contrast(80%)grayscale(100%);
    -webkit-transition: .1s ease-in;
    -moz-transition: .1s ease-in;
    -o-transition: .1s ease-in;
    transition: .1s ease-in;
    mix-blend-mode: hard-light;
}

.sub-cat-cont-1 .btn-info-1 {
    display: block;
    position: absolute;
    left:0;
    bottom:0;
    padding:0;
    background:rgba(0,0,0,0.5);
    color:#fff;
    width:100%;
    box-sizing: border-box;
    font-weight: 700;
    z-index: 200;
    text-shadow: 0 0 5px #000;
}
.sub-cat-cont-1 .btn-info-1 p {
    font-size: 18px;
    padding: 10px 5px;
    box-sizing: border-box;
    font-weight: 700;
    border-bottom: 1px solid #76bc21;
}
.rent-title {
    padding-left:5px!important;
}
.sub-cat-cont-1 .sml-btn-txt {
    font-size: 18px;
    color:#fff;
    display: block;
    padding:5px 10px 5px 5px;
    box-sizing: border-box;
}
.sub-cat-cont-1 .sml-btn-txt:hover {
    color:#76bc21!important;
}
.about-col-1 {
    width:54%; 
}
.about-col-1 h1 {
    font-size: 30px;
    font-weight: 800;
    padding:0 0 10px 0;
}
.about-col-1 h1 span {
    font-size: 27px;
    font-weight: 500;
}

.brand-cont-1 {
    width: 15%;
    margin: 10px auto;
    padding: 0 2%;
    box-sizing: border-box;
}
.brand-cont-1 img {
    width:100%;
    height: auto;
    display: block;
}

.map-col-1 {
    width:44%;
    background:#e9e9e9;
    padding:30px 20px;
    box-sizing: border-box;
}
.map-col-1 ul {
    padding:0 0 20px 0;
    margin:0;
}
.map-col-1 ul li {
    padding:5px 0;
    margin:0;
    list-style: none;
    color:#477113;
    font-weight: 700;
}
.map-col-1 ul li a {
    color:#477113;
}
.map-col-1 ul li a:hover {
    color:#000;
}


.contact-col-1 {
    width:49%; 
}
.contact-col-1 h1 {
    font-size: 30px;
    font-weight: 800;
    padding:0 0 10px 0;
}
.contact-col-1 ul {
    padding:0 0 20px 0;
    margin:0;
}
.contact-col-1 ul li {
    padding:5px 0;
    margin:0;
    list-style: none;
    color:#0a3e07;
    font-weight: 800;
    font-size: 20px;
}
.contact-col-1 ul ul li {
    padding:0;
    margin:0;
    list-style: none;
    color:#5C9319;
    font-weight: 700;
}
.contact-col-1 ul ul li a {
    color:#5C9319;
}
.contact-col-1 ul ul li a:hover {
    color:#000;
}

.form-wrap-1 {
    width:100%;
    background:#e9e9e9;
}

.rental-cont-1 {
	padding:30px 0px;
	box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.rental-cont-1 a {
    width:30%;
    position: relative;
    display: block;
    border:4px solid #76bc21;
    border-radius: 20px;
    overflow: hidden;
    background:#232323;
    margin:15px 2.8% 15px 0;
    box-sizing: border-box;
}
.rental-cont-1 a img {
    width:100%;
    height: auto;
    display: block;
}
.rental-cont-1 a:hover img {
    opacity: 0.5;
}
.rental-cont-1 .btn-info-1 {
    display: block;
    position: absolute;
    left:0;
    bottom:0;
    padding:10px 10px 5px 20px;
    background:rgba(0,0,0,0.5);
    color:#fff;
    font-size: 25px;
    width:100%;
    box-sizing: border-box;
    font-weight: 700;
}

.hero-video {    
	width: 100%;
   max-height: 894px;
    position: relative;
    z-index: 6;
    left: 0;
    top: 0;
    overflow: hidden;}
.overlay-cont-1 {max-width: 80%;}
video#myVideo {width: 100% !important;}
.rental-cont-1 a:hover .btn-info-1 {
   color:#76bc21; 
}
.rental-cont-1 .sml-btn-txt {
    font-size: 18px;
}


.restoration-cont-1 .restoration-col {
    padding:10px;
    box-sizing: border-box;
    margin: 15px 0;
    border-bottom:4px solid #76bc21;
    display: flex;
    justify-content: space-between;
}
.restoration-cont-1 .restoration-col:first-child {
    border-top:4px solid #76bc21;
}
.restoration-cont-1 .restoration-col img {
    max-width: 100%;
    height: auto;
    display: block;
    padding:10px;
}

.supply-btn-links .btn-1 {
    margin: 0;
}

.supply-btn-links {
    justify-content: flex-start;
    gap: 10px!important;
}


/* 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)
}

/*===================== 
	slideshow styles 
=======================*/

.slider-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: calc(100% / 6); /* Exactly 1/6 of container */
    max-width: calc(100% / 6);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 10px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.brand-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.brand-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Indicator Dots */
.indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #76bc21;
    width: 30px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide {
        min-width: calc(100% / 4);
        max-width: calc(100% / 4);
    }
}

@media (max-width: 768px) {
    .slider-container {
        padding: 30px 40px;
    }
    .slide {
        min-width: calc(100% / 3);
        max-width: calc(100% / 3);
    }
}

@media (max-width: 480px) {
    .slider-container {
        padding: 20px 30px;
    }
    .slide {
        min-width: 50%;
        max-width: 50%;
    }
	.indicator {height: 6px; width: 6px;}
}






.wrap-slideshow {
    width:100%;
    position: relative;
}
.cycle-slideshow {
    width:100%;
    height: auto;
}

.cycle-slideshow img {
    width:100%;
    height: auto;
    display: block;
}
.slide-overlay {
       position: absolute;
    width: 42%;
    display: flex;
    justify-content: flex-start;
    background: rgba(35,35,35,0.77);
    padding-left: 40px;
    right: 0;
    top: calc(50% - 110px);
    z-index: 200;
}
.overlay-cont-1 {
    max-width: 550px;
    width:100%;
    padding:20px 20px 20px 10px;
    box-sizing: border-box;
}



.overlay-cont-1 p {
    color:#fff;
    font-size: 50px;
    font-weight: 800;
    text-shadow: 0 0 10px #000;
}
.overlay-cont-1 .small-slide-font {
    font-size: 18px;
}

.pager-1 { 
    display: none;
    text-align: center;
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom:-40px;
}
.pager-1 span { 
    font-family: arial; font-size: 50px; width: 16px; height: 16px; 
    display: inline-block; color: #fff; cursor: pointer; 
}
.pager-1 span.cycle-pager-active { color: #76bc21;}
.pager-1 > * { cursor: pointer;}

/*===================== 
	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;
    padding:20px 0 0 0;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* 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 input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.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: 'Roboto', sans-serif;
}

select {
	margin:0;
	padding:0;
}
.form-inline .btn-1 {
	margin-left: auto;
    margin-right: auto;
}


.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1100px;
	margin: 0 auto;
	padding:40px 10px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1100px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-thankyou {
	max-width: 1100px;
	margin: 0 auto;
	padding:40px 10px 20vw 10px;
	box-sizing: border-box;  
}


.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
}
.flex-cont-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    align-items: center;
}
.flex-cont-3 {
	display: flex;
	flex-wrap: wrap;
    align-items: center;
}
	
.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: 'Mulish', sans-serif;
	margin: 0;
	width: 100%;
    width:100%;
    background-color:#303030;
    background-image:url("../siteart/bg-pattern.png");
	}
.foot-logo-1 {
    max-width:145px;
    display: block;
    width:100%;
}
.foot-logo-1 img {
    width:100%;
    height: auto;
    display: block;
}
footer ul {
    padding:0;
    margni:0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
footer ul li {
    padding:0 0 0 15px;
    margin:0;
    list-style: none;
    display: block;
}
footer ul li a {
    color:#fff!important;
    font-size: 18px;
    font-weight: 800;
}

footer ul li a:hover {
    color:#76bc21!important;
}
.bottom-foot-1 {
    width:100%;
    background: #232323;
    text-align: center;
    color:#fff;
    font-size: 12px;
    padding:35px 0;
}
.bottom-foot-1 a {
    color:#fff!important;
}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #fff;
	}
	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: 1310px)  {
   .sub-cat-cont-1 .sub-cat-btn-1 {
      width: 24%;
    } 
    .sub-cat-cont-1 .sub-cat-btn-1 {
        height: 15vw;
	}
	
	.wrap-slideshow {max-height: 640px;}
}
@media screen and (max-width: 1070px)  {
   .sub-cat-cont-1 .sub-cat-btn-1 {
      width: 32%;
    } 
    .sub-cat-cont-1 .sub-cat-btn-1 {
        height: 20vw;
    }
    nav.primary ul li a {
      font-size: 1.2vw;
      padding:15px 10px;
    }
	.wrap-slideshow {max-height: 610px;}
}
@media screen and (max-width: 1157px)  {
  
    .slide-overlay {
        width: 550px;
    }
}


@media screen and (max-width: 980px)  {
    
    .sub-cat-cont-1 {
        margin-top: 0px;
        top: 0px;
    }

    .top-head-cont-1 ul li a {
        font-size:14px; 
    }
   .sub-cat-cont-1 .sub-cat-btn-1 {
      width: 48%;
    } 
    .sub-cat-cont-1 .sub-cat-btn-1 {
        height: 33vw;
    }
}

@media screen and (max-width: 800px)  {
    .show-m {
        display: block!important;
    }
    .show-d {
        display: none;
    }
    .top-head-cont-1 ul li a {
        font-size:16px; 
    }
    .top-head-cont-1 ul {
        width:100%;
        order:1;
        justify-content: space-around;
    }
    .head-logo-1 {
        max-width: 250px;
        width: 100%;
        margin: 0 auto;
        order:2;
    }
    .top-head-cont-1 ul li {
        padding: 10px;
    }

    @media (max-width: 768px) {
    .supply-btn-links {
        justify-content: center;
    }
}
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
	#menu-button{ 
		width: 100%;
		display: block;
		font-size: 24px;
		position: relative;
        box-sizing: border-box;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
		background: #0a3e07;
        text-align: center;
	}
		#menu-button .menu-toggle{
			 color:#76bc21;
			 text-decoration: none;
			 font-weight:normal;
            padding:10px;
            display: block;
		  }
	nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #0a3e07;
		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: #fff;
		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-bottom: 1px solid #000;
		position:relative;
	}
    nav.mobile ul li:first-child {
		border-top: 1px solid #000;
	}

	/* 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); 
		color: #fff; 
		border-left:4px #76bc21 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: 10px 20px;
		color:#fff;

	}
	.nav-footer {color:#76bc21; 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;}
    
    .grid figure{width: 49%;}
    
    .slide-overlay {
		padding-left: 0px;
        position: static;
        background: rgba(35,35,35,1.0);
        width:100%;
        border-radius: 0px;
    }
    .overlay-cont-1 {
        max-width: 100%;
        padding: 10px;
        text-align: center;
    }
    .btn-1 {
        margin:15px auto!important;
        max-width:90%;
    }
    .pager-1 { 
        display: block;
    }
    .sub-cat-cont-1 {
        margin-top: 0px;
        top: 0px;
    }
    .about-col-1, .map-col-1, .contact-col-1, .form-col-1 {
        width:100%; 
    }
    .contact-col-1 {
        padding:0 0 20px 0;
    }
    .foot-logo-1 {
        margin:0 auto;
    }
    footer ul {
         display: none;   
    }
    .rental-cont-1 {
        justify-content: space-between;
    }
    .rental-cont-1 a {
        width:49%;
        margin:15px 0;
    }
    .restoration-cont-1 .restoration-col {
        width:100%;
    }
    .restoration-cont-1 .restoration-col {
         flex-wrap: wrap;
    }
    .restoration-cont-1 .restoration-col .col-1-2 {
         order:2;   
        width:100%;
    }
    .restoration-cont-1 .restoration-col img {
         order:1; 
        margin:0 auto;
        padding:10px 0;
    }
    .supply-btn-links .btn-1 {
         max-width:33%; 
        margin:5px 0!important;
        font-size: 16px;
        padding:10px 5px;
        box-sizing: border-box;
    }
    .brand-cont-1 {
        width: 25%;
    }
    
    
}
@media screen and (max-width: 540px)  {	
   .sub-cat-cont-1 .sub-cat-btn-1 {
      width: 98%;
    }
    .sub-cat-cont-1 .sub-cat-btn-1 {
        height: 55vw;
    }
}

@media screen and (max-width: 480px)  {
    .overlay-cont-1 p {
        font-size: 9vw;
    }
    .overlay-cont-1 .small-slide-font {
        font-size: 4vw;
    }
    .sub-cat-cont-1 .btn-info-1 {
        font-size: 7vw;
    }
    .sub-cat-cont-1 .sml-btn-txt {
        font-size: 5vw;
    }
    .rental-cont-1 a {
        width:98%;
        margin:15px auto;
    }
    .supply-btn-links .btn-1 {
         max-width:75%;
    }
    a {
        word-break: break-all;
    }
}


