﻿/***** 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 --------

	COLOR:  #XXXXXX
*/

:root {
		
	--yellow: #FFCC00; 
	
	--gray1: #ddd;
	--gray2: #333;
}

/***** 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%; margin: 0 auto; max-width: 1700px;}

.padit {padding: 70px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 250px;}

.logo img {width: 100%; display: block; padding: 10px 0;}

.flex {display: flex;}

.flex-1 {
	width: 100%;
}

.flex-2 {
	width: 50%;
}

.flex-1 .wid-90, .flex-2 .wid-90 {
	width: 80%; max-width: 850px;
}

.black-body {background-color: #000;}
.gray-body {background-color: var(--gray2);}
.yellow-body {background-color: var(--yellow);}

.mobile-only {display: none;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.white{color: #fff;}
.yellow {color: var(--yellow);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "urw-din", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "urw-din-semi-condensed", sans-serif; }

p, li {
	font-family: "urw-din", sans-serif;
}

p.body-text {
	line-height: 2;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

hr {
	margin: 50px 0;
	border: 1px solid #A91E22;
}

.sm-heading {
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.heading {
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
}

.heading.underline {
	width: fit-content;
	border-bottom: 10px solid var(--yellow);
	margin-bottom: 20px;
}
/*  BUTTONS  */

