﻿/*===================== 
	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: "Montserrat", serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
html {
  scroll-behavior: smooth;
}

/* scroll to top style */

.scrollToTop-1 {
	bottom:25px;
	right:25px;
	z-index:16777269;
	padding-top:5px;
	padding-bottom:5px;
	display:none;
	position:fixed;
	opacity:.8;
	
}
.scrollToTop-1 a {
 	text-decoration:none;
 	line-height:150%;
 	padding:5px 12px;
 	opacity:.8;
 	display:block;
 	background:#000;
	border-radius: 10px;
	font-size:14px;
	text-align:center;
	color:#fff!important;
	z-index:16777269;
}
.scrollToTop-1 a:hover {
	box-shadow:0 0 5px 0 rgba(0,0,0,.5)
}

/*===================== 
	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;
	}
.text-center {
	text-align: center;
}
.text-white {
	color:#fff;
}


/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #000; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

.blue-butn {
	font-family: "Montserrat", serif;
	text-align: center;
	color:#fff!important;
	background:#1b9ad8;
	transition: .2s ease-in;
	font-size:18px;
	font-weight:500;
	border-radius: 50px;
	padding:10px 30px;
	border:0px;
	outline:none;
	cursor: pointer;
}
.blue-butn:hover {
	background:#d1ebf7;
	color:#000!important;
}
.green-butn {
	font-family: "Montserrat", serif;
	text-align: center;
	color:#fff!important;
	background:#92b054;
	transition: .2s ease-in;
	font-size:18px;
	font-weight:500;
	border-radius: 50px;
	padding:10px 30px;
	border:1px solid #fff;
	outline:none;
	cursor: pointer;
}
.green-butn:hover {
	background:#6A7E41;
	color:#fff!important;
}
.green-text-link {
	font-family: "Montserrat", serif;
	color: #92b054!important;
	font-size: 18px;
	font-weight: 600;
	transition: .2s ease-in;
	display: inline-block;
	margin-top: 8px;
}
.green-text-link:hover {
	color:#6A7E41!important;
}
.blue-text-link {
	font-family: "Montserrat", serif;
	color: #1b9ad8!important;
	font-size: 18px;
	font-weight: 600;
	transition: .2s ease-in;
	display: inline-block;
	margin-top: 8px;
}
.blue-text-link:hover {
	color:#000!important;
}
.black-text-link {
	font-family: "Montserrat", serif;
	color: #000!important;
	font-size: 18px;
	font-weight: 600;
	transition: .2s ease-in;
	display: inline-block;
	margin-top: 8px;
}
.black-text-link:hover {
	color:#1b9ad8!important;
}
.white-text-link {
	font-family: "Montserrat", serif;
	color: #fff!important;
	font-size: 18px;
	font-weight: 600;
	transition: .2s ease-in;
	display: inline-block;
	margin-top: 8px;
}
.white-text-link:hover {
	opacity: 0.7;
}
.text-white {
	color:#fff;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	}

header {
	margin: 0 auto;
	width:100%;
	padding-left:5%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:0 10px;
	}
.head-logo-1 {
	max-width: 200px;
	width:100%;
}
.head-logo-1 img {
	max-width: 100%;
	width:100%;
	height: auto;
	display: block;
	padding: 5px 0 14px 0;
	box-sizing: border-box;
}
.head-info {
	display: flex;
	align-items: center;
	gap:0 10px;
}
.head-info a {
	font-family: "Montserrat", serif;
	color:#000;
	font-size:18px;
	font-weight: 400;
	transition: .2s ease-in;
}
.head-info a:hover {
	color:#92b054;
}
.head-info ul {
	background:#92b054;
	display: flex;
	gap:0 10px;
	padding:10px;
	margin:0;
}
.head-info ul li {
	list-style: none;
	padding:0;
	margin:0;
}
.head-info ul li a {
	display: block;
	font-size:18px;
	color:#fff;
	padding:10px;
	box-sizing: border-box;
	transition: .2s ease-in;
}
.head-info ul li a:hover {
	opacity: 0.6;
	color:#fff;
	
}


/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}



nav.primary {
	padding:0 0 0 3%;
	box-sizing: border-box;
	display:block;
	margin:0;
	position:relative;
	width:100%;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
				font-family: "Montserrat", serif;
				color: #000;
				font-size: 16px;
				text-decoration: none;
				padding: 10px;
				display: block;
				margin: 0;
				text-align: center;
				text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 500;
				}	
			nav.primary ul li a:hover {
				background: #92b054;
				color:#fff;
				cursor: pointer;
				}
			nav.primary ul li:hover a {
				background: #92b054;
				color:#fff;
				cursor: pointer;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				background:#6A7E41!important;
			}
			nav.primary ul li li:hover a { 
				background:#6A7E41!important;
			}
			nav.primary ul li li li a { 
				background:#6A7E41!important;
			}
			nav.primary ul li li li a:hover { 
				background:#445129!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 
=======================*/
.with-title {width: 45%;}
.with-title h3{text-align:center;padding-bottom:20px;font-size:19px;}

