﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

	RED:  #BD162D
	YELLOW: #FFCF06

	GRAY: #2D2D2D
*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

* {box-sizing: border-box;}

body {

}

.wid-90 {width: 90%; max-width:1600px; margin: 0 auto;}

.padit {padding: 50px 0;}

.flex {display: flex;}

.logo {max-width: 300px;}

.logo img {padding: 15px 0; width: 100%; display:block;}

.gray-body {background-color: #2D2D2D;}

img.wave {display: block;}


/*------------- TEXT STYLES AND BUTTONS -------------*/
.red, .red:link {color: #BD162D;}

.yellow, .yellow:link {color: #FFCF06;}

.white, .white:link {color: #fff;}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Barlow", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Montserrat", sans-serif; }

p, li {
	font-family: "Barlow", sans-serif;
	font-size: 16px;
}

p.body-text {
	line-height: 1.7;
}

p.large-text {
	font-size: 20px;
	font-weight: 600;
}

hr{border: none; border-top:#ccc 1px solid;}

.sm-heading {
	font-size: 24px;
}

.heading {
	font-size: 40px;
}

.xl-heading {
	font-size: 48px;
}

.hero-heading {
	text-transform: uppercase;
	font-size: 40px;
	line-height: 0.8;
}

.hero-heading span {
	font-size: 24px;
}

/*  BUTTONS  */

.red-btn {
	background: #BD162D;
	padding: 10px;
	min-width: 150px;
	border-radius: 20px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.4s ease-in;  
	-o-transition:.4s ease-in;  
	transition:.4s ease-in;
	margin: 5px 0;
}

.red-btn:hover {
	background: #FFCF06;
	color: #000;
}


/*--- HEADER STYLES ---------------------*/
.dktop-header-container {
	display: flex;
	justify-content: space-between;
}

.dktop-header-container .desktop-left {
	width: 85%;
}

.main-header .wid-90 {
	display: flex;
	gap: 60px;
	align-items: end;
}

.header-contact {
	display: flex;
	gap: 25px;
	margin-top: 20px;
	margin-bottom: 5px;
}

.contact-item a {
	font-weight: 500;
	color: #000;
	text-decoration: none;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.contact-item {
	display: inline-block;
}

.contact-item p a:hover {
	color: #BD162D;
}

a.phone-header {
	color: #fff;
	background-color: #BD162D;
	padding: 2px 10px;
	border-radius: 12px;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.contact-item p a.phone-header:hover {
	color: #000;
	background-color: #FFCF06;
}

.top-header .wid-90 hr {display: none;}

.red-corner {
	background-color: #BD162D;
	width: 168px;
	border-bottom-left-radius: 158px;
	padding-top: 20px;
}

#menu-button .red-corner {
	width: 114px;
	text-align: center;
}

.red-corner div {
	text-align: center;
}

.red-corner a {
	font-size: 20px;
	line-height: 1.5;
}

/*---BODY--------------------------------*/
.hero {
	background: linear-gradient(90deg, rgba(0,0,0,1.0), rgba(0,0,0,0.4) 50%),url("../siteart/hero.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
	width: 100%;
	aspect-ratio: 5 / 2;
}

.page-heading {
	background-color: #333;
	background-image: linear-gradient(90deg, rgba(0,0,0,1.0), rgba(0,0,0,0.4) 50%),url("../siteart/hero.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

.hero-wave {
	background: url("../siteart/yellow-wave.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: -50%;
	position: relative;
	width: 100%;
	aspect-ratio: 5 / 2;
}

.hero-text {
	text-align: center;
}

.hero-text .xl-heading {
	text-transform: uppercase;
	line-height: 1;
}

.xl-heading span {
	font-size: 20px;
}

.hero .wave {
	position: absolute;
}

.search-box {
	max-width: 1000px;
	background-color: #fff;
	margin: 0 auto;
	margin-top: -140px;
	border-radius: 50px;
	box-shadow: 0 0 15px -1px rgba(0,0,0, 0.5);
	padding: 50px 70px;
	position: relative;
}

.search-box .heading {
	font-size: 32px;
}

.search-accent {
	width: 60px;
	height: 50px;
	background-color: #BD162D;
	border-bottom-right-radius: 25px;
	border-top-right-radius: 25px;
	position: absolute;
	left: 0;
	top: 50px;
}

.about-omega .wid-90 {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.about-omega .wid-90 div {
	width: 100%;
}

.about-omega .wid-90 .about-aside {
	width: 70%;
	color: #505050;
}

.about-omega .cards {
	padding-top: 25px;
	flex-wrap: wrap;
	justify-content: space-around;
}

.about-omega .wid-90 .about-card {
	padding: 30px;
	border-radius: 50px;
	border: 1px solid #505050;
	box-shadow: 0 0 15px -1px rgba(0,0,0, 0.5);
	width: 340px;
}

.about-card .card-title {
	display: flex;
	gap: 10px;
}

.about-card .card-title i {
	font-size: 55px;
}

.stock {
	background-color: #F1F1F1;
	background-image: url("../siteart/red-wave.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	width: 100%;
}

.stock .wid-90 .heading, .stock .wid-90 .large-text {text-align: center;}

.stock .flex {
	padding-top: 30px;
	gap: 30px;
	justify-content: space-around;
	align-items: center;
}

.stock .flex img {
	max-width: 50%;
}

.stock-text {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 30px 0;
}

.stock-text .star {
	position: relative;
	width: 120px;
}

.stock-text .star i {
	position: absolute;
	font-size: 54px;
	bottom: 0;
	z-index: 1;
}

.stock-text .xl-heading {
	position: relative;
	z-index: 1;
	line-height: 0.7;
	text-align: right;
	font-size: 48px !important;
}

.buying-bg {
	background-color: #333;
	background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../siteart/buying-bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	padding: 150px 0 0 0;
}

.buying-bg .buying {
	background-color: #222;
	background-image: url("../siteart/yellow-wave-right.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
	border-radius: 25px;
	padding: 40px;
	box-shadow: 0 0 15px -1px rgba(0,0,0, 0.5);
	margin-bottom: -50px;
	position: relative;
	justify-content: center;
	gap: 30px;
}

.check.flex {
	gap: 15px;
	margin: 10px 0;
}

.check.flex i {
	font-size: 26px;
}

.about.flex {
	justify-content: space-around;
	gap: 30px;
	align-items: flex-start;
}

.about.flex img {
	width: 100%;
	display:block;
}

.choose {
	background-color: #333;
	background-image: url("../siteart/choose-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.choose .heading, .choose .large-text {
	text-align: center;
}

.choose .flex {
	justify-content: center;
	gap: 30px;
	margin-top: 30px;
}

.choose-flex.flex {
	align-items: flex-start;
	width: 40%;
	gap: 15px;
	justify-content: flex-start;
	margin: 0;
}

.choose-icon {
	background-color: #BD162D;
	padding: 15px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 80px;
	aspect-ratio: 1 / 1;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.choose-flex.flex:hover > .choose-icon {
	background-color: #FFCF06;
}

.choose-icon i {
	font-size: 42px;
}

.location-title.flex {
	gap: 30px;
	align-items: center;
}

.location-title.flex .heading {
	width: 100%;
}

.location-title.flex .body-text {
	color: #505050;
	width: 100%;
}

.map.flex {
	margin-top: 50px;
	align-items: flex-start;
}

.map.flex img {
	width: 50%;
	display: block;
}

.map-aside {
	max-width: 700px;
	width: 50%;
	column-count: 3;
}

.map-aside .sm-heading {
	column-span: all;
}

.map-aside .large-text {
	line-height: 2;
	font-weight: 500;
}

.contact-dealer {
	gap: 30px;
}

.dealer-info {
	padding-left: 15px;
	border-left: 5px solid #FFCF06;
	width: 50%;
}

.contact-info.flex {
	align-items: flex-start;
	gap: 10px;
	margin: 15px 0;
}

.contact-info a {
	color: #000;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.contact-icon {
	background-color: #eee;
	padding: 15px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 60px;
	aspect-ratio: 1 / 1;
	
}

.contact-info a:hover, .contact-info.flex:hover > .contact-icon i {
	color: #BD162D;
}

.contact-icon i {
	font-size: 24px;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.faq {
	background-color: #F1F1F1;
}

.faq .flex {
	gap: 30px;
}

.faq-left {
	width: 100%;
}

.faq-right {
	width: 75%;
	background-image: url("../siteart/faq-aside.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.faq .question {
	margin: 10px 0;
	background: #fff;
}

button.collap {
	background: transparent;
	border: none;
	cursor: pointer;
	width: 100%;
	outline: none;
	padding: 15px;
	text-align: left;
	align-items: center;
	gap: 10px;
	color: #BD162D;
}

button.collap:hover, .faq .question:hover {
	background: transparent;
	color: #000;
}

button.collap .sm-heading {
	width: 100%;
}

.question p.body-text {
	padding: 0 15px 15px 15px;
}

.answer-1 {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.2s ease-out;
}

.collap::before {
    content: '+';
    color: #fff;
	background: #000;
	width: 40px;
	height: 40px;
    float: left;
    margin-left: 5px;
	font-size: 24px;
	font-family: "Montseratt", sans-serif;
	font-weight: 700;
	line-height: 0.9;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.collap.active::before {
  content: "-"; /* Unicode character for "minus" sign (-) */
}

.collap:hover::before {
	background: #FFCF06;
	color: #000;
}

.financing.flex {
	justify-content: space-around;
	gap: 30px;
	align-items: center;
}

.financing.flex img {
	display: block;
	width: 100%;
}
/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container .form-box {
	margin: 0 auto;
}

.form-box {
	background: #fff;
	padding: 5px 15px;
	box-shadow: 0 9px 30px -8px rgba(0,0,0,0.4);
	width: 70%;
}

.form-box .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label {
	font-family: "Barlow", sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-flex input, .form-flex select, .form-flex textarea, .form-flex .orange-btn, .form-flex div {
	width: 100%;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: #fff;
	color: #2D2D2D;
	font-family: "Barlow", sans-serif;
	font-size: 15px;
	padding: 10px;
	border: 1px solid #A3A3A3;
	border-radius: 0;
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
}

textarea {
	height: 150px;
}

form p {
	text-align: right;
}

.CaptchaPanel {
	font-family: "Barlow", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	background-color: #000;
	text-align: center;
	padding-bottom: 50px;
}

.footer-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-nav ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	margin: 30px 0;
}
.footer-nav ul li a {
	font-family: "Barlow", sans-serif;
	padding: 10px 5px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}

footer p {
	color: #ccc;
}

.footer-right {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-social {
	position: relative;
	text-decoration: none;
		display: inline-block;
	text-align: center;
	font-size:16px;
	word-spacing:13px;	
}

.footer-social a {
	color: #FFCF06;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/




/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1050px) {
	.stock {background-size:cover; background-position: 90%;}
	.stock .flex {flex-wrap: wrap;}
	.stock .flex img {max-width: 100%;}
	
	.about.flex {flex-wrap: wrap;}
	
	.financing.flex {flex-wrap: wrap;}
	
	.choose .flex {flex-wrap: wrap;}
	.choose-flex.flex {flex-wrap: nowrap; width: 100%;}
	
	.map.flex {flex-wrap: wrap;}
	.map.flex img, .map-aside{ width:100%; }
}

@media only screen and (max-width: 800px) {
	.dktop-header-container {display: none;}
	
	.xl-heading {font-size: 36px;}
	.heading {font-size: 32px;}
	.search-box .heading { font-size: 28px;}
	p.large-text {font-size: 18px;}
	
	.search-box {margin-top: -50px;}
	
	.about-omega .wid-90 {flex-wrap: wrap;}
	.about-omega .wid-90 div, .about-omega .wid-90 .about-aside {width: 100%;}
	
	.buying-bg .buying {flex-wrap: wrap; background-size:cover; background-position: 30%;}
	
	.contact-dealer {flex-wrap: wrap;}
	.dealer-info {width: 100%;}
	
	.faq .flex {flex-wrap: wrap;}
	.faq-right {width: 100%; height: 400px;}
	
}


@media only screen and (max-width: 600px) {
	.search-box {padding: 50px 10%;}
	.search-accent {width: 5%;}
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
	
	.location-title.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 500px) {
	.xl-heading {font-size: 26px;}
	.xl-heading span, p.large-text {font-size: 16px;}
	.heading, .search-box .heading {font-size: 24px;}
	
	.stock {background-position: 60%;}
}

@media only screen and (max-width: 450px) {
	.red-btn {min-width: unset; width: 100%;}
	
	.about-card .card-title {flex-wrap: wrap; justify-content: center;}
	.about-card .card-title .sm-heading {text-align: center;}
	
	.stock-text {flex-wrap: wrap;}
	
	.choose-flex.flex {flex-wrap:wrap; justify-content: center;}
	
	.map-aside {column-count: 2;}
	
	.contact-info.flex {flex-wrap: wrap;}
}






