﻿/*===================== 
	Color information
	
	-
	-red #b6202c
grey #efeeee
dark grey #282828

	-
	-
		 
=======================*/
/*===================== 
	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%; 
	}

body {
	font-family: 'Roboto Condensed', 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: 700;
}
	h2 {
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-size: 22px;
        font-weight: 700;
}
	h4 {
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold!important;
	}
.text-red {
    color:#b6202c;
}
.text-white {
    color:#ffffff;
}
.text-center {
    text-align: center!important;
}

/*===================== 
	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-text-link {
    color:#b6202c!important;
    transition: .2s ease-in;
}
.p-text-link:hover {
    color:#000!important;
}
.text-link {
    font-family: 'Roboto Condensed', sans-serif;
    color:#b6202c!important;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin:5px 0;
    transition: .2s ease-in;
}
.text-link:hover {
    color:#000!important;
    font-weight: 400;
}
.btn-red {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding:10px 15px;
    color:#fff!important;
    background:#b6202c;
    display: inline-block;
    margin:5px 0;
    transition: .2s ease-in;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    border:0px;
    outline:none;
}
.btn-red:hover {
    background:#282828;
}
.btn-black {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding:10px;
    color:#fff!important;
    background:#282828;
    display: inline-block;
    margin:5px 0;
    transition: .2s ease-in;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    border:0px;
    outline:none;
}
.btn-black:hover {
    background:#515151;
}
.btn-gray {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding:10px;
    color:#282828!important;
    background:#efeeee;
    display: inline-block;
    margin:5px 0;
    transition: .2s ease-in;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    border:0px;
    outline:none;
}
.btn-gray:hover {
    background:#fff;
}



/*===================== 
	header styles 
=======================*/


.header-wrap {
	width: 100%;
    position: relative;
	}

.top-banner:hover {
	background-color: #9A0808;
	cursor: pointer;
}

header {
	width:100%;
    display: flex;
    flex-wrap: wrap;
	}