section.video.wrap-content.load-bottom .single-video {gap:40px 20px;}

.wrap-hero {
	widthL:100%;
	background-position: center;
	background-size: cover;
}
.hero-overlay-1 {
	width:100%;
	height: 40vw;
	padding:50px 20px;
	max-height: calc(100vh - 500);
	min-height:300px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap:25px;
	background: rgba(0,0,0,0.2);
}
.hero-overlay-1 h1 {
	color:#fff;
	text-align: center;
	font-size:70px;
	font-weight:700;
	text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.hero-overlay-1 h1 span {
	font-weight:500;
}
.wrap-home-about {
	width:100%;
	background:#d1ebf7;
}
.home-about-cont-1 {
	width:100%;
	max-width: 700px;
	margin:0 auto;
	box-sizing: border-box;
	padding:50px 20px 120px 20px;
	text-align: center;
}
.home-about-cont-1 h2 {
	font-size:30px;
	font-weight:700;
	color:#000;
	padding-bottom:20px;
}
.home-about-cont-1 p {
	font-size:18px;
	font-weight:400;
	color:#000;
	line-height: 1.5;
}

.button-flex {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;}

.wrap-model-slider {
	width:100%;
	box-sizing: border-box;
}
.model-slider {
	width: 90%;
	margin:0 auto;
	display: flex!important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.model-slider .slick-track {
	display: flex;
	gap:.75vw;
	padding-top:50px;
	align-items: flex-start;
	height: auto;
}
.model-slider .slick-list:not(.draggable) .slick-track {
	width:100%;
	transform: translateX(-11.5vw)!important;
}
/* -- default model slide -- */
.model-slider .slick-list:not(.draggable) .model-slide {
	width:6vw!important;
	display: none;
	transition: .1s ease-in;
	padding-top:1vw;
	cursor:pointer;
}
.model-slider .slick-list:not(.draggable) .model-slide .model-info {
	padding: 1vw 5px 10px 5px;
	top: -1vw;
}
.model-slider .slick-list:not(.draggable) .model-slide .model-info h2 {
	font-size:.8vw;
}
/* -- Current Selected Model Slide -- */
.model-slider .slick-list:not(.draggable) .model-slide.slick-current {
	width:30vw!important;
	padding-top:0%;
	cursor:auto;
	display: block;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current .model-info {
	padding: 4vw 8px 15px 8px;
	top: -4vw;
	gap:10px;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current .model-info h2 {
	font-size: 2vw;
}
/* -- first model slide before and after current -- */
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + .model-slide, .model-slider .slick-list:not(.draggable) .model-slide:has(+ .slick-current) {
	width:15vw!important;
	padding-top:5vw;
	display: block;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + .model-slide .model-info, .model-slider .slick-list:not(.draggable) .model-slide:has(+ .slick-current) .model-info {
	padding: 2.5vw 5px 10px 5px;
	top: -2.5vw;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + .model-slide .model-info h2, .model-slider .slick-list:not(.draggable) .model-slide:has(+ .slick-current) .model-info h2 {
	font-size:1.4vw;
}
/* -- Second model slide before and after current -- */
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + .model-slide, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + .slick-current) {
	width:9.5vw!important;
	padding-top:4vw;
	display: block;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + .model-slide .model-info, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + .slick-current) .model-info {
	padding: 2vw 5px 10px 5px;
	top: -2vw;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + .model-slide .model-info h2, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + .slick-current) .model-info h2 {
	font-size:1.25vw;
}

/* -- Third model slide before and after current -- */
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + * + .model-slide, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + * + .slick-current) {
	width:6vw!important;
	padding-top:3vw;
	display: block;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + * + .model-slide .model-info, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + * + .slick-current) .model-info {
	padding: 1.5vw 5px 10px 5px;
	top: -1.5vw;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + * + .model-slide .model-info h2, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + * + .slick-current) .model-info h2 {
	font-size:.8vw;
}
/* -- Fourth model slide before and after current -- */
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + * + * + .model-slide, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + * + * + .slick-current) {
	width:4vw!important;
	padding-top:2vw;
	display: block;
}

.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + * + * + .model-slide .model-info, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + * + * + .slick-current) .model-info {
	padding: 1vw 5px 10px 5px;
	top: -1vw;
}
.model-slider .slick-list:not(.draggable) .model-slide.slick-current + * + * + * + .model-slide .model-info h2, .model-slider .slick-list:not(.draggable) .model-slide:has(+ * + * + * + .slick-current) .model-info h2 {
	font-size:1.0vw;
}
.model-slider .slick-list {
	order:3;
	height: 41vw;
	max-height: 650px;
	min-height: 540px;
	padding:0!important;
}
.model-slider .slick-prev {
	background:#92b054;
	font-size:16px;
	width:60px;
	box-sizing: border-box;
	color:#fff;
	padding:5px 10px;
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	transition: .2s ease-in;
	cursor: pointer;
	order:1;
} 
.model-slider .slick-prev:hover {
	background:#6A7E41;
}
.model-slider .slick-next {
	text-align: right;
	background:#92b054;
	font-size:16px;
	width:60px;
	box-sizing: border-box;
	color:#fff;
	padding:5px 10px;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
	transition: .2s ease-in;
	cursor: pointer;
	order:1;
} 
.model-slider .slick-next:hover {
	background:#6A7E41;
}
.model-slider .slick-dots {
		display: flex;
		align-items: center;
		gap:5px;
		order:3;
		padding:0 5px;
		margin:0;
	}
	.model-slider .slick-dots li {
		padding:0;
		margin:0;
		height: 29px;
		width:22px;
		background:#92b054;
		list-style: none;
		opacity: 0.5;
	}
	.model-slider .slick-dots li.slick-active {
		opacity: 1.0;
	}
	.model-slider .slick-dots li button {
		display: none;
	}

.model-slider .model-slide img {
	width:100%;
	max-width: 100%;
	display: block;
	height: auto;
	position: relative;
	z-index: 2;
}
.model-info {
	position: relative;
	z-index: 1;
	background:#1b9ad8;
	border:2px solid #1b9ad8;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	width:86%;
	margin:0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
.model-info h2 {
	text-align: center;
	font-family: "Montserrat", serif;
	color:#fff;
	font-weight:600;
	margin:0;
	padding:0;
}
.model-info p {
	visibility: collapse;
	display: none;
	font-family: "Montserrat", serif;
	color:#000;
	font-size:16px;
	font-weight:400;
}
.model-info a {
	font-family: "Montserrat", serif;
	color:#92b054;
	font-size:18px;
	font-weight:600;
	transition: .2s ease-in;
	display: inline-block;
  	margin-top: 8px;
}
.model-info a:hover {
	color:#6A7E41;
}
.slick-current .model-info  {
	background:#fff;
}
.slick-current .model-info h2 {
	color:#1b9ad8;
}
.slick-current .model-info p {
	visibility: visible;
	display: block;
}
.blue-title {
	width:100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:0px 40px;
	margin:40px 0;
  	box-sizing: border-box;
}
.blue-title::after {
	content:"";
	border:5px solid #1b9ad8;
	position: absolute;
	width:100%;
	z-index: 1;
	left:0;
	top:50%;
	display: block;
	box-sizing: border-box;
}
.blue-title h2, .blue-title h1 {
	font-size:30px;
	text-align: center;
	font-weight:600;
	color:#1b9ad8;
	padding:20px;
	background: #fff;
	position: relative;
	z-index: 2;
}

.wrap-bullet-info {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	background:#1b9ad8;
}
.bullet-info {
	width:50%;
	padding:120px 40px 120px 5%;
	box-sizing:border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap:20px;
}
.bullet-info ul {
	padding:20px;
	margin:0;
	display: flex;
	flex-direction: column;
	gap:40px;
	
}
.bullet-info ul li {
	padding:0 0 0 10px;
	margin:0;
	color:#fff;
	font-size: 20px;
	font-weight: 400;
	
}
.bullet-info ul li::marker {
	content:"\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size:25px;
	color:#fff;
	
}
.bullet-info-bg {
	width:50%;
}
.bullet-info-bg img {
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0.6;
}
.wrap-faq {
	width:100%;
	padding:0 5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
} 
.faq-info-slider {
	width:50%;
}
.faq-info-slider .slick-list {
	height: 100%;
}
.faq-info-slider .slick-track:before, .faq-info-slider .slick-track:after {
	display: none!important;	
}
.faq-info-slider .slick-track {
	width:100%!important;
	height: 100%;
	transform: none!important;
	display: flex;
	flex-direction: column;
}

.faq-info-slide {
	width:98%!important;
	position: relative;
	display: flex!important;
	flex-direction: column;
	height: auto!important;
}
.faq-info-slide.slick-current {
	flex-grow: 1;
}
.faq-info-slide h2 {
	display: flex;
	width:100%;
	align-items: center;
	justify-content: space-between;
	font-size:20px;
	font-weight: 600;
	color:#fff;
	background:#1b9ad8;
	position: relative;
	z-index: 2;
	border-radius: 20px;
	box-sizing: border-box;
	padding:10px;
	cursor: pointer;
}
.faq-info-slide h2 i {
	font-size:25px;
	margin-right:10px;
}
.faq-info-header {
	flex-grow: 1;
	width: calc(100% - 60px);
}

.faq-info-slide h2 .faq-info-ico {
	width:40px;
	height:40px;
	border-radius:40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid #fff;
	background:#92b054;
	transition: .2s ease-in;
}
.faq-info-slide h2 .faq-info-ico i {
	margin:0;
}
.faq-info-slide.slick-current h2 .faq-info-ico {
	transform: rotate(-90deg);
	background:#fff;
	color:#92b054;
}
.faq-info-cont {
	background:#fff;
	border: 2px solid #1b9ad8;
	border-radius: 20px;
	position: relative;
	z-index: 1;
	left:2%;
	top:-30px;
	padding:30px 20px;
	box-sizing: border-box;
}
.faq-info-col {
	visibility: collapse;
	height: 0;
}
.faq-info-col p {
	font-size:16px;
	line-height: 1.3;
	
}
.faq-info-slide.slick-current .faq-info-cont {
	padding-top:60px;
	flex-grow: 1;
}
.faq-info-slide.slick-current .faq-info-col {
	visibility: visible;
	height: 100%;
}
.faq-info-col img {
	display: none!important;
	width:100%;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	margin-top:15px;
}
.faq-image-slider {
	width:49%;
	position: relative;
}
.faq-image-slider .slick-track, .faq-image-slider .slick-list, .faq-image-slider .slick-slide {
	height: 100%;
}

.faq-image-slider img {
	width:100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.faq-image-slider .slick-dots,.video-slider .slick-dots {
	padding:0;
	margin:0;
	display: flex;
	justify-content: center;
	gap:10px;
	position:absolute;
	left:0;
	right:0;
	bottom:-30px;
	z-index: 101;
}
.faq-image-slider .slick-dots li, .video-slider .slick-dots li{
	padding:0;
	margin:0;
	list-style: none;
	display: block;
	width:15px;
	height: 15px;
	border-radius: 15px;
	background:#fff;
	box-shadow: 0 0 4px 1px rgba(0,0,0,0.5);
}

.video-slider .slick-dots li {
	
}

.single-video {    
	display: flex;
	padding:40px 0 50px;
    justify-content: center;
	gap:0 20px;
flex-wrap:wrap;}

.col-1-2.single-video {width: 100%;}

.faq-image-slider .slick-dots li.slick-active, .video-slider .slick-dots li.slick-active  {
	background:#d1ebf7;
}
.faq-image-slider .slick-dots li button, .video-slider .slick-dots li button  {
	display: none!important;
}

section.video.wrap-content.load-bottom { 
    display: flex;
    justify-content: center;}

section.video.wrap-content.load-bottom {
	padding-bottom: 70px;
}

.wrap-home-testimonial {
	width:100%;
	padding:40px 0;
}
.testimonial-slide {
	background: #fff;
	border: 2px solid #1b9ad8;
	border-radius: 20px;
	padding: 30px 20px;
	box-sizing: border-box;
}
.testimonial-slide .sml-text {
	font-size:14px;
	font-weight:500;
}
.testimonial-slide .lg-text{
	font-size:18;
	font-weight:600;
}
.testimonial-slider .slick-track {
	display: flex!important;
	gap:20px;
}
.testimonial-slider .slick-dots {
	padding:30px 0 0 0;
	margin:0;
	display: flex;
	justify-content: center;
	gap:10px;
}
.testimonial-slider .slick-dots li {
	padding:0;
	margin:0;
	list-style: none;
	display: block;
	width:15px;
	height: 15px;
	border-radius: 15px;
	background:#1b9ad8;
}
.testimonial-slider .slick-dots li.slick-active {
	background:#d1ebf7;
}
.testimonial-slider .slick-dots li button {
	display: none!important;
}
.wrap-Dealers {
	width:100%;
	padding:40px 0;
}
.wrap-Dealers .container-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px 0;
}
.dealer-info-1 {
	border: 2px solid #1b9ad8;
	border-radius: 20px;
	width: 49%;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
}
.dealer-img {
	width: 35%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:10px;
	box-sizing: border-box;
}
.dealer-img img {
	width:100%;
	max-width: 200px;
	height: 100%;
	max-height: 100px;
	display: block;
	margin:0 auto;
	object-fit: contain;
	object-position: center;
}
.dealer-copy {
	width:64%;
	background:#1b9ad8;
	padding:20px;
	display: flex;
	flex-direction: column;
	gap:10px;
	box-sizing: border-box;
}
.dealer-copy h2 {
	font-size: 24px;
	color: #fff;
	font-family: "Montserrat", serif;
	font-weight: 700;
}
.dealer-copy p {
	font-size: 20px;
	font-family: "Montserrat", serif;
	font-weight: 400;
	color: #fff;
}
.dealer-copy a {
	font-family: "Montserrat", serif;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	transition: .2s ease-in;
}
.dealer-copy a:hover {
	opacity: 0.7;
}

.image-slider{
	width:100%;
	height: 100%;
	position: relative;
}
.image-slider .slick-track {
	display: flex!important;
	align-items: stretch;
}
.image-slider .slick-track, .image-slider .slick-list, .image-slider .slick-slide  {
	height: 100%;
}

.image-slider img {
	width:100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.image-slider .slick-dots {
	padding:0;
	margin:0;
	display: flex;
	justify-content: center;
	gap:10px;
	position:absolute;
	left:0;
	right:0;
	bottom:20px;
	z-index: 101;
}
.image-slider .slick-dots li {
	padding:0;
	margin:0;
	list-style: none;
	display: block;
	width:15px;
	height: 15px;
	border-radius: 15px;
	background:#fff;
	box-shadow: 0 0 4px 1px rgba(0,0,0,0.5);
}
.image-slider .slick-dots li.slick-active {
	background:#d1ebf7;
}
.image-slider .slick-dots li button {
	display: none!important;
}

.wrap-dealers {
	width:100%;
	padding:40px 0;
}
.wrap-dealers .container-2 {
	display: flex;
	flex-wrap: wrap;
	gap:20px 1.3%;
}
.wrap-dealers .container-2 a {
	border: 2px solid #1b9ad8;
	border-radius: 20px;
	padding:10px;
	width: 24%;
	box-sizing: border-box;
	transition: .2s ease-in;
}
.wrap-dealers .container-2 a h2 {
	text-align: center;
	font-size: 24px;
	color: #1b9ad8;
	font-family: "Montserrat", serif;
	font-weight: 700;
}
.wrap-dealers .container-2 a h2 span {
	font-size: 18px;
	font-weight: 500;
}
	
.wrap-dealers .container-2 a img {
	width: 100%;
	max-width: 400px;
	height: auto;
	max-height: 200px;
	display: block;
	margin: 0 auto;
	object-fit: contain;
	object-position: center;
}
.wrap-dealers .container-2 a:hover {
	border: 2px solid #000;
}
.wrap-dealers .container-2 a:hover h2 {
	color: #000;
}
.wrap-dealers .container-2 a:hover img {
	opacity: 0.7;
}
.dealer-divider {
	width:100%;
	padding:40px 0 5px 0;
	margin-bottom:5px;
	border-bottom:1px solid #000;
}
.dealer-divider p {
	font-size: 30px;
}
.wrap-model-pg-top {
	width:100%;
	padding:20px 0;
	box-sizing: border-box;
}
.model-pg-header-1 {
	width:100%;
	padding-bottom:30px;
}
.model-pg-header-1 h1 {
	text-align: center;
	font-size:40px;
}
.model-pg-header-1 h2 {
	text-align: center;
	font-size: 24px;
	color:#1b9ad8;
}
.model-pg-info-cont {
	border: 2px solid #1b9ad8;
	border-radius: 20px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
}
.model-pg-info-1 {
	width: 50%;
	box-sizing: border-box;
  	padding:40px 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap:20px;
}
.model-pg-info-1 img {
	max-width: 450px;
	width:100%;
	display: block;
	height: auto;
	margin:0 auto;
}
.model-pg-specs-1 {
	width: 50%;
	background:#1b9ad8;
	padding:20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:20px;
}
.model-pg-specs-1 img {
	
}
.model-pg-btn-cont-1 {
	display: flex;
	gap:20px;
	flex-wrap: wrap;
	padding:20px 0 0 0;
}
.model-pg-specs-1 h2 {
	color:#fff;
	font-size: 24px;
	font-weight: 700;
}
.model-pg-specs-1 ul {
	padding: 10px 0 10px 10px;
  	margin: 0;
}
.model-pg-specs-1 ul li {
	padding:5px 0 5px 5px;
	margin: 0;
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}
.model-pg-specs-1 ul li::marker {
	content:"\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 18px;
	color:#fff;
}
.model-pg-gallery {
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}
.model-pg-gallery a {
	flex-grow: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  width: 20%;
	max-width: 450px;
}
.model-pg-gallery a img {
	width:100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: .2s ease-in;
}
.model-pg-gallery a:hover img {
	opacity: 0.7;
}

.meet-the-team-cont {
	border: 2px solid #1b9ad8;
	border-radius: 20px;
	width: 49%;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	background:#fff;
}
.meet-the-team-cont.full-width-img {
	width:100%;
}
.mtt-img {
	width: 35%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
}
.mtt-img-full-w {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
}
.mtt-img-full-w img {
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin:0 auto;
	display: block;
	max-height: 500px;
}
.mtt-img img {
	width:100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	margin:0 auto;
	display: block;
}
.mtt-info {
	width: 64%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-sizing: border-box;
}
.mtt-info h2 {
	font-size: 24px;
	color: #000;
	font-family: "Montserrat", serif;
	font-weight: 700;
}
.mtt-info p {
	font-size: 20px;
	font-family: "Montserrat", serif;
	font-weight: 400;
	color: #000;
}
.decore-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 20px 0 20px;
}
	


/*===================== 
	Form styles 
=======================*/

/* Containers */

.wrap-form {
	width:100%;
	box-sizing: border-box;
	padding:20px 20px 60px 20px;
} 
.wrap-form .container-1 {
	border: 2px solid #1b9ad8;
	padding:40px 20px;
	border-radius: 20px;
}

.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 {
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:1px solid #000;
    color:#000; 
	font-family: "Montserrat", serif;
	border-radius: 10px;
}

.select-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    border-radius: 0px!important;
    width:100%;
    background:#fff;
    box-sizing: border-box;
    position: relative;
}
.select-cont  select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 17px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:0px;
}

.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: "Montserrat", serif;
    outline:none;
    border:0px;
	border:1px solid #000;
	border-radius: 10px;
}

