﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	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;
	}
.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;
    gap:0 20px;
    justify-content: space-between;
    align-items: center;
	}
.head-logo-1 {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap:0 5%;
}
.head-logo-1 img {
	width: 100%;
	max-width:200px;
	display: block;
	height: auto;
	object-fit: contain;
	object-position: center;
}
.head-logo-1 span {
	font-size: clamp(22px, 5vw, 45px);
	color:#000;
	font-weight: bold;
	white-space: nowrap;
	font-family: 'Bebas Neue', sans-serif;
}
.head-right {
    width:auto;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
	gap:0 10px;
}
.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: #fff!important;
    font-weight: 700 !important;
    font-size: 17px;
    transition: .2s ease-in;
    border:1px solid #ba2126;
    margin-left:10px;
    text-align: center;
	background-color: #ba2126;
}
.red-btn-link a:hover {
    background-color: #fff;
    color: #ba2126!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;
				cursor: pointer;
				}	
			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: clamp(35px, 5vw, 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;
}



/*===================== 
	slideshow styles 
=======================*/



/*===================== 
	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;} 



/*===================== 
	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;}
.col-1 { width: 100%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#595959;
}
.foot-top {
	width: 100%;
	position: relative;
	padding:clamp(35px, 7vw, 150px) 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.foot-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left:0;
	top:0;
	z-index: 1;
	object-fit: cover;
	object-position: center;
}
.foot-logo-1 {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap:0 5%;
}
.foot-logo-1 img {
	width: 100%;
	max-width:200px;
	display: block;
	height: auto;
	object-fit: contain;
	object-position: center;
}
.foot-logo-1 span {
	font-size:45px;
	color:#fff;
	font-weight: bold;
	white-space: nowrap;
	text-shadow: 0 0 5px rgba(0,0,0,0.7);
	font-family: 'Bebas Neue', sans-serif;
}
.foot-bottom {
    width:100%;
   background:#595959;
    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:#fff;
    border-right: 1px solid #cbcbcb;
}
.foot-bottom ul li:last-child {
    border-right: 0px solid #cbcbcb;
}
.foot-bottom ul li a {
    color:#fff;
}
.foot-bottom ul li a:hover {
    opacity: 0.7;
}
.foot-bottom ul li a img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*========================== 
	  Responsive styles 
============================*/

@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;
		cursor: pointer;
    }
    #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;
    }

}
@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;
    }

    
    
    
}

