﻿/*===================== 
	Color information
	
    orange #e36918
    lt grey #e5e5e5
    grey #444444
    dk grey #333333
		 
=======================*/
/*===================== 
	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: urw-din, 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: 40px;
        font-weight: 600;
}
	h2 {
        font-size: 35px;
        font-weight: 600;
}
	h3 {
        font-size: 30px;
        font-weight: 600;
}
	h4 {
        font-size: 25px;
        font-weight: 600;
}
	h5 {
        font-size: 20px;
        font-weight: 600;
}
	h6 {
        font-size: 17px;
        font-weight: 600;
}

p {
    font-size: 17px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #444444; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #e36918;
		}  

.font-orange {
   color: #e36918; 
}
.btn-1 {
    color: #e5e5e5!important;
    font-size: 16px;
    font-weight: 700;
    display: block;
    padding: 10px 15px;
    width: 200px;
    margin:20px 0 10px 0;
    -webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
    border: none;
    border: 1px solid #e5e5e5;
    -webkit-appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    font-family: urw-din, sans-serif;
}
.btn-1:hover {
    color: #000!important;
    background:#e5e5e5;
    transition: .2s ease-in;
}
.btn-2 {
    color: #e36918!important;
    font-size: 16px;
    font-weight: 700;
    display: block;
    padding: 10px 15px;
    width: 200px;
    margin:20px 0 10px 0;
    -webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
    border: none;
    border: 1px solid #e36918;
    -webkit-appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    font-family: urw-din, sans-serif;
}
.btn-2:hover {
    color: #fff!important;
    background:#e36918;
    transition: .2s ease-in;
}

.btn-orange {
    background:#e36918;
    color:#fff!important;
    display: block;
    max-width: 300px;
    padding:15px;
    box-sizing: border-box;
    width:100%;
    transition: .2s ease-in;
    margin:20px auto;
    font-family: urw-din, sans-serif;
}
.btn-orange:hover {
    background:#444444;   
}
.li-grey-bg {
    background:#e5e5e5;
}
.grey-bg {
    background:#444444;
}
.dk-grey-bg {
    background:#333333;
}
.bg-texture-1 {
    position: relative;

}
.bg-texture-1:after {
    position: absolute;
    content:"";
    width:100%;
    height: 100%;
    top:0;
    left:0;
    background-image:linear-gradient(90deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,0.50) 15%,rgba(255,255,255,0.50) 85%,rgba(255,255,255,0.00) 100%), url("/siteart/bg-texture-2.png");
    z-index: -1;
}
.bg-texture-1:before {
    position: absolute;
    content:"";
    width:100%;
    height: 100%;
    top:0;
    left:0;
    background:linear-gradient(180deg,rgba(212,212,212,0.60) 0%,rgba(98,98,98,0.60) 100%), url("/siteart/bg-texture-3.jpg");
    z-index: -2;
}

.img-full {
    width:100%;
    height: auto;
    display: block;
    margin:10px auto;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    background:#fff;
	}
.top-header {
    padding:15px 0;
    background:#e5e5e5;
    width:100%;
}
.top-head-cont-1 {
    width:100%;
    max-width: 1600px; 
    margin:0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
}
.top-head-cont-1 ul {
    padding:0;
    margin:0;
    max-width: 850px;
    width:60%;
    display: flex;
    justify-content: flex-end;
}
.top-head-cont-1 ul li {
    padding: 0px;
    margin:0;
    list-style: none;
    font-family: urw-din, sans-serif;
}
.top-head-cont-1 ul li a {
    font-size: 16px;
    color:#444444;
    padding:10px;
    font-weight: 700;
}
.top-head-cont-1 ul li a span {
    color:#000;
}
.top-head-cont-1 ul li a:hover {
    color:#e36918;
}

header {
	width:100%;
    max-width: 1600px;
    margin:0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.head-logo-1 {
    position: relative;
    max-width: 250px;
    padding:10px;
    box-sizing: border-box;
    width:100%;
}
.head-logo-1 img {
	max-width: 100%;
	height: auto;
	display: block;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:40px 0;
	display:block;
	position:relative;
    max-width: 975px;
    width:100%;
    
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0 10px 0 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
		}
		nav.primary ul li {
			margin:0;
            padding:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: urw-din, sans-serif; 
				color: #000;
				font-size: 20px;
				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:hover {
				color:#e36918;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:20px;
				padding:10px 15px;
				color:#000;
				background: #e5e5e5;
				display: block;
				border-right:none;
				border-left:none;
			}
			/* 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; 
    padding:0;
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    z-index: 400;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: auto;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/


.content-cont-1 {
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
    padding: 30px 60px;
}
.content-cont-1 h1 {
    padding:0 0 15px 0;
}
.content-list {
    margin:10px 0px 20px 30px;
    padding:0;
}

.content-list li {
    list-style: none;
}
.content-list li:before {
    content: "\2022";
    color: #e36918;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.content-cont-1 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-bio-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding:20px 0;
    align-items: flex-start;
}
.content-bio-1 h2 {
    color:#e36918;
    width:100%;
    padding:0 0 20px 0;
}
.content-bio-1 img {
    max-width:200px;
    width:100%;
    height: auto;
    display: block;
    box-sizing: border-box;
    border-right: 1px solid #ccc;
    padding:0 20px 0 0;
}
.content-bio-1 p {
    width:calc(100% - 220px);
    box-sizing: border-box;
}


.contact-info {
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
    padding: 30px 60px;
}
.contact-info ul {
    padding:5px 0 10px 0;
    margin:0;
}
.contact-info ul li {
    padding:0;
    margin:0;
    list-style: none;
    font-size: 18px;
}
.contact-info ul li a {
    color:#333333;
}
.contact-info ul li a:hover {
    color:#e36918;
}

.sales-info-1 {
    border-top: 1px solid #ccc;
    margin:20px 0 0 0;
    padding:20px 0 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sales-info-1 h3 {
    font-size: 25px;
    line-height: 25px;
    text-align: center;
    padding:10px;
    display: inline-block;
    margin:0 auto;
}
.sales-info-1 h3 span {
    font-size: 14px;
    color:#e36918;
}

.part-cat-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:20px 0;
}
.part-cat-btns a {
    width:19%;
    position: relative;
    margin:20px 0;
}
.part-cat-btns img {
    width:100%;
    height: auto;
    display: block;
}
.part-cat-overlay-1 {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .2s ease-in;
    background:rgba(0,0,0,0.5);
} 
.part-cat-overlay-1 h2 {
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.part-cat-overlay-1 h2 span {
    font-size: 16px;
    color:#e36918;
}
.part-cat-overlay-1:hover {
   background:rgba(0,0,0,0.7); 
}

.inv-banner {
    max-width: 1200px;
    width:90%;
	margin: 0 auto;
	padding:30px 0;
	box-sizing: border-box;
    background:#444444;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inv-banner p {
    font-family: urw-din, sans-serif;
    color:#e36918;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}
.inv-banner .btn-1 {
    margin:20px auto;
}
.parts-listing {
    max-width: 300px;
    width:100%;
    padding:20px;
    box-sizing: border-box;
    border:1px solid #ccc;
    margin:20px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.parts-listing img {
    width:100%;
    height: auto;
    display: block;
}
.parts-listing h3 {
    font-size: 16px;
    text-align: center;
}
.parts-listing p {
    font-size: 14px;
    text-align: center;
}

.brand-header {
    text-align: center;
    color:#e36918;
    padding:10px 0 12px 0;
    text-transform: uppercase;
    width:100%;
}

.brand-cat-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #fff;
    align-items: center;
    margin: 0 20px;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
	gap: 8px;
}
.brand-cat-cont-1 a {
    max-width: 200px;
    padding:10px;
    box-sizing: border-box;
    margin:20px auto;
    transition: .2s ease-in;
}
.brand-cat-cont-1 a img {
    max-width:100%;
    height: auto;
    display: block;
    margin:0 auto;
}
.brand-cat-cont-1 a:hover {
   opacity: 0.7; 
}


/* 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)
}

/*===================== 
	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;
    width:100%;
}
.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-cont-1 input, .form-cont-1 date, .form-cont-1 select, .search-input {
	width: 100%;
	display: block;
	padding: 5px 0 5px 5px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.check-box-col {
    display: flex;
    align-items: center;
}
.check-box-col label {
    font-size: 20px!important;
    color:#e36918;
}
.check-box-col input {
    width:auto!important;
    margin:0 0 10px 10px;
    font-size: 20px;
}

.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 8px 0;
	font-family: 'Roboto', sans-serif;
}
.form-cont-1 label {
    font-size: 14px;
    padding:0 0 12px 0;
    font-weight: 600;
    display: inline-block;
}

.CaptchaImage {
    margin:0 auto;
}

select {
	margin:0;
	padding:0;
}
.search-button {
    font-family: urw-din, sans-serif;
    color: #e36918;
    font-size: 16px;
    font-weight: 700;
    display: block;
    padding: 10px 15px;
    width: 200px;
    margin:20px 0 10px 0;
    -webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
    border: none;
    background: #fff;
    border: 1px solid #e36918;
    -webkit-appearance: none;
    max-width: 400px;
    box-sizing: border-box;
    cursor: pointer;
}
.search-button:hover {
    color: #fff;
    background:#e36918;
    transition: .2s ease-in;
}



.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/*===================== 
	slideshow styles 
=======================*/