.form-btn-cont {
	text-align: center;
}
.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.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 1.2s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1.2s ease-in-out both;
}
.scrolled.fade-in-top {
  animation: fade-in-top 1.2s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1.2s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1.2s ease-in-out both;
}

.load-right {
    animation: slide-in-right 1.2s ease-in-out both;
}
.load-left {
    animation: slide-in-left 1.2s ease-in-out both;
}
.load-bottom {
    animation: fade-in-bottom 1.2s ease-in-out both;
}
.load-top {
    animation: fade-in-top 1.2s 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;
	}

.wrap-content {
	width: 100%;
	margin: 0;
	padding:20px 0 40px 0;
	}
.wrap-content.blue-bg {
	padding-top:70px;
}
.wrap-content.circle-bottom {
	padding-bottom:90px;
}
.wrap-content.circle-top {
	padding-top:90px;
}
.wrap-content h1 {
	padding-bottom:20px;
}
.content-bullets-1 {
	padding: 10px 0 10px 10px;
  	margin: 0;
}
.content-bullets-1 li {
	padding:5px 0 5px 5px;
	margin: 0;
	font-weight: 500;
	font-size: 20px;
}
.content-bullets-1 li::marker {
	content:"\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color:#fff;
}
.content-list-1 {
	padding:10px 0;
	margin: 0;
}
.content-list-1 li {
	padding:5px 0;
	margin: 0;
	list-style: none;
	font-size: 20px;
	font-weight: 500;
}
.content-list-1 li span {
	font-weight: 700;
}
.content-list-1 li a {
	color:#000;
	transition: .2s ease-in;
}
.content-list-1 li a:hover {
	color:#92b054;
}

