﻿/*===================== 
	Color information
	
red #90072b
grey #d2cecf
light grey #f3f3f3
		 
=======================*/
/*===================== 
	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: 24px;
        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;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		} 
.btn-red {
    border:0px; 
    padding:0;
    position: relative;
    min-width: 200px;
    display: inline-block;
}
.btn-red:after {
    content: " ";
    width: 30px;
    height: 100%;
    border: 4px solid #fff;
    position: absolute;
    top: -4px;
    right: -4px;
    transition: .2s ease-in;
    display: inline-block;
    box-sizing: content-box;
}
.btn-red p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    background:#90072b;
    position: relative;
    text-align: center;
    padding:10px!important;
    font-size: 20px;
    color:#fff;
    box-sizing: border-box;
    border:0px;
    cursor: pointer;
    z-index: 1;
    transition: .2s ease-in;
}
.btn-red:hover p {
    background:#fff; 
    color:#90072b;
}
.btn-red:hover:after {
   width:100%;
}
.btn-white {
    border:0px; 
    padding:0;
    position: relative;
    min-width: 200px;
    display: inline-block;
    margin:10px 0;
}
.btn-white:after {
    content: " ";
    width: 30px;
    height: 100%;
    border: 4px solid #90072b;
    position: absolute;
    top: -4px;
    right: -4px;
    transition: .2s ease-in;
    display: inline-block;
	box-sizing:revert;
}
.btn-white p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    background:#fff;
    position: relative;
    text-align: center;
    padding:10px!important;
    font-size: 20px;
    color:#90072b;
    box-sizing: border-box;
    border:1px solid #90072b;
    cursor: pointer;
    z-index: 1;
    transition: .2s ease-in;
    line-height: 1;
}
.btn-white:hover p {
    color:#000;
}
.btn-white:hover:after {
   width:100%;
}
.show-mobile {
    display: none;
}


/*===================== 
	header styles 
=======================*/

.head-search {
  display: none;
  background: rgba(0,0,0,0.6);
  width: 100%;
  padding: 20px 0;
}

.header-overlay .header-wrap {
	position: absolute;
    top:0;
    left:0;
    background:rgba(255,255,255,0.8);
}

.header-wrap {
	width: 100%;
	margin: 0;
    background:#f3f3f3;
	}