.head-logo-1 {
	max-width:250px;
    width:100%;
    background:#b6202c;
    padding:20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.head-logo-1 p {
    text-align: right;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
}
.head-logo-1 p span {
    font-size: 15px;
    font-weight: 500;
}
.head-center {
    width:calc(100% - 325px);
    background:#282828;
    display: flex;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    justify-content: space-between;
}
.head-brands img {
    display: block;
    max-width: 165px;
    width:100%;
    height: auto;
    margin:16px auto;
    transition: .2s ease-in;
}
.head-brands img:hover {
    opacity: 0.7;
}
.top-nav {
    width:100%;
}
.top-nav ul {
    display: flex;
    gap:20px;
    justify-content: flex-end;
    padding:10px;
    margin:0;
}
.top-nav ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.top-nav ul li a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    color:#fff;
    font-weight: 400;
    transition: .2s ease-in;
}
.top-nav ul li a i {
    font-size: 18px;
}
.top-nav ul li a:hover {
    opacity: 0.7;
}
.header-search-cont {
    width:75px;
    background:#b6202c;
    padding:20px 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-search-cont .searchshow {
    color:#fff;
    font-size: 30px;
    transition: .2s ease-in;
}
.header-search-cont .searchshow:hover {
    opacity: 0.7;
}
.header-search {
    display: none;
    position: absolute;
    right: 0px;
    top: 100%;
    width: 100%;
    background: #efeeee;
    box-sizing: border-box;
    padding: 20px;
    z-index: 1;
}
.header-search form {
    max-width: 600px;
    width:100%;
    display: flex;
    background:#fff;
    border:1px solid #282828;  
    margin:0 auto;
    box-sizing: border-box;
}
.header-search form .keyword {
    border:0px!important;
    outline:none!important;
    background:#fff!important;
    font-size: 20px!important;
    line-height: 1!important;
    border-radius: 0px!important;
    font-family: 'Roboto Condensed', sans-serif;
    width:100%!important;
    padding:15px!important;
    height: auto!important;
}
.header-search form button {
    border:0px;
    padding:15px;
    outline:none;
    background:#fff;
    font-size: 20px;
    color:#b6202c;
    cursor: pointer;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0;
	display:block;
	margin:0;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: space-between;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Roboto Condensed', sans-serif;
				color: #fff;
				font-size: 16px;
				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;
                white-space: nowrap;
				}	
                nav.primary ul li:hover a {
				    background: #b6202c;
				}
			nav.primary ul li a:hover {
				background: #b6202c;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				background: #b6202c;
				display: block;
				text-align:left;
                padding:10px 25px;
				border-right:none;
				border-left:none;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                background:#9D1B26;
			}
/* 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: auto;
    position: relative;
    margin:0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
    width: 100%;
    background-image: -webkit-linear-gradient(0deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 47.15%,rgba(0,0,0,0.47) 100%), url(../siteart/hero-bg-c-v1.jpg);
    background-image: -moz-linear-gradient(0deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 47.15%,rgba(0,0,0,0.47) 100%), url(../siteart/hero-bg-c-v1.jpg);
    background-image: -o-linear-gradient(0deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 47.15%,rgba(0,0,0,0.47) 100%), url(../siteart/hero-bg-c-v1.jpg);
    background-image: linear-gradient(90deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 47.15%,rgba(0,0,0,0.47) 100%), url(../siteart/hero-bg-c-v1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: calc(100vh - 400px); 
    min-height: 400px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}
.hero-overlay-1 {
    padding: 50px 10vw 50px 50px;
}
.hero-overlay-1 h1 {
   font-family: 'Roboto Condensed', sans-serif;
    color:#fff;
    text-shadow: 0 0 15px rgba(0,0,0,1);
    font-size: 90px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    margin-bottom:30px;
}
.hero-overlay-1 h1 span {
    font-size: 50px;
    
}
.hero-overlay-1 form {
    display: flex;
    align-items: center;
    width: 100%;
}
.red-search-btn {
   font-family: 'Roboto Condensed', sans-serif;
    color:#fff!important;
    text-align: center;
    padding:15px;
    font-size: 24px;
    font-weight: 600;
    background: #b6202c;
    transition: .2s ease-in;
    outline:none;
    border:0px;
    cursor: pointer;
    max-width: 300px;
    margin:0 auto;
}
.red-search-btn:hover {
    background:#282828;
}
.mobile-only {
    display: none;
}
.search-cont-hero {
    display: flex;
    padding:5px 10px;
    background:#fff;
    align-items: center;
    flex-grow: 1;
}
.search-cont-hero input {
    background:#fff;
    border:0px;
    outline:none;
    font-size: 17px;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
    width:100%;
}
.search-cont-hero button {
    background:#fff;
    border:0px;
    outline:none;
    font-size: 20px;
    color:#282828;
    transition: .2s ease-in;
    cursor: pointer;
}
.search-cont-hero button:hover {
    color: #b6202c;
}
.wrap-service {
    width:100%;
    position: relative;
    
}
.wrap-service:before {
    content:"";
    background:#b6202c;
    height: calc(100% + 50px);
    width:calc(50% - 650px);
    position: absolute;
    min-width: 15px;
}
.wrap-service .container-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:30px 0;
    padding-top:80px;
    padding-bottom:40px;
    
}
.wrap-service .container-1 a {
    width:15%;
    transition: .2s ease-in;
}
.wrap-service .container-1 a img {
    max-width: 100%;
    height: auto;
    display: block;
    margin:0 auto 20px auto;
}
.wrap-service .container-1 a p {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    color:#282828;
    transition: .2s ease-in;
}
.wrap-service .container-1 a:hover {
    transform: scale(1.04);
}
.wrap-service .container-1 a:hover img {
    filter: invert(22%) sepia(64%) saturate(3657%) hue-rotate(341deg) brightness(73%) contrast(95%);
}
.wrap-service .container-1 a:hover:last-child img {
    filter: none;
}
.wrap-service .container-1 a:hover p {
    color:#b6202c;
}
.wrap-cat {
    width:100%;
    padding:100px 0 50px 0;
    background:#efeeee;
}
.wrap-cat h2 {
    font-size: 35px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
}
.wrap-cat h2 span {
    font-weight: 700;
}
.wrap-cat p {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
}
.cat-slider {
    padding-top:40px;
}
.cat-slider .slick-slide {
    padding:0 10px;
}
.cat-slider .slick-slide a {
    border:1px solid #282828;
    display: block;
    background:#282828;
}
.cat-slider .slick-slide a img {
    width:100%;
    height:auto;
    display: block;
    transition: .2s ease-in;
}
.cat-slider .slick-slide a h3 {
    display: block;
    padding:20px 5px;
    background: #b6202c;
    color:#fff;
    font-size:20px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    transition: .2s ease-in;
}
.cat-slider .slick-slide a:hover img {
    opacity: 0.7;
}
.cat-slider .slick-slide a:hover h3 {
    background: #282828;
}
.cat-slider .slick-dots {
    margin:0 auto;
    display: none!important;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    gap:0 10px;
}
.cat-slider .slick-dots li {
    padding:0;
    margin:0;
    list-style: none;
    width:13px;
    height: 13px;
    display: block;
    background:#8a8a8a;
    border-radius: 20px;
    cursor: pointer;
}
.cat-slider .slick-dots li.slick-active {
    background:#282828;
}
.cat-slider .slick-dots li button {
    display: none!important;
}
.cat-slider .slick-prev {
    height: 30px;
    width:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid #282828;
    background:#fff;
    font-size: 26px;
    color:#b6202c;
    position: absolute;
    top:-45px;
    right:50px;
    cursor: pointer;
    transition: .2s ease-in;
}
.cat-slider .slick-next {
    height: 30px;
    width:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid #282828;
    background:#fff;
    font-size: 26px;
    color:#b6202c;
    position: absolute;
    top:-45px;
    right:10px;
    cursor: pointer;
    transition: .2s ease-in;
}
.cat-slider .slick-prev:hover, .cat-slider .slick-next:hover {
    background:#282828;   
}
.wrap-brand {
    width:100%;
    padding:100px 0 100px 0;
}
.wrap-brand h2 {
    font-size: 35px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
}
.wrap-brand h2 span {
    font-weight: 700;
}
.wrap-brand p {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
}
.brand-slider {
    padding-top:40px;
}
.brand-slider .slick-slide {
    padding:0 10px;
}
.brand-slider .slick-slide a {
    border: 1px solid #282828;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    box-sizing: border-box;
    transition: .2s ease-in;
}
.brand-slider .slick-slide a img {
    max-width:70%;
    margin: 0 auto;
    height:auto;
    display: block;
    transition: .2s ease-in;
}
.brand-slider .slick-slide a:hover {
    background:#efeeee;
}
.brand-slider .slick-slide a:hover img {
    filter: grayscale(1);
}
.brand-slider .slick-dots {
    margin:0 auto;
    display: none!important;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    gap:0 10px;
}
.brand-slider .slick-dots li {
    padding:0;
    margin:0;
    list-style: none;
    width:13px;
    height: 13px;
    display: block;
    background:#8a8a8a;
    border-radius: 20px;
    cursor: pointer;
}
.brand-slider .slick-dots li.slick-active {
    background:#282828;
}
.brand-slider .slick-dots li button {
    display: none!important;
}
.brand-slider .slick-prev {
    height: 30px;
    width:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid #282828;
    background:#fff;
    font-size: 26px;
    color:#b6202c;
    position: absolute;
    top:-45px;
    right:50px;
    cursor: pointer;
    transition: .2s ease-in;
}
.brand-slider .slick-next {
    height: 30px;
    width:30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid #282828;
    background:#fff;
    font-size: 26px;
    color:#b6202c;
    position: absolute;
    top:-45px;
    right:10px;
    cursor: pointer;
    transition: .2s ease-in;
}
.brand-slider .slick-prev:hover, .brand-slider.slick-next:hover {
    background:#282828;   
}
.wrap-about {
    background:#efeeee;
    width:100%;   
    position: relative;
}
.wrap-about:before {
    content:"";
    background:#b6202c;
    height: calc(100% + 50px);
    width:calc(50% - 650px);
    position: absolute;
    min-width: 15px;
    right:0;
}
.wrap-about .container-1 {
    padding:50px 20px;
}
.wrap-about .container-1 h2  {
    color:#282828;
    font-size:35px;
    font-weight:700;
}
.wrap-about .container-1 h3  {
    color:#282828;
    font-size:20px;
    font-weight: 500;
    padding-bottom:20px;
}
.wrap-about .container-1 p  {
    color:#282828;
    font-size: 18px;
    font-weight: 500;
    max-width: 700px;
    width:100%;
    display: block;
    line-height: 1.4;
    padding-bottom:20px;
}
.wrap-location {
    width:100%; 
    padding:100px 0 60px;
}
.wrap-location h2 {
    font-size: 35px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
}
.wrap-location h2 span {
    font-weight: 700;
}
.wrap-location p {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    padding-bottom:10px;
}

.location-flex-cont-1 {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    max-height: 500px;
    min-height: 400px;
    overflow: hidden;  
    border-top:1px solid #282828;
    border-right:1px solid #282828;
    box-sizing: border-box;
    margin-top: 30px;
    background-color:#fff;
}
.location-tab {
    width:20%;
    border-left:1px solid #282828;
}
.location-tab .slick-list {
    height: 100%;
}
.location-tab .slick-track {
    display: flex;
    flex-direction: column;
    width:100%!important;
    height: 100%;
    transform: none !important;
}
.location-tab .slick-slide {
    flex-grow: 1;
    width:100%!important;
    cursor: pointer;
}
.location-tab .slick-slide > div, .location-tab .slick-slide > div > div {
    height: 100%;
}
.location-tab p {
    background:#efeeee;
    font-size: 26px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    color:#000;
    transition: all 0.2s ease-in 0s;
    height: 100%;
    display:flex;
    justify-content: center;
    align-items: center;  
    width:100%;
    gap:0 20px;
    padding:10px;
    box-sizing: border-box;
    border-bottom:1px solid #282828;
    border-right:1px solid #282828;
}
.location-tab p:hover {
    color:#b6202c;
}
.slick-current p {
    background:#fff;
    color:#b6202c;
    border-right:0px solid #282828;
}
.location-info {
    width: 80%;
    border-bottom:1px solid #282828;
}

.location-info .slick-list, .location-info .slick-track {
    height: 100%;
}

.location-info .slick-track > div {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.location-slide-info {
    width:50%; 
    border-right:1px solid #282828;
    padding:20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.location-slide-info-col-1 {
    max-width:400px;
    width:100%;
}
.location-slide-info h3 {
    font-size: 22px;
    font-weight: 700;
    padding-bottom:10px;
    font-family: 'Roboto Condensed', sans-serif;
    color:#282828;
}
.location-slide-info p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight:400;
    color:#282828;
}
.location-slide-info p span {
    font-weight:600;
}
.location-slide-info p a {
    color:#282828!important;
    transition: all 0.2s ease-in 0s;
}
.location-slide-info p a:hover {
    color:#b6202c!important;
}
.loc-btn-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:10px 0;
}
.loc-btn-cont-1 .btn-red {
    width:48%;
    display: block;
    margin:0;
}
.loc-btn-cont-1 .btn-black {
    width:100%;
    display: block;
    margin:0;
}
.location-slide-map {
    width:50%;
}
.location-slide-map iframe {
    min-height: 350px;
}

.wrap-content {
    width:100%;   
    position: relative;
}
.grey-bg {
    background:#efeeee;
}
.white-bg {
    background:#fff;
}
.black-bg {
    background:#282828;
}
.red-box-left:before {
    content:"";
    background:#b6202c;
    height: calc(100% + 50px);
    width:calc(50% - 650px);
    position: absolute;
    min-width: 15px;
    z-index: 1;
}
.red-box-right:before {
    content:"";
    background:#b6202c;
    height: calc(100% + 50px);
    width:calc(50% - 650px);
    position: absolute;
    min-width: 15px;
    right:0;
    z-index: 1;
}
.wrap-content .container-1 {
    padding-top:50px;
    padding-bottom:50px;
}
.wrap-content h1 {
    font-size: 35px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif; 
    padding-bottom:20px;
}
.wrap-content h1 span {
    font-weight: 700;
}
.wrap-content h2 {
    font-size: 30px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif; 
}
.wrap-content h2 span {
    font-weight: 700;
}
.wrap-content h3 {
    font-weight: 400;
}
.box-style-1 {
    padding:15px;
    box-sizing: border-box;
    border:1px solid #282828;
    margin:20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:20px;
}
.box-style-2 {
    padding:15px;
    box-sizing: border-box;
    border:1px solid #282828;
    margin:20px 0;
    display: flex;
    flex-direction: column;
    gap:20px;
	flex-grow: 1;
}
.box-style-1 li {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-bottom:5px;
}
.parts-col-2 {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:30px auto;
    background: #efeeee;
    border: 2px solid #282828; 
}
.parts-col-img-1 {
    width:24%;
    padding:20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.parts-col-img-1 img {
    max-width: 220px;
    width:100%;
    height: auto;
    margin:0 auto;
}
.parts-col-info-1 {
    width:75%;
    background: #282828;
    padding:20px;
    box-sizing: border-box;
}
.parts-col-info-1 h2, .parts-col-info-1 h3  {
    color:#fff;
    padding-bottom:10px;
}
.flex-link-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 1%;
}
.flex-link-box a, .video-link-box {
    background: #fff;
    border: 1px solid #282828;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:5px 0;
}
.flex-link-box a img {
    width: 100%;
    display: block;
    height: auto;
    padding-bottom: 10px;
}
.flex-link-box a h2, .video-link-box h2 {
  margin: 0px;
  padding: 0px 0px 2%;
  color: #b6202c;
  font-weight: 700;
  font-size: 18px;
}
.video-link-box p {
    font-size: 15px;
}
.flex-link-box a .btn-red {
    display: block;
    width:100%;
}
.loc-pg-btn-cont-1 {
    display: flex;
    flex-direction: column;
}
.loc-map-cont-1 iframe {
    width:100%;
    min-height: 350px;
}
.loc-pg-dept-contact-info {
    padding-bottom:15px;
}
.loc-pg-dept-contact-info p {
    font-size: 20px;
    margin-bottom:5px;
}
.loc-pg-dept-contact-info a {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
	word-break: break-all;
}

/*===================== 
	slideshow styles 
=======================*/


/*===================== 
	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 {
	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: 15px;
    border:1px solid #000;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    background:#fff;
    border-radius: 0px;
}
.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;
	padding: 15px;
	font-family: 'Roboto Condensed', sans-serif; 
}
.form-info-cont p {
    font-size: 25px;
    padding:10px 0 5px 0;
}
select {
	margin:0;
	padding:0;
}
.form-inline .btn-red {
    max-width: 250px;
    width: 100%;
    display: block;
    margin: 20px auto;
}


.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1300px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1300px;
	margin: 0 auto;
	padding:50px 20px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	gap:0 1%;
}
.col-1-1 { width: 100%; box-sizing:border-box;}	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 19%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 32%; 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: 74%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
    width: 100%;
    position: relative;
    background:#282828;
	}
footer:before {
    content: "";
    background: #b6202c;
    height: calc(100% + 50px);
    width: calc(50% - 650px);
    position: absolute;
    min-width: 15px;
}
footer .container-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:70px 20px 50px 40px;
    gap:20px;
}	
.foot-nav-cont-1 h5 {
    font-family: 'Roboto Condensed', sans-serif; 
    color:#fff;
    font-size:24px;
    font-weight: 300;
}
.foot-nav-cont-1 h5 span {
    font-weight: 600;
}
.foot-nav-cont-1 ul {
    padding:10px 0;
    margin:0;
}
.foot-nav-cont-1 ul li {
    padding:0;
    margin:0;
    list-style: none;
    line-height: 1.5;
}
.foot-nav-cont-1 ul li a {
    font-family: 'Roboto Condensed', sans-serif; 
    color:#fff;
    font-size:18px;
    font-weight: 400;
    transition: all 0.2s ease-in 0s;
}
.foot-nav-cont-1 ul li a:hover {
    opacity: 0.7;
}
.foot-nav-cont-1 ul li .clickopen i {
        transform: rotate(180deg)
}
.foot-nav-cont-1 ul ul li {
    padding:0 0 0 10px;
    margin:0;
    list-style: none;
}
.foot-nav-cont-1 a img {
    max-width: 100%;
    width:auto;
    height: auto;
    display: block;
    margin:10px 0;
    transition: all 0.2s ease-in 0s;   
}
.foot-nav-cont-1 a img:hover {
    opacity: 0.7;
}
.foot-bottom-1 {
    padding:60px 20px;
    width:100%;
    background:#efeeee;
    box-sizing: border-box;
}
.foot-bottom-1 p {
    font-family: 'Roboto Condensed', sans-serif; 
    color:#282828;
    font-size:14px;
    font-weight: 400;
    text-align: center;
}
.foot-bottom-1 p a {
    color:#282828!important;
    transition: all 0.2s ease-in 0s;   
}
.foot-bottom-1 p a:hover {
    opacity: 0.7;
}

/* scroll to top style */
.invpage .scrollToTop-1 {
    display: none!important;   
}
.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)
}



