﻿/*===================== 
	Color information
	
	red #ba2126
    lt grey #CBCBCB
    grey #efefef
    dk grey #161415
		 
=======================*/
/*===================== 
	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: 'Bebas Neue', 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-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}
.font-red {
    color:#ba2126;
}

/*===================== 
	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;
		color: #ccc;
		}  

.link-1 {
    padding:15px 0;
    position: relative;
    display: inline-block;
    margin:10px 0;
    
}
.link-cont-1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.link-1:after {
    content:"";
    width:40%;
    position: absolute;
    left:0;
    top:0;
    border-top:4px solid #ba2126;
    transition: .4s ease-in;
}

.link-1 p {
    font-size: 20px;
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    padding:3px 10px 0 0;
    color:#000;
    transition: .2s ease-in;
}
.link-1 span {
    color: #ba2126;
    border: 2px solid #ba2126;
    border-radius: 20px;
    height: 22px;
    width: 22px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0 0 2px;
}
.link-1:hover p {
    color:#ba2126!important;
}
.link-1:hover:after {
    width:100%;
}

.anchor-1 {
    z-index: -100;
    transform: translateY(-250px);
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    padding:20px 0;
    background:#fff;
    border-bottom:4px solid #ba2126;
    position: sticky;
    top:0;
    z-index: 9000;
    transition: .2s ease-in;
	}
.header-wrap.stick {
    padding:5px 0;
    border-bottom:0px solid #ba2126;
	}

header {
	margin: 0 auto;
	width:97%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	}
.head-logo-1 img {
	max-width: 195px;
	height: auto;
	display: block;
}
.head-right {
    width:calc(100% - 200px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.head-info-links {
    display: flex;
    align-items: center;
}
.head-info-links ul {
    display: flex;
    align-items: center;
    padding:0;
    margin:0;
}
.head-info-links ul li {
    list-style: none;
    padding:0;
    margin:0;
}
.head-info-links ul li:last-child {
    margin-left:10px;
}
.head-info-links ul li a {
    font-family: 'Roboto Condensed', sans-serif;
    color: #000;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 8px;
    display: block;
    margin: 0;
    text-align: center;
    -webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
    font-weight: 500;
}
.head-info-links ul li a:hover {
    color: #ba2126;
}
.red-btn-link a {
    font-family: "Roboto",sans-serif;
    display: block;
    padding: 10px;
    text-transform: uppercase !important;
    color: #ba2126!important;
    font-weight: 700 !important;
    font-size: 17px;
    font-weight: 700;
    transition: .2s ease-in;
    border:1px solid #ba2126;
    margin-left:10px;
    text-align: center;
}
.red-btn-link a:hover {
    background-color: #ba2126;
    color: #fff!important;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
.mobile { display:none;}

nav.primary {
	padding:0;
	display:block;
	margin:0;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
        align-items: center;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
            position: relative;
			}
			nav.primary ul li a {
                font-family: 'Roboto Condensed', sans-serif;
				color: #000;
				font-size: 17px;
				text-decoration: none;
				padding: 15px 10px;
				display: block;
				margin: 0;
				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:#ba2126;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				padding:15px 20px;
				color:#000;
				background: #fff;
				display: block;
                border-left: #CBCBCB solid 1px;
                border-right: #CBCBCB solid 1px;
                border-bottom: #CBCBCB solid 1px;
                transition: .2s ease-in;
			}
            nav.primary ul li li a:first-child { 
				border-top: #CBCBCB solid 1px;
                position: relative;
			}
            nav.primary ul li li:first-child a:before { 
				bottom: 100%;
                left: 24px;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                border-color: rgba(203,203,203,0);
                border-bottom-color: #CBCBCB;
                border-width: 14px;
			}
            nav.primary ul li li:first-child a:after { 
				bottom: 100%;
                left: 25px;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                border-color: rgba(255,255,255,0);
                border-bottom-color: #fff;
                border-width: 13px;
                transition: .2s ease-in;
            }
            nav.primary ul li li:first-child:hover a:after { 
                border-bottom-color: #ba2126;
            }

			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                background:#ba2126;
                color:#fff;
			}
            .head-search-ico {
                font-size: 20px!important;
            }
            nav.primary ul ul.nav-form {
                left: -20px;
                display: block;
            }
            .nav-form li {
				background: #fff;
				display: block;
                border: #CBCBCB solid 1px;
                display: flex;
                position: relative;
                width:300px;
            }
            .nav-form li:before { 
				bottom: 100%;
                left: 24px;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                border-color: rgba(203,203,203,0);
                border-bottom-color: #CBCBCB;
                border-width: 14px;
			}
            .nav-form li:after { 
				bottom: 100%;
                left: 25px;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                border-color: rgba(255,255,255,0);
                border-bottom-color: #fff;
                border-width: 13px;
                transition: .2s ease-in;
            }
            .nav-form li input[type="text"] {
                padding: 12px 30px;
                color:#000;
                font-family: 'Roboto Condensed', sans-serif;
                font-size:17px;
                border:0px!important;
                outline:none;
                width:calc(100% - 70px);
                box-sizing: border-box;
            }
                .nav-form li input[type="submit"] {
                padding: 12px 20px;
                color:#fff;
                background:#ba2126;
                font-family: 'Roboto Condensed', sans-serif;
                font-size:17px;
                border:0px!important;
                outline:none;
                    cursor: pointer;
            }
            .nav-form li input[type="submit"]:hover {
                background:#161415;
            }

/* 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-home-search {
    background:#000;
}
.wrap-home-search .container-1 {
    padding:0px 10px;
}
.home-search-fields {
    width:81%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.home-search-col-1 {
    width:23%!important;
}
.home-search-col-2 {
    width:17%!important;
}
.home-search-col-2 button {
    background:#ba2126;
    color:#fff;
    font-size: 28px;
    border:0px;
    outline:none;
    border-radius: 0px;
    padding:50px 10px;
    text-align: center;
    width:100%;
    box-sizing: border-box;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    transition: .2s ease-in;
}
.home-search-col-2 button:hover {
    background-color: #efefef;
    color: #ba2126;
}
.wrap-content {
    width:100%;
    height: auto;
    padding:80px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.finance-bg {
    background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.0) 100%), url("../siteart/bg-image-financing.jpg");
    background-position: center;
}
.inv-bg {
    background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.0) 100%), url("../siteart/bg-image-inv.jpg");
    background-position: center 20%;
}
.warranty-bg {
    background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.0) 100%), url("../siteart/bg-image-warrenty.jpg");
    background-position: center;
}
.prefered-bg {
    background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.0) 100%), url("../siteart/bg-image-prefered.jpg");
    background-position: center;
}
.about-bg {
    background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.0) 100%), url("../siteart/bg-image-about.jpg");
    background-position: center;
}
.wrap-content .lg-txt {
    color:#fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    text-shadow: 0 0 10px rgba(0,0,0,1.0);
}
.wrap-content .sml-txt {
    color:#fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0,0,0,1.0);
    max-width: 500px;
}
.content-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 70px 0 180px 0;
}
.content-info-1 {
    width:45%;
    position: relative;
}
.content-info-2 {
    width:55%;
    position: relative;
}
.content-info-head {
    position: absolute;
    left:0;
    bottom:100%;
    padding:0 20px;
    box-sizing: border-box;
}
.content-info-head img {
    display: block;
    max-width: 100%;
    height: auto;
}
.content-info-head h2 {
    font-size: 40px;
    color:#ba2126;
}
.content-grey-cont-1 {
    background: #efefef;
    padding: 40px;
    box-sizing: border-box;
    height: calc(100% - 35px);
    margin: 35px -15px 0 -15px;
    position: relative;
    z-index: 1;
}

.content-grey-cont-1 h2 {
    padding:0 0 20px 0;
}
.content-grey-cont-1 h3 {
    font-family: 'Roboto Condensed', sans-serif;
}
.content-grey-cont-1 ul {
    padding:15px 0 10px 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-grey-cont-1 ul li {
    width:48%;
    box-sizing: border-box;
   font-size: 18px; 
    font-family: 'Roboto Condensed', sans-serif;
}


.content-image {
    width:55%;
    background-size: cover;
    background-position: center;
}

.content-image-2 {
    width:45%;
    background-size: cover;
    background-position: center;
}


/*===================== 
	inventory page styles 
=======================*/
.container-inv {
	max-width: 1256.25px;
	margin: 0 auto;
	padding:150px 10px 50px 10px;
	box-sizing: border-box;
	}