.blue-bg {
	background:#d1ebf7;
}
.d-blue-bg {
	background:#1b9ad8;
}
.blue-border {
	border: 2px solid #1b9ad8;
	padding: 40px 20px;
	border-radius: 20px;
	background:#fff;
}
.circle-bottom {
	overflow: hidden;
	position: relative;
	width:100%;
}
.circle-bottom::after {
	content: " ";
	background: #fff;
	width: 150%;
	left: -25%;
	height: 400px;
    bottom: -350px;
	z-index: 1;
	border-radius: 100%;
	display: block;
	position: absolute;
}
.circle-top {
	overflow: hidden;
	position: relative;
	width:100%;
}
.circle-top::before {
	content: " ";
	background: #fff;
	width: 150%;
	left: -25%;
	height: 400px;
  	top: -350px;
	z-index: 1;
	border-radius: 100%;
	display: block;
	position: absolute;
}

.container-1 {
	width:100%;
	max-width: 1100px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-2 {
	width:100%;
	margin: 0 auto;
	padding:40px 5%;
	box-sizing: border-box;
	}
.container-3 {
	width:100%;
	max-width: 1600px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1100px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:20px 0;
}
.img-bg {
	width:100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 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;}
.col-1 { width: 100%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#92b054;
	padding:40px 0;
	}
footer .container-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.foot-nav-cont {
	width:100%;
	max-width: 450px;
	display: flex;
	justify-content: space-between;
}
.foot-nav-col .foot-header {
	color:#fff;
	font-family: "Montserrat", serif;
	font-size:20px;
	font-weight:600;
	
}
.foot-nav-col ul {
	padding:15px 0 0 0;
	margin:0;
	display: flex;
	flex-direction: column;
	gap:10px;
}
.foot-nav-col ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-nav-col ul li a {
	color:#fff;
	font-family: "Montserrat", serif;
	font-size:16px;
	font-weight:400;
	transition: .2s ease-in;
}
.foot-nav-col ul li a:hover {
	opacity: 0.7;
}
.foot-logo-cont a {
	display: block;
	width:100%;
	max-width: 200px;
}
.foot-logo-cont a img {
	width:100%;
	max-width: 100%;
	display: block;
	height: auto;
	margin:0 auto;
	filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(14%) hue-rotate(212deg) brightness(103%) contrast(100%);
}
.foot-logo-cont ul {
	padding:50px 0 0 0;
	margin:0;
	display: flex;
	justify-content: center;
	gap:15px;
}
.foot-logo-cont ul li {
	padding:0;
	margin: 0;
	list-style: none;
}
.foot-logo-cont ul li a {
	font-family: "Montserrat", serif;
	color:#fff;
	font-size:18px;
	transition: .2s ease-in;
}
.foot-logo-cont ul li a:hover {
	opacity: 0.7;
}




/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1320px)  {
	header {
		padding-left: 20px;
	}
	nav.primary {
		padding: 0;
	}
	nav.primary ul li a {
		font-size:1.1vw;
		padding:10px .5vw;
	}
}