header {
	margin: 0 auto;
	max-width: 1300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.head-logo-1 {
    background:#fff;
    padding:15px;
    box-sizing: border-box;
}
.head-logo-1 img {
	max-width: 100%;
    width:100%;
	height: auto;
	display: block;
}
.head-info-cont {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    width:calc(100% - 300px);
    padding-top: 5px;
}
.head-contact {
    padding: 0;
    margin:0;
    display: flex;
    justify-content: flex-end;
}
.head-contact li {
    padding: 0 10px;
    margin:0;
    list-style: none;
}
.head-contact li a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color:#000;
    display: flex;
    align-items: center;
    gap:5px;
    transition: .2s ease-in;
}
.head-contact li a:hover {
    color:#90072b;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;} 

nav.primary {
	padding:0;
	display:block;
	margin:0;
	width:100%;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
            transition: .2s ease-in;
			}
			nav.primary ul li a {
                font-family: 'Roboto Condensed', sans-serif;
				color: #90072b;
				font-size: 17px;
				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.search-ico:hover {
                background:rgba(0,0,0,0)!important;
            }
            nav.primary ul li.search-ico:hover a {
                color:#000;
                
            }
			nav.primary ul li:hover {
				background: #90072b;
				}
            nav.primary ul li:hover a {
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px;
				color:#fff!important;
                font-weight: 400;
				background: #90072b;
				display: block;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover {
               background: #000; 
                color:#fff!important;
			}
/* 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 
=======================*/

.wrap-hero {
    width:100%;
    height: calc(100vh - 190px);
    background-image:url("../siteart/hero-627-img-1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.hero-overlay{
    background:rgba(0,0,0,0.6);
    width:90%;
    padding:50px 20px;
    box-sizing: border-box;
}
.hero-header {
    color:#fff;
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    padding:0 0 40px 0;
}
.search-header {
    color:#fff;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}
.search-cont {
    width:100%;
    padding:40px 0 20px 0;
}
.search-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width:100%;
}
.search-flex .keyword {
    font-family: 'Roboto Condensed', sans-serif;
    width:calc(100% - 280px)!important;
    background: #fff!important;
    font-size: 20px!important;
    font-weight: 400!important;
    border:0px!important;
    padding:10px!important;
    box-sizing: border-box!important;
    outline:none!important;
    height: auto!important;
    display: block!important;
    line-height: normal!important;
    border-radius: 0px!important;
}
.search-flex .btn-red {
    max-width: 260px;
    min-width: auto;
    width:100%;       
}
.wrap-sub-cat {
    background:#90072b;
    width:100%;
}
.wrap-sub-cat .container-1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:8%;
}
.wrap-sub-cat a {
    margin:20px 0;
    transition: .2s ease-in;
}
.wrap-sub-cat a img {
    max-width: 100%;
    width:100%;
    height: auto;
    display: block;
}
.wrap-sub-cat a p {
    text-align: center;
    padding:15px 0 0 0;
    font-size: 16px;
    color:#fff;
}
.wrap-sub-cat a:hover {
    opacity: 0.7;
}
.wrap-about {
    width:100%;
    position: relative;
    padding:80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.wrap-about:after {
    background:#f3f3f3;
    height: 100%;
    width:calc(50% + 550px);
    position: absolute;
    right:0;
    top:0;
    content:"";
}
.cont-bg-1 {
    width:calc(50% - 60px);
    height: 400px;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.about-info-1 {
    max-width: 610px;
    padding: 10px 10px 10px 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.about-info-1 h1 {
    font-size: 45px;
    font-weight: 700;
    color:#000;
}
.about-info-1 h1 span {
    font-weight: 300;
    color:#90072b;
}
.about-info-1 h2 {
    font-size: 45px;
    font-weight: 700;
    color:#000;
}
.about-info-1 h2 span {
    font-weight: 300;
    color:#90072b;
}
.copy-cont-1 {
    line-height: 1.5;
    padding:20px 0;
}
.copy-cont-1 a {
    font-weight: 700;
    transition: .2s ease-in;
}
.copy-cont-1 a:hover {
    color:#90072b;
}

.wrap-parts {
    width:100%;
    position: relative;
    padding:80px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;   
}
.wrap-parts:after {
    background:#d2cecf;
    height: 100%;
    width:calc(50% + 550px);
    position: absolute;
    left:0;
    top:0;
    content:"";
}
.parts-info-1 {
    max-width: 610px;
    padding: 10px 50px 10px 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.parts-info-1 h2 {
    font-size: 36px;
    font-weight: 700;
    color:#000;
}
.parts-info-1 h2 span {
    font-weight: 300;
}
.wrap-contact {
    background-image: url("../siteart/home-bg-3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:100%;
    position: relative;
}
.contact-info-1 {
    width:100%;
    padding:180px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    background:rgba(0,0,0,0.6);
    box-sizing: border-box;
}
.contact-info-1 h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.contact-info-1 h2 span {
    font-weight: 300;
}
.contact-info-2 {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  box-sizing: border-box;
}
.contact-info-2 h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.contact-info-2 h2 span {
    font-weight: 300;
}
.contact-info-2 .copy-cont-1 {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.contact-info-1 .copy-cont-1 {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.contact-btn-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 500px;
    width:100%;
    padding:20px 0 0 0;
}
.contact-btn-cont-1 a {
    width:48%;
}

.wrap-content {
    width:100%;
    position: relative;
    padding:80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.wrap-content-1 {
    width:100%;
    position: relative;
    padding:40px 0;
    background:#d2cecf;
}
.wrap-content-2 {
    width:100%;
    position: relative;
    padding:40px 0;
    background:#f3f3f3;
}
.wrap-content-3 {
    width:100%;
    position: relative;
    padding:40px 0;
}
.wrap-content:after {
    background:#d2cecf;
    height: 100%;
    width:100%;
    position: absolute;
    right:0;
    top:0;
    content:"";
}
.cont-bg-1 {
    width:calc(50% - 60px);
    height: 400px;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.content-info-1 {
    max-width: 610px;
    padding: 10px 10px 10px 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.content-info-1 h1 {
    font-size: 45px;
    font-weight: 700;
    color:#000;
}
.content-info-1 h1 span {
    font-weight: 300;
    color:#90072b;
}
.content-info-1 ul {
    padding:15px 0;
    margin:0;
}
.content-info-1 ul li {
    padding:5px 0;
    margin:0;
    list-style: none;
    font-size: 24px;
    font-weight: 400;
    color:#000;
}
.content-info-1 ul li {
    padding:5px 0;
    margin:0;
    list-style: none;
    font-size: 24px;
    font-weight: 400;
    color:#000;
}
.content-info-1 .nav-2 ul li {
    padding:5px 0;
    font-size: 18px;
}
.content-info-1 ul li a {
    color:#000;
}
.content-info-1 ul li a:hover {
    color:#90072b;
}

.content-copy-1 h1 {
    font-size: 45px;
    font-weight: 700;
    color:#000;
}
.content-copy-1 h1 span {
    font-weight: 300;
    color:#90072b;
}

.content-copy-1 h2 {
    padding:20px 0 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700!important;
    color: #90072b;
}
.content-copy-1 h3 {
    padding:15px 0 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700!important;
}
.content-copy-1 h4 {
    padding:15px 0 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700!important;
}
.content-copy-1 p {
    padding-bottom:20px;
    font-family: 'Roboto Condensed', sans-serif;
}
.content-copy-1 ul {
    padding: 0 0 20px 30px;
}
.content-copy-1 ul li {
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
}
.content-copy-1 a {
    font-weight: 700;
    transition: .2s ease-in;
}
.content-copy-1 a:hover {
    color:#90072b;
}

/*----Parts Page------*/
.partscta{max-width:1100px; width:100%; padding:30px 20px 0 20px; margin:0 auto;display: flex;justify-content: space-between;gap:20px; align-items: center;}
.partscta p{text-align:left; font-weight:600;font-family: 'Roboto Condensed', sans-serif;}
.partscta .btn-white {
    margin:0 auto;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */

.form-info-cont h3 {
    font-size: 20px;
    color:#fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.6);
    padding:20px 0;
}


.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 {
    font-family: 'Roboto Condensed', sans-serif;
	width: 100%;
	display: block;
	padding: 10px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    border: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 {
    font-family: 'Roboto Condensed', sans-serif;
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
}

select {
	margin:0;
	padding:0;
}
.form-inline .button {
	color: #fff;
	font-size:20px;
	font-weight: 500; 
    display: block;
    padding: 10px;
	width: 40%;
    margin: 10px auto;
	-webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
	border: none;
    background: #891b1d;
	-webkit-appearance: none;
}


.CaptchaImage {
  max-width: 100%;
}
.CaptchaMessagePanel {
    color:#fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.6);
}
.CaptchaWhatsThisPanel a {color:#fff;text-shadow: 0 0 5px rgba(0,0,0,0.6);}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	animation styles 
=======================*/

.animate-cont {
    overflow: hidden;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}
.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

.load-right {
    animation: slide-in-right 1s ease-in-out both;
}
.load-left {
    animation: slide-in-left 1s ease-in-out both;
}
.load-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
}
.load-top {
    animation: fade-in-top 1s ease-in-out both;
}



/* ----------------------------------------------
 * Generated by Animista on 2021-2-11 23:32:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1100px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-2 {
	max-width: 650px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 100%;
	margin: 0 auto;
	padding:80px 10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	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 {
	margin: 0;
	width: 100%;
    background:#d2cecf;
	}
footer .container-1 {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-cont-1 {
    width:23%;
    padding:70px 0;
}
.nav-cont-1 h3 {
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    font-size: 20px;
    color: #90072b;
    font-weight: 700;
}
.nav-cont-1 h3 span {
    font-weight: 300;
}
.nav-cont-1 h3:after {
    position: absolute;
    content: "";
    background: #000;
    height: 4px;
    left: 0;
    bottom: -12px;
    max-width: 150px;
    width: 100%;
    display: block;
}
.nav-cont-1 ul {
    padding:30px 0 0 0;
    margin:0;
}
.nav-cont-1 ul li {
    padding:5px 0;
    margin:0;
    list-style: none;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
}
.nav-cont-1 ul li a {
    font-size: 16px;
    color:#000;
}
.nav-cont-1 ul li a:hover {
    color:#90072b;
}
.foot-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.foot-logo-1 img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}
.foot-contact {
    display: flex;
    gap:20px;
    justify-content: center;
    padding:25px 0 0 0;
    margin: 0;
}
.foot-contact li {
    padding:0;
    margin:0;
    list-style: none;
}
.foot-contact li a span {
    font-size: 40px;
    color:#000;
}
.foot-contact li a span:hover {
    color:#90072b;
}
.bottom-banner {
    width:100%;
    background:#90072b;
}
.bottom-banner p {
    padding:40px 20px;
    box-sizing: border-box;
    text-align: center;
    color:#d2cecf;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
}
.bottom-banner p a {
    color:#d2cecf;
}
.bottom-banner p a:hover {
    color:#fff;
}


/*========================== 
	  Responsive styles 
============================*/


@media screen and (max-width: 1260px)  {
    .hero-header {
        font-size: 3.5vw;
    }
    .search-header {
        font-size: 1.8vw;
    }
}
@media screen and (max-width: 1160px)  {
    nav.primary ul li a {
        font-size: 1.3vw;
    }
}
@media screen and (max-width: 1110px)  {
    .wrap-about::after, .wrap-parts::after {
      width: calc(100% - 50px);
    }
    .about-info-1, .parts-info-1, .content-info-1 {
      width:50%;
    }

    .head-contact li a {
        font-size: 14px;
    }

    .head-logo-1 img {
      max-width: 200px;
    }
    .head-info-cont {
      width: calc(100% - 250px);
    }
}
@media screen and (max-width: 900px)  {

    .head-contact li a {
        font-size: 12px;
    }
    .head-logo-1 img {
      max-width: 150px;
    }
    .head-info-cont {
      width: calc(100% - 180px);
    }
}

@media screen and (max-width: 850px)  {
    
    .show-mobile {
        display: block;
    }
    .hide-mobile {
        display: none;
    }
    
    .header-wrap, .header-overlay .header-wrap {
      background: #fff;
        position: static;
    }
    
    .hide-mobile {
        display: none;
    }
    .head-contact li a {
        font-size: 14px;
        color:#fff;
    }
    .head-logo-1 {
      margin: 0 auto;
    }
    .head-logo-1 img {
      max-width: 100%;
    }
    .head-info-cont {
        padding:10px;
        box-sizing:border-box;
        width: 100%;
        background:#90072b;
        display: flex;
        justify-content: space-between;
    }
    
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;}
	#menu-button{ 
		display: block;
		font-size: 24px;
		position: relative;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	}
		#menu-button a{
			 color:#fff;
			 text-decoration: none;
			 font-weight:normal;
		  }
	nav.mobile {
        display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #d2cecf;
		z-index: 500; 
		overflow:auto;
        box-shadow: 0px 10px 5px 1px rgba(0,0,0,0.2);
	}
	/* 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 {
		position:relative;
        text-align: center;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:18px;
		padding: 10px;
		color: #000;
        text-transform: uppercase;
        font-weight: 600;
		text-decoration: none;
	}
	nav.mobile ul li a:hover {
		background:#f3f3f3; 
		color: #90072b; 
	}

	/* 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:#1B1B1B; 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;}
    
    .wrap-hero {
        width: 100%;
        height: 80vw;
        background-image: url("../siteart/hero-bg-1.jpg");
        background-position: center -130px;
        background-repeat: no-repeat;
        min-height: 500px;
    }
    
    .hero-overlay {
      background: rgba(0,0,0,0.0);
      width: 100%;
      padding: 0;
    }
    .hero-overlay .container-1 {
        padding:0;
    }
    .hero-header {
        background: rgba(0,0,0,0.6);
        padding: 30px 10px;
        width: 90%;
        box-sizing: border-box;
        margin:0 auto;
        font-size: 6vw;
    }
    .search-header {
        display: none;
    }
    .search-cont {
        width: 100%;
        padding: 40px 20px;
        background:#000;
        box-sizing: border-box;
    }
    .search-flex .keyword {
      width: 100%;
      margin:20px auto;
    }
    .search-flex .btn-red {
      max-width: 100%;
      min-width: auto;
      width: calc(100% - 4px);
        margin:20px auto;
    }
    .nav-cont-1 {
        display: none;
    }
    .foot-info {
        margin:0 auto;
        padding:30px 20px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 740px)  {
    .col-1-2 {
        width:100%;
    }
    .wrap-about::after, .wrap-parts::after {
      width: calc(100% - 20px);
    }
    .cont-bg-1 {
      width: calc(100% - 40px);
      height: 250px;
        order: 2;
    }
    .about-info-1, .parts-info-1, .content-info-1 {
      width: 100%;
        order:1;
        padding-bottom:50px;
    }
    .contact-btn-cont-1 a {
      width: 100%;
        margin:20px auto;
    }
    .partscta{flex-wrap: wrap;}
    
}

	