.inv-banner {
/*
    margin-top: 100px !important;
    margin-bottom: -5vw;
*/
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    height: 250px;
    width: 80% !important;
    border-radius: 20px;
    transition: 0.3s ease all;
    overflow: visible !important;
}
.pfc-card {
    transition: 0.3s ease all;
}
.pfc-card:hover {
    transform: scale(1.1) rotate(5deg);
    transition: 0.3s ease all;
}
.slide-banner-cont-2 {
    width:100%;
    max-width: 1250px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    background-image: url("../siteart/geometric-background.jpg");
    background-position: center center;
    object-fit: cover;
/*    background-color: rgba(0, 0, 0, 0.6);*/
    background-blend-mode: multiply;
    z-index: 999;
}
.slide-banner-cont-2 > .slide-banner-col-2 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    font-family:'KenworthSans', 'Kanit', sans-serif !important;
    color: #000;
    padding: 30px 60px;
    box-sizing: border-box;
/*    background-image: linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(255,255,255,1.00) 28.50%,rgba(255,255,255,1.00) 100%);   */
    display: flex;
    align-items: center;
}
.slide-banner-cont-2 > .slide-banner-col-2 p {
    font-family:'KenworthSans', 'Kanit', sans-serif !important;
}
.slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white {
    font-family:'KenworthSans', 'Kanit', sans-serif !important;
    margin-top: 20px !important;
}

.slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white:hover {
    color: #FFF !important;
    background-color: #d0202d;
}
.pfc-logo {
    width: 100%;
    max-width: 400px !important;
    height: auto;
}
.slide-banner-cont-2 > .slide-banner-img-col-2 img {
    max-width: 100%;
    height: 200px;
    display: block;
    margin-right: 50px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px;
    padding: 0;
    box-sizing: inherit;
}
.slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white {
    font-family: 'KenworthSans', 'Kanit', sans-serif !important;
    margin-top: 20px !important;
    color: #d0202d !important;
    border: 1px solid #d0202d;
    background-color: transparent
}

.btn-white {
    display: inline-block;
    padding: 12px 32px!important;
    border: 2px solid #ba2126!important; /* Red thin border */
    border-radius: 50px!important; /* Pill shape */
    color: #ba2126!important; /* Red text */
    background-color: transparent!important;
    text-decoration: none!important;
    font-weight: 600!important;
    text-transform: uppercase!important;
    transition: all 0.3s ease; /* Smooth transition on hover */
    cursor: pointer;
}

.btn-white:hover {
    background-color: #ba2126!important; /* Red background fill */
    color: #ffffff!important; /* White text */
}

@media screen and (max-width: 950px) {
    .inv-banner {
        width: 100% !important;
        padding: 0;
        margin: 0;
    }
    .slide-banner-cont-2 > .slide-banner-img-col-2 {
        display: none;
    }
    .slide-banner-cont-2 > .slide-banner-col-2 {
        width: 100%;
        background-image: none;
/*        color: #fff;*/
        padding:0 20px;;
    }
/*
    .slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white {
        margin-top: 20px !important;
        color: #fff !important;
        border: 1px solid #fff;
        background-color: transparent;
    }
    .slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white:hover {
        color: #d0202d !important;
        background-color: #fff;
    }
    .pfc-logo {
        filter: brightness(0) invert(1);
    }
*/
}


/*===================== 
	slideshow styles 
=======================*/

.wrap-slider {
    width:100%;
    height: auto;
    overflow: hidden;
}
.slider-hero {
    font-family: 'Bebas Neue', sans-serif;
    height: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 60vh;
    max-height: 35vw;
    min-height: 400px;
}
.hero-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width:100%;
    height: 60vh;
    max-height: 35vw;
    min-height: 400px;
}
.hero-slide-overlay {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 5% 0 0 0;
    box-sizing: border-box;
    background-image: linear-gradient(118deg,rgba(0,0,0,0.95) 0%,rgba(0,0,0,0.00) 60%);    
}
.hero-slide-cont {
    max-width: 1400px;
    width:100%;
    padding:20px;
    box-sizing: border-box;
    margin:0 auto;
}
.hero-slide-cont .lg-txt {
   font-family: 'Bebas Neue', sans-serif;
    color:#fff;
    font-size: 60px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0,0,0,1.0), 0 0 40px rgba(0,0,0,0.7);
}
.hero-slide-cont .link-1 p {
    font-size: 25px;
    padding: 3px 10px 0 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,1.0), 0 0 40px rgba(0,0,0,0.7);
}
.hero-slide-cont .link-1 span {
    border-radius: 20px;
    height: 30px;
    width: 30px;
    font-size: 20px;
    padding: 0 0 0 2px;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
    text-shadow: 0 0 10px rgba(0,0,0,1.0), 0 0 40px rgba(0,0,0,0.7);
}

.wrap-model-slider {
    width:100%;
    height: auto;
    padding-bottom:120px;
}
.slider-model-cont-1 {
    width:97%;
	margin: 0 auto;
	padding:0 10px;
	box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 200;
}