@media screen and (max-width: 1100px)  {

	.head-info-mob {
		display: none;
	}
	
	.head-info {
		width:100%;
		justify-content: flex-end;
	}
	.head-info ul {
  		background: #fff;
		padding:0;
	}
	.head-info ul li a {
		color: #92b054;
		padding:0;
	}
	.head-info ul li a:hover {
		color: #92b054;
	}
	
	.with-title {    
	width: 100%;
    text-align: center;}
	
	.single-video {flex-direction:column;align-items:center;width:100%;gap:20px;margin:0;}
	
	.single-video iframe {width: 78% !important;}
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;} /* New class to help control screen width visability */
    
	#menu-button{ 
		display: block;
		padding:20px;
	}
	
    .menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
		cursor: pointer;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
    
	nav.mobile {
		display:none;
		position: absolute;
		right: 0px;
		width: 100%;
		max-width: 400px;
		height: auto;
		background: #92b054;
		z-index: 500; 
		overflow:auto;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #fff;
		font-size: 18px;
		font-weight: 400;
	}
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:18px;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		text-align: center;
	}
	nav.mobile ul li a:hover {
		background:#6A7E41;
		color: #fff; 
		cursor: pointer;
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background:#6A7E41;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		color: #fff;
		text-decoration: none;
	}
	nav.mobile ul li li li a {
		background:#445129;
		position: relative;
		display: block;
		padding: 10px 10px 10px 20px;
	}
	
	nav.mobile ul li li a:hover {
		background:#505F30;
	}
	.hero-overlay-1 h1 {
  		font-size: 5.5vw;
	}
	.col-1-2, .col-1-3 {
		width: 100%;
	}
	.wrap-content {
	  padding: 20px 0 20px 0;
	}
	.wrap-content.blue-bg {
		padding-top:20px;
	}
}