.wrap-home-slider {
    width: 100%;
    position: relative;
    z-index: 400;
    padding-bottom: 30px;
    top:-5vw;
}
.wrap-home-slider .container-1 {
    background: #e5e5e5;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
    padding: 10px; 
    margin-bottom: -4vw;
}

.slider-hero {
    width:100%;
    height: auto;
}

.slider-hero img {
    width:100%;
    height: auto;
}



/*===================== 
	Content styles 
=======================*/

.wrap-hero {
    width:100%;
    height: auto;
    position: relative;
    height: 31vw;
    background:url("/siteart/hero-slide-1.jpg") no-repeat center;
    background-size: cover;
}
.wrap-hero img {
    width:100%;
    height: auto;
}
.hero-overlay-1 {
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    text-align: center;
    z-index: 300;
}
.hero-overlay-1 h2 {
    color:#fff;
    font-weight: 700;
    font-size: 40px;
    text-shadow: 0 0 10px #000;
    padding: 0 0 15px 0;
}
.hero-overlay-1 p {
    color:#fff;
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0 0 10px #000;
}

.sub-cat-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sub-cat-cont-1 a {
    width:31%;
    display: block;
    position: relative;
    transition: .2s ease-in;
    margin:30px auto 50px auto;
}
.sub-cat-cont-1 a img {
    width:100%;
    height: auto;
    display: block;
}