.slider-model {
    width:calc(100% - 255px);
    padding:0 20px;
    box-sizing: border-box;
    margin-top:-50px;
    overflow: hidden;
}
.model-slide-1 {
   width:23%;
    height: auto;
    display: inline-block;
}
.slider-model .slick-track {
    display: flex;
    overflow: hidden;
}
.slider-model .slick-list {
    padding: 0 0px 0 25% !important;

}
.slider-model .slick-slide {
    padding:0 10px;
    box-sizing: border-box;
}

.slick-prev {
    position: absolute;
    left:0px;
    top:40%;
    font-size: 30px;
    cursor: pointer;
    transition: .2s ease-in;
}
.slick-next {
    position: absolute;
    right:0px;
    top:40%;
    font-size: 30px;
    cursor: pointer;
    transition: .2s ease-in;
}
.slick-next, .slick-prev {
    opacity: 0.8;
}

.slider-model .slide-model-slide {
    background:#efefef;
    padding:5px 20px;
    box-sizing: border-box;
    text-align: center;
    border:4px solid #efefef;
}
.slider-model .slick-current .slide-model-slide {
    background:#fff;
    border:4px solid #ba2126;
}
.slider-model a img {
    max-width: 250px;
    width:100%;
    height: auto;
    display: block;
    margin:0 auto;
    transition: .2s ease-in;
}
.slider-model a p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size:18px;
    font-style: italic;
    letter-spacing: 8px;
    font-weight: 800;
    text-align: center;
    transition: .2s ease-in;
}
.slider-model a p:last-child {
    font-size: 55px;
    font-weight: 800;
    letter-spacing: normal;
    padding-bottom: 10px;
    padding:0 2px 0 0;
    box-sizing: border-box;
}
.slider-model a:hover img {
    filter: grayscale(100%);
}
.slider-model a:hover p {
    color:#ba2126;
}
.all-model-cont-1 {
    width: 250px;
    border-left: 1px solid #efefef;
    box-sizing: border-box;
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.all-model-cont-1 .sml-txt {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #000;
    transition: .2s ease-in;
}
.all-model-cont-1 h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color:#ba2126;
    line-height: 1;
    transition: .2s ease-in;
}
.all-model-link {
    display: flex;
}

.all-model-link p {
    font-size: 20px;
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    padding:3px 10px 0 0;
    color:#000;
    transition: .2s ease-in;
}
.all-model-link span {
    color: #ba2126;
    border: 2px solid #ba2126;
    border-radius: 20px;
    height: 22px;
    width: 22px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0 0 2px;
}