.yellow-btn {
	padding: 10px;
	background: var(--yellow);
	color: #000;
	font-family: "urw-din-semi-condensed", sans-serif;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.yellow-btn:hover {
	background: #fff;
	color: #000;
}

.yellow-btn.black-hover:hover {
	background: #000;
	color: #fff;
}

.black-btn {
	padding: 10px;
	background: #000;
	color: #fff;
	font-family: "urw-din-semi-condensed", sans-serif;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.black-btn:hover {
	background: #fff;
	color: #000;
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.main-header {
	background: #000;
	padding: 20px 0;
}

.main-header .flex {
	justify-content: space-between;
	align-items: center;
}

.header-connect.flex {
	gap: 25px;
}

.header-connect.flex a {
	color: var(--yellow);
	font-size: 25px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.header-connect.flex a:hover {
	color: #fff;
}

.nav-container {
	background-color: var(--gray2);
}

/*---BODY--------------------------------*/

.hero {
	background-color: #000;
	align-items: stretch;
	position: relative;
}

.hero .text-side {
	background: linear-gradient(90deg, #000 40%, rgba(0, 0, 0, 0.00) 50%);
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	height: 100%;
	display: flex;
	align-items: center;
	padding: 50px 0;
}

.hero .text-side .heading {
	font-size: 106px;
	letter-spacing: -3px;
	padding-bottom: 20px;
	line-height: 1;
}

.hero .hero-image {
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.00) 100%), url("../siteart/new-hero-bg.jpg");
	background-size: cover;
	background-position: center;
	width: 60%;
	margin-left: auto;
}

.hero .hero-image .wid-90 {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.hero-image img {
	display: block;
	max-width: 225px;
	padding: 150px 0;
}

.light-bg {
	background-image: url("../siteart/light-bg.jpg");
	background-size: cover;
	background-position: center;
}

.inv-cats {
	padding-top: 70px;
}

.inv-cats .heading.underline {
	margin: 0 auto 20px;
	text-align: center;
}

.inv-cats .flex {
	justify-content: space-around;
	gap: 40px 5%;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 0 auto;
}

.inv-card {
	border: 2px solid #DDD;
	background: #FFF;
	padding: 40px;
	text-align: center;
	width: 20%;
	max-width: 280px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.inv-card:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.inv-card img {
	display: block;
	width: 100%;
	padding-bottom: 40px;
}

.inv-card h3 {
	font-family: "urw-din-semi-condensed", sans-serif;
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	color: #000;
}

.inv-search.flex {
	background-color: #fff;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	padding: 40px 60px;
	border-radius: 100px;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-bottom: -73px;
}

.inv-search.flex form.flex {
	gap: 0 25px;
	width: 100%;
	max-width: 700px;
}

.inv-search.flex form.flex .form-flex {
	width: 100%;
}

.inv-search.flex form.flex .form-flex:has(input) {
	width: 166%;
}

.black-body.about {
	padding-top: 73px;
	background-image: linear-gradient(#000 0%, rgba(0, 0, 0, 0.20) 70%), url("../siteart/dark-texture.jpg");
	background-size: cover;
	background-position: center;
}

.black-body.about .wid-90.flex {
	padding-top: 70px;
	gap: 30px 5%;
}

.black-body.about .text-side {
	width: 55%;
	padding-bottom: 70px;
}

.black-body.about .text-side p {
	padding: 30px 0;
}

.black-body.about .gray-body {
	padding: 30px;
}

.black-body .img-aside {
	width: 45%;
}

.black-body .img-aside img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.financing.flex {
	padding-top: 70px;
	gap: 30px 5%;
}

.financing.flex .wid-90 {
	padding-bottom: 70px;
}

.financing.flex .img-aside {
	position: relative;
	min-height: 150px;
}

.financing.flex .img-aside img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 0 100px 0 0;
}

.upgrade.flex {
	gap: 30px 20px;
	justify-content: space-between;
	align-items: center;
}

.upgrade.flex .text {
	max-width: 680px;
}

.upgrade.flex .text .heading {
	padding-bottom: 25px;
}

.upgrade.flex .btns-aside.flex {
	flex-direction: column;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 25px;
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container {
	margin: 0 auto;
	background-color: #fff;
	border: 6px solid #2F6632;
	border-radius: 30px;
	max-width: 900px;
	box-shadow: 0 7px 20px -5px rgba(0,0,0,0.6);
}

.form-box {
	padding: 30px 40px;
	margin: 0 auto;
}

.form-box .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label, .form-flex legend {
	font-family: "urw-din-semi-condensed", sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-field, .form-flex input, .form-flex select, .form-flex textarea, .form-flex div {
	width: 100%;
}

.form-flex input[type="radio"], .form-flex input[type="checkbox"] {
	width: unset;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: #fff;
	border: none;
	color: #000;
	font-family: "urw-din-semi-condensed", sans-serif;
	font-size: 15px;
	padding: 10px;
	border-radius: 0;
	border-bottom: 5px solid var(--yellow);
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	border-bottom: 5px solid #000;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Outfit", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: #222;
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 50px 20px;
	flex-wrap: wrap;
}

.footer-left .socials.flex {
	gap: 20px;
	padding: 10px 0;
}

.footer-left .socials.flex a {
	color: var(--yellow);
	font-size: 20px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-left .socials.flex a:hover {
	color: #fff;
}

.footer-left a.phone-link {
	color: #fff;
	font-family: "urw-din-semi-condensed";
	font-weight: 900;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-left a.phone-link:hover {
	color: var(--yellow);
}

.footer-right.flex {
	gap: 30px 100px; flex-wrap: wrap;
}

footer h3.sm-heading {
	margin-bottom: 10px;
}

.footer-nav .flex {
	gap: 0 40px;
	flex-wrap: wrap;
}

.footer-nav ul li a {
	color: #fff;
	line-height: 2;
	cursor: pointer;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-nav ul li a:hover {
	color: var(--yellow);
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1500px) {
	.hero .text-side .heading {font-size: 88px;}
}

@media only screen and (max-width: 1300px) {
	.hero .text-side .heading {font-size: 76px;}
	
	.inv-search.flex form.flex .form-flex:has(input) {
		width: 100%;
	}
	
	.inv-search.flex form.flex {max-width: 600px;}
	
	.black-body.about .text-side, .black-body .img-aside {width: 100%;}
	
}

@media only screen and (max-width: 1000px) {
	.hero .text-side {position: static; transform: unset;}
	.hero .hero-image {width: 100%;}
	.hero-image img {padding: 100px 0;}
	
	.heading {font-size: 36px;}
	
	.inv-card {width: 45%;}
	.inv-card img {padding-bottom: 20px;}
	
	.inv-search.flex {flex-wrap: wrap; border-radius: 60px; justify-content: center; margin-bottom: -100px;}
	.black-body.about {padding-top: 100px;}
	
	.black-body.about .wid-90.flex {flex-wrap: wrap;}
	.black-body.about .text-side {padding-bottom: 0;}
	
	.upgrade.flex {flex-wrap: wrap;}
	.upgrade.flex .btns-aside.flex {flex-direction: row;}
}

@media only screen and (max-width: 850px) {
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
	
	.financing.flex {flex-wrap: wrap;}
	.financing.flex .wid-90 {padding-bottom: 0;}
	.financing.flex .img-aside {order: 2;}
	.financing.flex .img-aside img {width: 95%; border-radius: 0 50px 0 0;}
}


@media only screen and (max-width: 650px) {
	.heading {font-size: 26px;}
	
	
	.main-header .flex {justify-content: center;}
	.header-connect.flex {display: none;}
	
	.hero-image img {padding: 50px 0; max-width: 150px}
	.hero .text-side .heading {font-size: 56px;}
	
	.inv-search.flex {padding: 20px; border-radius: 20px; margin-bottom: -40px; text-align: center;}
	.black-body.about {padding-top: 40px;}
	.inv-search.flex form.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 500px) {
	.hero .text-side .heading {font-size: 40px; letter-spacing: -1px;}
	
	.inv-card {padding: 15px;}
	.inv-card h3 {font-size: 18px;}
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.yellow-btn, a:has(> .yellow-btn), .black-btn, a:has(> .black-btn) {width: 100%;}
}