/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1460px)  {
    .head-logo-1 {
      max-width: 200px;
    }
    .head-logo-1 p {
        font-size: 19px;
    }
    .head-logo-1 p span {
        font-size: 13px;
    }
    .head-brands img {
        max-width: 120px;
    }
    .head-center {
        width: calc(100% - 275px);
    }
    nav.primary ul li a {
        font-size: 1.1vw;
        padding:10px .5vw;
    }
}
@media screen and (max-width: 1200px)  {

	/*==============================
		Mobile Nav Styles			
	================================*/	
    .head-nav {
        display: flex;
        gap: 20px;
        align-items: center;
    }
    
	nav.primary{display:none;}
	#menu-button {
		display: block;
	}
	.menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#fff;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#fff;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#fff;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #000;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
	}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		display: flex;
        justify-content: flex-end;
        padding:10px;
        width:100%;
        box-sizing: border-box;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		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;
	}
	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 {
		
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
        font-weight: 500;
		font-size:17px;
		padding: 15px;
		color: #fff;
		text-decoration: none;
		border-left:4px #333 solid;
	}
    nav.mobile ul li a i {
        transition: .2s ease-in;
    }
    nav.mobile ul li .click {
        width:100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }
    nav.mobile ul li .clickopen i {
        transform: rotate(180deg)
    }
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
		border-left:4px #b6202c solid; /* border highlight - Change to fit match site colors */
	}
    /* SECOND LEVEL */
	nav.mobile ul ul li a {
		background:rgba(255,255,255,0.3); 
		padding: 15px 20px;
	}
    nav.mobile ul ul li a:hover {
		background:rgba(255,255,255,0.4); 
	}
    .col-1-2 {
        width:100%;
    }
    .loc-map-cont-1 {
        padding-top:40px;
    }

}
@media screen and (max-width: 1050px)  {
    .col-1-5 {
        width:24%;
    }
    .col-1-4 {
        width:32%;
    }
}