.sub-cat-overlay-1 {
    position: absolute;
    height: 100%;
    width:100%;
    top:0;
    left:0;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .2s ease-in;
}
.sub-cat-overlay-1 h2 {
    color:#fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.sub-cat-overlay-1 h2 span {
    font-size:45px;
    color:#e36918;
}
.sub-cat-overlay-1 p {
    color:#fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    padding:10px 40px 0 40px;
    transition: .4s ease-in;
    opacity: 0;
    position: absolute;
    z-index: -1;
}
.sub-cat-cont-1 a:hover .sub-cat-overlay-1 {
    background:rgba(0,0,0,0.4);
}
.sub-cat-cont-1 a:hover p {
    opacity: 1;
    z-index: 100;
    position: relative;
}
.info-cont-1 {
    width:33.33%;
    display: flex;
    flex-wrap: wrap;
    padding:70px 30px;
    box-sizing: border-box;
}
.info-cont-1 i {
    padding: 70px 20px 0 0;
    font-size: 80px;
    color: #e36918;
}
.info-col-1 {
    width: calc(100% - 100px);
}
.info-col-1 h3 {
    padding:0 0 20px 0;
}
.info-col-1 p {
    padding:0 0 10px 0;
}
.info-col-1 a {
    color:#e36918;
    font-weight: 600;
}
.info-col-1 a:hover {
    opacity: 0.8;
}