@media screen and (max-width: 1000px)  {
	.container-2 {
		padding:40px 20px;
	}
	.model-slide {
		cursor:grab;
	}
	.model-slide:active {
		cursor:grabbing;
	}
	
	.model-info h2, .slick-current .model-info h2 {
		font-size:20px;
		color:#1b9ad8;
	}
	.model-info p, .model-info a {
		visibility:visible;
		font-size: 14px;
		padding-top:5px;
	}
	.model-info {
		background:#fff;
		padding:40px 5px 20px 5px;
		width:100%;
		top:-15px;
		border-radius: 15px;
	}
	.model-slider .model-slide img {
	  width: 99%;
	  margin: 0 auto;
	  object-fit: contain;
	  height: 100px;
	}
	.model-slider .slick-track {
	  padding-top: 0;
	}
	.model-slider .slick-list {
		order:1;
		height:auto;
		min-height: 100%;
		max-height: 100%;
		padding-bottom:20px!important;
	}
	.model-slider .slick-prev {
		order:2;
		width: 30px;
	}
	.model-slider .slick-next {
		order:4;
		width: 30px;
	}
	.bullet-info {
		width:100%;
		order:2;
		padding: 20px 20px 120px 20px;
		align-items: center;
	}
	.bullet-info-bg {
		width:100%;
		order: 1;
	}
	.bullet-info ul {
		gap: 20px;
	}
	.bullet-info ul li {
  		font-size: 18px;
	}
	.bullet-info-bg img {
	  height: 81vw;
	  object-position: top center;
	}
	.faq-info-slider {
		width:100%;
	}
	.faq-info-cont {
		width:96%;
		left:0;
		right:0;
		margin:0 auto;
	}
	.faq-info-col img {
		display: block!important;
	}
	.faq-image-slider {
		display: none!important;
	}
	.dealer-info-1, .meet-the-team-cont {
		width: 100%;
	}
	.wrap-dealers .container-2 {
		gap:20px 1.5%;
	}
	.wrap-dealers .container-2 a {
		width: 32.33%;
	}
	.model-pg-info-1 {
		width:100%;
		padding:10px;
	}
	.model-pg-specs-1 {
		width:100%;
		padding:10px;
	}
	.model-pg-gallery a {
	  flex-grow: 1;
	  border-radius: 20px;
	  overflow: hidden;
	  background: #fff;
	  width: 31%;
	}
}
@media screen and (max-width: 800px)  {
	.hero-overlay-1 h1 {
		font-size: 12vw;
	}
	.hero-overlay-1 h1 span {
		display: block;
		font-size:8vw;
	}
	.foot-nav-cont {
		display: none;
	}
	.foot-logo-cont {
		width: 100%;
	}
	.foot-logo-cont a {
		margin:0 auto;
	}
	.blue-butn, .green-butn {
		font-size:16px;
		padding:5px 15px;
	}
	.mtt-img, .mtt-info {
	  width: 50%;
	}
}
@media screen and (max-width: 600px)  {
	.circle-bottom::after {
		height: 50vw;
  		bottom: -35vw;
	}
	.circle-top::before {
		height: 50vw;
  		top: -35vw;
	}
	.head-info {
		display: none;
	}
	.head-info-mob {
		display: block;
		padding:10px 10px 5px 10px;
		text-align: center;
		border-top:1px solid #fff;
	}
	.head-info-mob a {
		font-family: "Montserrat", serif;
		color: #fff;
		font-size: 18px;
		font-weight: 400;
		transition: .2s ease-in;
	}
	.head-info-mob a:hover {
		opacity: 0.6;
		color:#fff;
	}
	.head-info-mob  ul {
		padding:0;
		margin:0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
		gap:10px;
	}
	.head-info-mob  ul li {
		padding:0;
		margin:0;
		list-style: none;
	}
	.head-info-mob  ul li a {
		display: block;
		font-size: 18px;
		color: #fff;
		padding: 0;
		box-sizing: border-box;
		background:none!important;
		transition: .2s ease-in;
	}
	.head-info-mob  ul li a:hover {
		opacity: 0.6;
		color:#fff;

	}
	
	.bullet-info-bg section.video.wrap-content.load-bottom {padding: 80px 0 20px 0;}

	nav.mobile {
		width: 100%;
		max-width:100%;
	}
	.home-about-cont-1 h2 {
		font-size: 25px;
	}
	.home-about-cont-1 p {
		font-size: 16px;
	}
	.model-slider .model-slide img {
		height: 33vw;
	}
	.wrap-model-slider {
		margin-bottom:40px;
	}
	.blue-title {
		margin:0;
	}
	.blue-title h2, .blue-title h1 {
		font-size:20px;
		padding:0 20px;
	}
	.faq-info-slide h2 {
		font-size: 16px;	
	}
	.faq-info-slide h2 i {
  		font-size: 18px;
	}
	.faq-info-slide h2 .faq-info-ico {
		width: 25px;
		height: 25px;
	}
	.faq-info-slide h2 .faq-info-ico i {
		font-size:14px;
	}
	.wrap-faq {
		padding-top:40px;	
	}
	.wrap-home-testimonial {
	  padding:40px 0;
	}
	.dealer-img {
		width: 100%;
	}
	.dealer-copy {
		width: 100%;
	}
	.dealer-copy h2 {
		font-size: 20px;
	}
	.dealer-copy p {
		font-size: 18px;
	}
	.dealer-copy a {
		font-family: "Montserrat", serif;
		font-size: 16px;
	}
	.wrap-content h1 {
		font-size:24px;
	}
	.wrap-content h2 {
		font-size:20px;
	}
	.wrap-content h3 {
		font-size:18px;
	}
	.wrap-content h4 {
		font-size:16px;
	}
	.wrap-content p, .model-pg-info-1 p {
		font-size:15px;
	}
	.content-list-1 li {
	  font-size: 16px;
	}
	.content-bullets-1 li, .model-pg-specs-1 ul li {
		font-size: 18px;
	}
	.wrap-dealers .container-2 {
		gap:20px 2%;
	}
	.wrap-dealers .container-2 a {
		width: 49%;
	}
	.wrap-dealers .container-2 a h2, .model-pg-specs-1 h2 {
		font-size: 18px;
	}
	.wrap-dealers .container-2 a h2 span {
	font-size: 15px;
	}
	.model-pg-info-1 .blue-butn {
		width:100%;
		display: block;
		box-sizing: border-box;
	}
	.decore-nav {
	  gap: 10px;
	  padding: 0 20px 20px 20px;
	}
	.decore-nav a {
		flex-grow: 1;
	}
	.dealer-divider {
		text-align: center;
		padding:40px 0 5px 0;
		margin-bottom:5px;
	}
	.dealer-divider p {
		font-size: 18px;
	}

}
@media screen and (max-width: 450px)  {
	.mtt-img, .mtt-info {
	  width: 100%;
	}
}