.all-model-cont-1:hover .sml-txt, .all-model-cont-1:hover .all-model-link p   {
    color: #ba2126;
}
.wrap-promo {
    width:100%;
    padding:150px 0 200px 0;
    margin:0;
}
.slider-promo {
    width:100%;
}
.promo-slide {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.promo-info {
    width:40%;
    display: flex;
    flex-direction: column;
}
.promo-info img {
    max-width: 100%;
    display: block;
    padding:0 10px 20px 0;
    box-sizing: border-box;
}
.promo-info .header-txt {
   font-family: 'Bebas Neue', sans-serif;
    font-size: 3.7vw;
}
.promo-info-txt {
    background:#efefef;
    padding:20px 10%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.promo-info-txt .sml-txt {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.0vw;
    font-weight: 300;
    color:#595959;
}
.promo-info-txt .lg-txt {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.3vw;
    font-weight: 700;
}

.promo-image {
    width:60%;
}
.promo-image img {
    width:100%;
    display: block;
    object-fit: cover;
    height: 55vh;
    max-height: 33vw;
    min-height: 400px;
}

.slider-promo .slick-prev {
    position: absolute;
    left:0px;
    right:auto;
    bottom:-77px;
    top:auto;
    font-size: 30px;
    cursor: pointer;
    transition: .2s ease-in;
}
.slider-promo .slick-next {
    position: absolute;
    left: calc(40% - 20px);
    right:auto;
    bottom:-77px;
    top:auto;
    font-size: 30px;
    cursor: pointer;
    transition: .2s ease-in;
}
.slick-next, .slick-prev {
    opacity: 0.8;
}

/* Dots */
.slider-hero .slick-dots {
    position: absolute;
    right:1.5%;
    bottom:80px;
    display: flex;
    justify-content: flex-end;
    gap:3%;
    z-index: 300;
    width:30%;
    padding:0;
    margin:0;
}
.slider-hero .slick-dots li
{
    position: relative;
    flex-grow: 1;
    height: 8px;
    padding: 0;
    cursor: pointer;
    list-style: none;
    background:rgba(255,255,255,0.4);
    transition: .2s ease-in;
}
.slider-hero .slick-dots li:hover
{
    background:rgba(255,255,255,0.6);
}

.slider-promo .slick-dots {
    position: absolute;
    left:40px;
    bottom:-60px;
    display: flex;
    justify-content: flex-end;
    gap:3%;
    z-index: 300;
    width: calc(40% - 80px);
    padding:0;
    margin:0;
}
.slider-promo .slick-dots li
{
    position: relative;
    flex-grow: 1;
    height: 8px;
    padding: 0;
    cursor: pointer;
    list-style: none;
    background:rgba(0,0,0,1);
    transition: .2s ease-in;
}
.slider-promo .slick-dots li:hover
{
    background:rgba(0,0,0,0.8);
}


.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active
{
    flex-grow: 3;
}

/*===================== 
	Form styles 
=======================*/

/* Containers */

.form-cont-1 p {
  padding: 10px 0 10px 0;
}
.radio-cont {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 50px 0 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;
}
.radio-cont label {
   font-size: 20px; 
    font-family: 'Roboto Condensed', sans-serif;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 20px 14px;
	font-size: 20px;
	margin:  10px 0;
	box-sizing: border-box;
    background:#fff;
    border: 1px solid #CBCBCB;
    font-family: 'Roboto Condensed', sans-serif;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Roboto Condensed', sans-serif;
}

select {
	margin:0;
	padding:0;
}
.form-inline .button {
	color: #fff;
	font-size:20px;
	font-weight: 500; 
    display: block;
    padding: 10px;
	width: 100%;
    max-width: 200px;
    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: #ba2126;
	-webkit-appearance: none;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
}


.form-inline .button:hover {
    background: #000;

}

.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/*===================== 
	search styles 
=======================*/



/*  SEARCH SLIDER BARS
------------------------------------------------*/
.noUi-target{position:relative; direction:ltr}
.noUi-origin{position:absolute; right:0; top:0; left:0; bottom:0; border-radius:2px;}
.noUi-handle{position:relative; z-index:1}
.noUi-marker, .noUi-pips, .noUi-tooltip, .noUi-value{position:absolute;}
.noUi-horizontal{height: 12px; z-index: 0}
.noUi-horizontal .noUi-handle{width: 25px; height: 21px; left: -13px; top: -6px}
.noUi-horizontal .noUi-handle-upper {top: -5px;}
.noUi-background{background: #ccc;}
.noUi-connect{border: 1px #212121 solid; background:#d0202d !important;}
.noUi-target{width:calc(100% - 30px); margin: 15px auto; /*margin: 15px auto 15px 0;*/}
.noUi-handle{position: relative; z-index: 1; background: #e6e7e8 !important; border: 1px solid #212121; border-radius: 3px;}
.noUi-handle:after, .noUi-handle:before{content:""; display: block; position: absolute; height: 12px; width: 1px; background: #212121; left: 10px; top: 3px}
.noUi-handle:after{left: 12px}
.noUi-pips-horizontal{padding: 5px 0; height: 10px; top: 100%; left: 0; width: 100%}
.noUi-marker-horizontal.noUi-marker{margin-left: -1px; width: 1px; height: 5px; background:#777;}
.example-val p{font-size:12px; font-weight:700; color:#fff; font-family: "Roboto Condensed", sans-serif;}
.example-val p span{font-weight:400;}
#slider-price-value-lower:before, #slider-price-value-upper:before{content:'$'; padding-right:2px;}



/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	width:97%;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-2 {
	max-width: 1500px;
	margin: 0 auto;
	padding:10px 30px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1500px;
	margin: 0 auto;
	padding:50px 30px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.flex-cont-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	}
.foot-top {
    background:#161415;
}
.foot-top-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:60px 10%;
    border-bottom: 1px solid #cbcbcb;
}
.foot-top-col-1 {
    width:35%;
}
.foot-top-col-1 .lg-txt {
    color:#fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size:55px;
    text-transform: uppercase;
}
.foot-top-col-2 {
    width:63%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.foot-ico {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.foot-ico span {
    width:110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
    border:1px solid #ba2126;
}
.foot-ico span img {
    max-width: 100%;
    height: auto;
    display: block;
}
.foot-ico p {
    font-family: 'Roboto Condensed', sans-serif;
    color:#fff;
    font-weight:700;
    font-size: 22px;
    padding:10px 0 0 0;
}
.foot-ico:hover span {
    background:#ba2126;
}
.foot-ico:hover p {
    color:#ba2126;
}
.foot-top-cont-2 {
   display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:60px 10%;
}
.foot-top-col-1 .sml-txt {
    color:#fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size:45px;
    text-transform: uppercase;
}
.foot-top-social {
    width:63%;
    display: flex;   
    gap:1%;

}
.foot-top-social a {
    font-size:40px;
    color:#ba2126;
    width:80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
    border:1px solid rgba(186,33,38,0.00);
}
.foot-top-social a:hover {
    border:1px solid rgba(186,33,38,1.00);
}

.foot-mid {
   background:#fff;
    padding:50px 0;
    border-bottom: 1px solid #cbcbcb;
}
.foot-mid-cont-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding:0 10%;
}
.foot-logo-1 {
    width:35%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.foot-logo-1 img {
    max-width: 100%;
    height: auto;
    display: block;
}
.foot-nav {
    width:63%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.foot-nav-col-1 {
    width:33.33%;
}
.foot-nav-col-2 {
    width:66.66%;
    display: flex;
    flex-wrap: wrap;
}
.foot-nav ul {
    padding:0 0 0 20px;
    margin:0;
    box-sizing: border-box;
    border-left: 1px solid #cbcbcb;
}
.foot-nav .foot-nav-col-2 ul {
    width:50%;
}
.foot-nav ul li {
    padding:10px;
    margin:0;
    list-style: none;
}
.foot-nav ul li a {
    font-family: 'Bebas Neue', sans-serif;
    padding:0;
    margin:0;
    font-size:18px;
    color:#000;
}
.foot-nav ul li a:hover {
    color:#ba2126;    
}
.foot-bottom {
    width:100%;
    background:#fff;
    padding:30px 0;
}
.foot-bottom-cont-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:0 10%;
}
.foot-bottom ul {
    display: flex;
    flex-wrap: wrap;
    padding:0;
    margin:0;
}
.foot-bottom ul li {
    font-family: 'Roboto', sans-serif;
    padding:15px 25px;
    margin:0;
    list-style: none;
    font-size: 16px;
    color:#595959;
    border-right: 1px solid #cbcbcb;
}
.foot-bottom ul li:last-child {
    border-right: 0px solid #cbcbcb;
}
.foot-bottom ul li a {
    color:#595959;
}
.foot-bottom ul li a:hover {
    color:#ba2126;
}
.foot-bottom ul li a img {
    max-width: 100%;
    height: auto;
    display: block;
}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1450px)  {
    .head-right {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .head-info-links {
        order:1;
        padding-bottom:10px;
    }
    nav.primary {
      margin: 0;
        order:2;
    }
    nav.primary ul ul.nav-form {
      left: auto;
      right: 0;
    }
    .nav-form li::after {
       left:auto;
        right:5px;
    }
    .nav-form li::before {
       left:auto;
        right:4px;
    }
    
}


@media screen and (max-width: 1300px)  {

    .hero-slide-cont .lg-txt {
        font-size: 6.8vw;
    }
    .slider-hero .slick-dots {
      bottom: 50px;
    }
        .slider-model {
      margin-top: -20px;
    }
    .home-search-col-1 {
      width: 48% !important;
        margin:10px 0;
    }
    .home-search-col-2 button {
        padding: 70px 10px;
    }
    .example-val p {
      font-size: 16px;
    }
    .wrap-home-search .container-1 {
        padding: 0px 0px 0px calc(1.5% + 10px);
        width:100%;
    }
    
}

@media screen and (max-width: 1200px)  {
    .slider-model .slick-list {
        padding: 0 0px 0 0 !important;
    }
    .foot-top-cont-1, .foot-top-cont-2, .foot-mid-cont-1, .foot-bottom-cont-1 {
         padding-left:0;
        padding-right:0;
    }
     .foot-bottom-cont-1 {
        flex-direction: column;
         justify-content: center;
         align-items: center;
         gap:30px;
    }   
}

@media screen and (max-width: 980px)  {
    .anchor-1 {
        transform: translateY(-150px);
    }
    
    .header-wrap {
        padding:5px 0;
        border-bottom: 1px solid #ba2126;
    }
    
    .head-logo-1 img {
      max-width: 120px;
    }
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	.head-right{display:none;}
	
    #menu-button {
        width:35px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
    }
    #menu-button span {
        width:30px;
        background:#ba2126;
        height: 3px;
        display: block;
    }
    #menu-button span:before {
        content:" ";
        width:35px;
        right:0;
        top:4px;
        background:#ba2126;
        height: 3px;
        display: block;
        position: absolute;
    }
    #menu-button span:after {
        content:" ";
        width:25px;
        right:0;
        bottom:4px;
        background:#ba2126;
        height: 3px;
        display: block;
        position: absolute;
    }
    
	.mobile {
		display:block;
        visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
        width:100%;
		background: rgba(0,0,0,0.0);
        transition: .2s ease-in;
        z-index: 9900;
	}
    .mobile.open {
        visibility: visible;
        background: rgba(0,0,0,0.5);
    }
    .mobile-bg {
        position: absolute;
        width:100%;
        height: 100%;
        z-index: 1;
    }
    
    .mobile_menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        height: auto;
        transition: .0s ease-in;
        padding: 24PX 40PX 49px 40px;
        background: #fff;
        z-index: 9900;
        max-width: 365px;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile.open .mobile_menu {
        animation: mobile-menu-slide .5s ease-in-out both;
    }
    

    .mobile_menu .menu-close {
        height: 30px;
        width:30px;
        border:1px solid #595959;
        border-radius: 30px;
        position: absolute;
        top:4px;
        right:4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile_menu .menu-close span {
        position: relative;
        width:100%;
        height: 100%;
    }
    .mobile_menu .menu-close span:after {
        width:16px;
        height: 2px;
        content:"";
        background:#595959;
        transform: rotate(45deg);
        position: absolute;
        top:0;
        bottom:0;
        left:0;
        right:0;
        margin:auto;
    }
    .mobile_menu .menu-close span:before {
        top:0;
        bottom:0;
        left:0;
        right:0;
        margin:auto;
        width:16px;
        height: 2px;
        content:"";
        background:#595959;
        transform: rotate(-45deg);
        position: absolute;
    }
    .mobile-nav ul {
        padding:15px 0;
        margin:0;
        position: relative;
    }
    .mobile-nav ul:after {
        content: "";
        width: 30%;
        border-bottom: 1px solid #595959;
        bottom: 0;
        left: 0;
        height: 1px;
        position: absolute;
    }
     .mobile-nav ul ul {
        padding:0;
    }
    .mobile-nav ul ul:after {
        border-bottom: 0px solid #595959;
    }
    .mobile-nav ul li {
        padding:10px 0;
        margin:0;
        list-style: none;
    }
    .mobile-nav ul li a {
        font-family: 'Roboto Condensed', sans-serif;
        color:#000;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
    }
    .mobile-nav ul li a:hover {
        color:#ba2126;
    }
    .mobile-info-links ul {
        padding:15px 0;
        margin:0;
    }
    .mobile-info-links ul li {
        padding:10px 0;
        margin:0;
        list-style: none;
    }
    .mobile-info-links ul li a {
        font-family: 'Roboto Condensed', sans-serif;
        color:#000;
        font-size: 16px;
        font-weight: 400;
    }
    .mobile-info-links ul li a:hover {
        color:#ba2126;
    }
    .mobile-search li {
        background: #fff;
        border: #CBCBCB solid 1px;
        display: flex;
        width:100%;
        padding:0!important;
        margin-top:10px!important;
    }
    .mobile-search li input[type="text"] {
        padding: 12px 30px;
        color:#000;
        font-family: 'Roboto Condensed', sans-serif;
        font-size:17px;
        border:0px!important;
        outline:none;
        width:calc(100% - 70px);
        box-sizing: border-box;
    }
    .mobile-search li input[type="submit"] {
        padding: 12px 20px;
        color:#fff;
        background:#ba2126;
        font-family: 'Roboto Condensed', sans-serif;
        font-size:17px;
        border:0px!important;
        outline:none;
        cursor: pointer
    }
    .mobile-search li input[type="submit"]:hover {
        background:#161415;
    }
    .slider-model {
      width: 100%;
      padding: 30px 20px;
      margin-top: 0px;
    }
    .all-model-cont-1 {
      width: 100%;
      border-left: 0px solid #efefef;
      padding: 20px;
        flex-wrap: wrap;
      flex-direction: row;
      justify-content: center;
        align-items: baseline;
        gap:10px;
    }
    .all-model-cont-1 .sml-txt {
      font-size: 30px;
    }
    .all-model-cont-1 h1 {
      font-size: 40px;
    }
    .all-model-cont-1 .all-model-link p {
        font-size: 30px;
        padding: 1px 3px 0 0;
    }
    .all-model-link span {
      border-radius: 40px;
      height: 30px;
      width: 30px;
      font-size: 20px;
      padding: 0 0 0 2px;
    }
    .foot-top-col-1 {
        width: 100%;
        padding:0 0 40px 0;
    }
    .foot-top-col-2 {
      width: 100%;
        justify-content: space-around;
    }
    .foot-top-social {
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
        gap:0;
    }
    .hide-mobile {
        display: none;
    }
    .foot-logo-1 {
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid #cbcbcb;
        padding:0 0 60px 0;
        
    }
    .foot-nav {
        width: 100%;   
        padding-top:40px;
    }
    .content-cont-1 {
      position: relative;
    }
    .content-info-head {   
        right:0;
        padding:20px;
    }
    .content-info-head img {   
        margin:0 auto;
    }
    .content-info-head h2 {   
        text-align: center;
        font-size: 5.5vw;
    }
    .content-info-1, .content-info-2 {
        width: 90%;
        margin:0 auto;
        position: static;
        order:2;
    }
    .content-grey-cont-1 {
      background: #efefef;
      padding: 40px;
      box-sizing: border-box;
      height: auto;
      margin: -25px auto 0 auto;
      position: relative;
      z-index: 1;
    }
    .content-image, .content-image-2 {
        width: 100%;
        order:1;
        height: 50vw;
    }

}
@keyframes mobile-menu-slide {
      0% {
        transform: translate(100%, -20%);
        opacity: 0;
      }
      100% {
        transform: translate(0);
        opacity: 1;
      }
    }
	
@media screen and (max-width: 760px)  {

    .col-1-2 {
        width:100%;
    }
    
    .hero-slide-cont .lg-txt {
      font-size: 7.2vw;
    }
    
    .slider-hero .slick-dots {
        width:90%;
        bottom:20px;
        left:0;
        right:0;
        margin:0 auto;
    }
    .hero-slide {
        min-height: 360px;
    }
    .wrap-home-search .container-1 {
        padding: 0px;
        width:100%;
    }
    .home-search-fields {
      width: 90%;
        margin:0 auto;
      padding: 50px 10px 30px 10px;
    }
    .home-search-col-2 {
      width: 100% !important;
    }
    .promo-info {
      width: 100%;
      order:2;
        min-height: 60vw;
    }
    .promo-info .header-txt {
      font-size: 6.4vw;
      position: absolute;
      top: 0;
      left: 0;
      text-align: center;
      width: 100%;
    }
    .promo-info img {
      max-width: 100%;
      display: block;
      padding: 0 10px;
      box-sizing: border-box;
      position: absolute;
      top: 0;
      left: 0;
      margin: 0 auto;
      right: 0;
    }
    .promo-info-txt {
      padding: 40px 20px;
    }
    .promo-info-txt .sml-txt {
      font-size: 6vw;
    }
    .promo-info-txt .lg-txt {
      font-size: 7vw;
    }
    .promo-image {
        width: 100%;
        order:1;
        padding-top: 15vw;
    }
    .slider-promo .slick-dots {
      width: calc(100% - 80px);
    }
    .slider-promo .slick-next {
      left: calc(100% - 20px);
    }
    .foot-top-col-1 .lg-txt {
      font-size: 35px;
    }
    .foot-top-col-1 .sml-txt {
      font-size: 45px;
    }
    .foot-top-col-2 {
        flex-direction: column;
        align-items: flex-start;
        gap:20px;
    }
    .foot-ico {
        flex-direction: row;
        gap:30px;
    }
    .foot-nav {
      justify-content: space-around;
    }
    .foot-nav-col-1 {
      width: auto;
    }
    .foot-nav-col-2 {
      width: auto;
        flex-direction: column;
    }
    .foot-nav .foot-nav-col-2 ul {
      width: auto;
    }
    .foot-nav ul {
      padding: 0;
      border-left: 0px solid #cbcbcb;
    }
    .finance-bg {
        background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.60) 100%), url("../siteart/bg-image-financing.jpg");
    }
    .inv-bg {
        background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.60) 100%), url("../siteart/bg-image-inv.jpg");
    }
    .warranty-bg {
        background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.60) 100%), url("../siteart/bg-image-warrenty.jpg");
    }
    .prefered-bg {
        background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.60) 100%), url("../siteart/bg-image-prefered.jpg");
    }
    .about-bg {
        background-image: linear-gradient(90deg,rgba(0,0,0,0.60) 0%,rgba(0,0,0,0.60) 100%), url("../siteart/bg-image-about.jpg");
    }
    .content-grey-cont-1 ul li {
      width: 100%;
    }
    
}

	
@media screen and (max-width: 550px)  {
    .home-search-col-1 {
      width: 100% !important;
    }

    
    
    
}