@media screen and (max-width: 920px)  {
        .col-1-4, .col-1-3 {
            width:49%;
        }
      .head-logo-1 {
        max-width: 100%;
          width:50%;
      }
    .head-center {
        width:50%;
        padding:0 15px;
        gap:20px;
    }
    .top-nav {
        display: none;
    }
    .head-brands {
        margin:0 auto;
    }
    .header-search-cont {
        width:100%;
        padding:0;
        background:none;
    }
    .header-search-cont .searchshow {
      display: none;
    }
    .header-search {
        position: static;
        display: block!important;
        padding:0;
    }
    .header-search form {
        max-width: 100%;
    }
    .header-search form button {
        background:#b6202c;
        color:#fff;
    }
    .wrap-hero {
        background-image: linear-gradient(90deg,rgba(0,0,0,0.35) 0%,rgba(0,0,0,0.35) 47.15%,rgba(0,0,0,0.35) 100%), url(../siteart/hero-bg-c-v-1.jpg);
        justify-content: center;
        height: auto;
        min-height: 100%;
    }
    .hero-overlay-1 {
        padding:50px 20px;
    }
    .hero-overlay-1 form {
        display: none;
    }
    .mobile-only {
      display: block;
    }
    .wrap-service .container-1 a {
        width:30%;
    }
    .cat-slider .slick-dots, .brand-slider .slick-dots {
        display: flex!important;
    }
    .cat-slider .slick-prev, .cat-slider .slick-next, .brand-slider .slick-prev, .brand-slider .slick-next {
        display: none!important;
    }
    .location-flex-cont-1 {
        border-right: 0px;
    }
    .location-tab {
      width: 100%;
    }
    .location-tab .slick-list {
      height: auto;
    }
    .location-tab .slick-track {
      flex-direction: row;
      height: auto;
      flex-wrap: wrap;
    }
    .location-tab p {
        font-size: 18px;
    }
    .location-tab .slick-current p {
      border-right: 1px solid #282828;
    }
    .location-tab .slick-slide {
      width: 25% !important;
    }
    .location-info {
        width: 100%;
        border-left: 1px solid #282828;
        border-right: 1px solid #282828;
    }
    .col-1-5 {
        width:32%;
    }
    
    
}
@media screen and (max-width: 640px)  {
    
    .hero-overlay-1 h1 {
        font-size: 13vw;
        line-height: 10vw
    }
    .hero-overlay-1 h1 span {
        font-size: 7.3vw;
    }
    .red-search-btn {
        font-size: 18px;
    }
    .wrap-service .container-1 {
        padding-top:40px;
    }
    .wrap-service .container-1 a {
        width:48%;
    }
    .location-flex-cont-1 {
        max-height: 100%;
        min-height: 100%;
    }
    .location-slide-info {
        width: 100%;
        border-right: 0px solid #282828;
        border-bottom: 1px solid #282828;
    }
    .location-slide-info-col-1 {
      max-width: 100%;
    }
    .location-slide-map {
        width: 100%;
        border-bottom: 1px solid #282828;
    }
    .location-tab .slick-slide {
        width: 50% !important;
      }
    .col-1-4, .col-1-3 {
        width:100%;
    }
    .parts-col-img-1 {
        width:100%;
    }
    .parts-col-info-1 {
        width:100%;
    }
    .col-1-5 {
        width:49%;
    }
}
@media screen and (max-width: 480px)  {
   
    .location-tab p {
        font-size: 16px;
    }

    .loc-btn-cont-1 .btn-red {
        width:100%;
    }
    .footer .container-1 {
        flex-direction: column;
    }
    .foot-nav-cont-1 {
        max-width: 250px;
        width:100%;
        margin: 0 auto;  
    }
    .foot-links {
        display: none;
    }
    .col-1-5 {
        width:100%;
    }
}



	