/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
.content-wrap {
    padding:30px 0;
}
.container-1 {
	max-width: 1100px;
    width:90%;
	margin: 0 auto;
	box-sizing: border-box;
	}	
.container-2 {
    width:90%;
	max-width: 1600px;
	margin: 0 auto;
	box-sizing: border-box;
	}

.container-inv {
	max-width: 1200px;
    width:90%;
	margin: 0 auto;
	padding:30px 0;
	box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.3);
    padding: 30px 60px;
	}


.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
	
.col-1 { width: 100%; box-sizing:border-box;}
.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 {
	margin: 0;
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.foot-cont-1 {
    width:33.33%;
    padding:120px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.foot-logo-1 {
    max-width: 270px;
    margin:0 auto;
}
.foot-logo-1 img {
    width:100%;
    height: auto;
    display: block;
    margin:0 auto;
}
.foot-info ul {
    padding:30px 0 0 0;
    margin:0;
}
.foot-info ul li {
    padding:20px 0 0 0;
    display: flex;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color:#fff;
    line-height: 1.5;
    font-family: urw-din, sans-serif;
}
.foot-info ul li i {
    padding:0 15px 0 0;
    color:#e36918;
}
.foot-info ul li a {
    color:#fff;
}
.foot-info ul li a:hover {
    color:#e36918;
}
.foot-info ul ul {
    padding:0;
    margin:0;
}
.foot-info ul ul li {
    padding:0;
    margin:0;
}
.foot-nav {
    max-width: 350px;
    width:100%;
}

.foot-nav h3 {
    color:#fff;
}
.foot-nav ul {
    padding:10px 0 0 0;
    margin:0;
    width:100%;
}
.foot-nav ul li {
    padding:0;
    margin:0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color:#fff;
    font-family: urw-din, sans-serif;
}
.foot-nav ul li i {
    padding:10px;
    cursor: pointer;
    font-size: 12px;
}
.foot-nav ul li i:hover {
    color:#e36918;
}
.foot-nav ul li a {
    padding:10px 0;
    margin:0;
    list-style: none;
    transition: .2s ease-in;
    color:#fff;
}
.foot-nav ul li a:hover {
    color:#e36918;
}
.foot-nav ul ul {
    padding:0 0 0 15px;
    box-sizing: border-box;
}

.foot-sign-up {
    max-width: 350px;
    width:100%;
}
.foot-sign-up .btn-1 {
    width:100%;
}
.foot-social {
    text-align: right;
    padding:20px 0px;
}
.foot-social a {
  color: #e36918;
  font-size: 40px;
  padding: 0 10px;
}
.foot-social a:hover {
    color:#e5e5e5;
}
.foot-sign-up p {
    font-family: urw-din, sans-serif;
    text-align: right;
    color:#e5e5e5;
    font-size: 12px;
}

	
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: 1100px)  {

    .top-head-cont-1 ul {
        max-width: 100%;
        width: 80%;
        margin:0 auto;
    }
    .head-logo-1 {
        margin:30px auto;
        max-width: 300px;
    }
    .head-logo-1 img {
        position: static;
        margin:0 auto;
    }
    header {
      flex-direction: column;
    }
    nav.primary {
        padding: 10px 0;
        margin:0 auto;
    }
    nav.primary ul {
      padding: 0 10px;
    }
    .info-col-1 {
        width: 100%;
    }  
    .brand-cat-cont-1 {
      margin: 0;
    }
}

@media only screen and (max-width: 1040px) {
	.brand-cat-cont-1 a {max-width: 150px;}
}

@media screen and (max-width: 1010px)  {
    .part-cat-btns a {
        width:32%;
        margin:10px auto;
    }
    .hero-overlay-1 h2 {
        font-size: 4vw;
        padding: 0 0 1vw 0;
    }
    .hero-overlay-1 p {
        font-size: 3vw;
    }
}

@media only screen and (max-width: 850px) {
	.brand-cat-cont-1 a {max-width: 100%;}
}

@media screen and (max-width: 760px)  {
    
    .col-1-2, .col-1-3 {
        width:100%;
    }
    .top-header {
        padding:10px 0;
    }
    .top-head-cont-1 ul {
         display: none;   
    }
    .head-logo-1 {
      margin: 15px auto;
    }
    
	/*==============================
		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;
    }
    
	nav.primary{display:none;}
	#menu-button{ 
		width: 60px;
		display: block;
		font-size: 24px;
		position: relative;
        text-align: center;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	}
		#menu-button a{
			 color:#000;
			 text-decoration: none;
			 font-weight:normal;
		  }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #333333;
		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 {
        font-family: urw-din, sans-serif;
		position: relative;
		display: block;
		font-size:15px;
		padding: 10px;
		color: #999;
		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 #e36918 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:#e36918; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;font-family: urw-din, sans-serif;}

	/* 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-overlay-1 .btn-orange {
        max-width: 300px;
        padding: 10px;
        margin: 1vw auto;
        font-size: 3vw;
    }
    .hero-slide-overlay-1, .slick-dots { 
        display: none!important;
    }
    .wrap-home-slider {
        top: 0;
        padding-top: 30px;
    }
    .wrap-home-slider .container-1 {
        margin-bottom: 0;
    }
    .slick-dots {
        display: none;
    }
    .sub-cat-cont-1 a {
        width:100%;
    }
    .sub-cat-overlay-1 h2 {
      font-size: 6vw;
    }
    .sub-cat-overlay-1 h2 span {
      font-size: 8vw;
    }
    .sub-cat-overlay-1 p {
        font-size: 3vw;
        opacity: 1;
        position: static;
        z-index: 100;
        padding:10px 40px 0 40px;
    }
    .info-cont-1 {
        width: 100%;
        padding:30px;
        justify-content: space-between;
    }
    .info-col-1 {
      width: calc(100% - 18vw);
    }
    .info-cont-1 i {
      font-size: 14vw;
    }
    .foot-cont-1 {
        width:100%;
        padding:30px;
    }
    
    .foot-cont-1.grey-bg {
        display: none;
    }
    .foot-logo-1 {
        margin: 50px auto 0px auto;
    }
    .foot-social {
      text-align: center;
    }
    .foot-sign-up p {
        text-align: center;
        padding-bottom: 60px;
    }
    .contact-map {
        height: 400px;
    }
    .btn-2 {
        width:100%;
    }
    .part-cat-btns a {
        width:48%;
        margin:10px auto;
    }
    .part-cat-overlay-1 h2 {
      font-size: 4vw;
    }
    .part-cat-overlay-1 h2 span {
      font-size: 3vw;
    }
    .inv-banner {
        flex-wrap: wrap;
    }
    

}

@media screen and (max-width: 650px)  {
    
    .content-bio-1 h2 {
      text-align: center;
    }
    .content-bio-1 p {
        width: 100%;
        
        border-top: 1px solid #ccc;
        padding: 10px 0;
        box-sizing: border-box;
    }
    .content-bio-1 img {
        max-width: 200px;
        margin:0 auto 20px auto;
        border-right: 0px solid #ccc;
        padding:0;
    }
}

@media only screen and (max-width: 600px) {
	.brand-cat-cont-1 a {width: 350px;}
}

	
