﻿/***** 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 {
		
	--green: #235B42; 
	
	--gray: #eee;
	--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: 1600px;}

.padit {padding: 70px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 300px;}

.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: 800px;
}

.mobile-only {display: none;}

.gray-body {background-color:var(--gray);}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.white{color: #fff;}

.green {color: var(--green);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Oxanium", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Genos", sans-serif; }

p, li {
	font-family: "Oxanium", 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: 26px;
	font-weight: 800;
}

.heading {
	font-size: 52px;
	font-weight: 700;
	line-height: 1;
}

/*  BUTTONS  */

.btn-row.flex {
	gap: 10px 30px;
	flex-wrap: wrap;
}

a:has(.underline-btn) {
	width: fit-content;
	display: inline-block;
}

.underline-btn {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	padding: 0 5px 0 0;
	background: none;
	color: var(--green);
	font-family: "Genos", sans-serif;
	font-size: 22px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	border-bottom: 1px solid #000;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.underline-btn span {
	display: block;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.underline-btn span i {
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
	color: #000;
	font-size: 15px;
}

.underline-btn:hover span i {
	color: #2F6632;
	transform: translate(30%, 0);
}

.white.underline-btn {
	color: #fff;
	border-color: #fff;
}

.white.underline-btn span i {
	color: #fff;
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.header-container {
	position: relative;
}

.main-header {
	background: var(--green);
}

.main-header .flex {
	justify-content: space-between;
}

.main-header .logo {
	background-color: #fff;
	padding: 20px 30px;
	margin-bottom: -70px;
	position: relative;
	border-radius: 0 0 20px 20px;
}

.socials.flex {justify-content: flex-end; padding: 20px 0; gap: 20px;}

.mobile-socials.flex {
	padding: 30px 0;
	justify-content: center; gap: 20px;
}

.mobile-socials.flex a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border: 1px solid var(--gray2);
	color: #fff;
}

.mobile-socials.flex a:hover { background-color: #000;}

.mobile-call {
	margin: 20px 0;
}
.mobile-call p {
	padding: 10px 15px;
}

/*---BODY--------------------------------*/

.hero {
	background-color: var(--green);
/*	background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.00) 0%, rgba(51, 51, 51, 0.90) 70%), url("/siteart/hero.jpg");*/
	background-size: cover;
	background-position: center;
/*	padding: 120px 0;*/
	position: relative;
}

.hero-slider {
	position: relative;
}

/*Add gradient to slider*/
/*
.hero-slider::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0; 
	width: 100%;
	background-image: linear-gradient(90deg, rgba(51, 51, 51, 0.00) 0%, rgba(51, 51, 51, 0.90) 70%);
	z-index: 2;
}
*/

.hero-slider img {
	display: block;
	width: 100%;
	max-height: 670px;
	min-height: 530px;
	object-fit: cover;
	object-position: center;
}

.hero .wid-90.flex {
	gap: 30px 5%; 
	align-items: center; 
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

.hero-text {width: 100%;}

.hero-text h1.heading {
	font-size: 72px;
}

.hero-text p {
	padding-top: 30px;
	max-width: 500px;
}

.hero-links {
	width: 100%;
	max-width: 450px;
}

.hero-links a {
	display: block;
	background-color: #000;
	padding: 70px 45px;
	color: #fff;
	font-family: "Genos", sans-serif;
	text-align: center;
	font-size: 32px;
	font-weight: 800;
	border-radius: 20px;
	width: 100%;
	position: relative;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.hero-links #inv:hover, .hero-links #fin:hover, .hero-links #trade:hover {
	background-position: 5%;
}

.hero-links a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 300px;
}

.hero-links #inv {
	background-image: url("/siteart/inventory-icon.svg");
	background-size: contain;
	background-position: 10%;
	background-repeat: no-repeat;
}

.hero-links #trade {
	background-image: url("/siteart/trade-in-icon.png");
	background-size: contain;
	background-position: 10%;
	background-repeat: no-repeat;
	margin-top: 10px;
}

.hero-links #fin {
	background-image: url("/siteart/finance-icon.svg");
	background-size: contain;
	background-position: 10%;
	background-repeat: no-repeat;
	margin-top: 10px;
}

.about.flex {
	justify-content: center;
	align-items: center;
}

.about.flex .gray-body {
	padding: 30px 80px 30px 30px;
	border-radius: 20px;
	max-width: 680px;
	width: 100%;
}

.img-aside {
	width: 100%;
}

.img-aside img {
	display: block;
	width: 100%;
	border-radius: 20px;
	height: 320px;
	object-fit: cover;
	object-position: left center;
	border: 5px solid var(--green);
	box-shadow: 6px 6px 0 1px var(--green);
	margin-left: -50px;
}

.view-inv.flex {justify-content: space-around; gap: 30px 60px; padding-top: 30px;}

.inv-cat {width: calc(50% - 60px); max-width: 375px;}

.inv-cat a {
	display: block;
	width: 100%; 
	max-width: 375px;
	position: relative;
	background-color: #000;
	border-radius: 20px;
}

.inv-cat a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: calc(100% - 60px);
    left: calc(100% - 60px);
	background: rgba(35,91,66,0.50);
	border-radius: 20px;
	-webkit-transition:.2s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.inv-cat a:hover::after {
	bottom: 0%;
	left: 0%;
}

.list-content {max-width: 1455px!important;}
.list-container-flexrow .price-container .price {font-size: 23px!important;}

.detail__specs-label {font-size: 16px!important;}

.inv-cat img {
	display: block;
	border-radius: 20px;
	width: 100%;
}

.inv-cat .cat-title {
	position: absolute;
	bottom: 0;
	padding: 25px;
	font-size: 32px;
	font-weight: 700;
	line-height: 0.8;
	z-index: 1;
}

.cat-title span {
	font-size: 24px;
	font-weight: 400;
}

.inv-cat .go-icon {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 20px;
	padding: 20px;
	border-top-right-radius: 20px;
	background-color: var(--green);
	z-index: 1;
}

.img-wrap {
	position: relative;
}

.img-wrap::before {
	content: "";
	position: absolute;
	border-radius: 20px;
	top: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 70%);
}

.map.flex {
	gap: 30px 60px;
}

.map.flex iframe {
	display: block;
	border-radius: 20px;
	border: 5px solid #235B42;
	box-shadow: 6px 6px 0 1px #235B42;
}

.page-heading.padit {
	background-image: url("../siteart/hero-header-new.jpg");
	background-color:#000;
	background-size: cover;
	background-position: center;
	padding: 140px 0;
}

.page-heading .heading {
	text-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.faqs .question, .about.gray-body {
	padding: 30px;
	border-radius: 20px;
}

.faqs .question:nth-child(even) {
	background-color: var(--gray);
}

.locations.flex {
	justify-content: space-around;
	gap: 30px 5%;
	flex-wrap: wrap;
	padding-top: 50px;
}

.loc-card {
	padding: 30px;
	border-radius: 20px;
	width: 100%;
	max-width: 400px;
}

.locations .loc-card:nth-child(even) {
	background-color: var(--gray);
}

.loc-card .card-title {
	padding: 25px;
	font-size: 32px;
	font-weight: 700;
	line-height: 0.8;
}

.loc-card .card-title span {
	font-size: 24px;
	font-weight: 400;
}

.loc-card .flex {
	gap: 10px;
	align-items: center;
	margin: 10px 0;
}

.loc-card .flex .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background-color: var(--green);
}

.loc-card .flex a {
	color: #000;
	-webkit-transition:.2s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.loc-card .flex a:hover {
	color: var(--green);
}

.finance.flex {
	gap: 30px 5%;
	flex-wrap: wrap;
}

.finance.flex img {
	display: block;
	width: 100%;
	max-width: 200px;
}

.finance.flex .green {
	font-size: 22px;
    font-weight: 600;
	margin-bottom: 10px;
	font-family: "Genos", sans-serif;
}

/*--------FORM STYLES--------------------*/

textarea {
    min-height: 100px;
    resize: vertical;
}

input[type="file"] {
    padding: 8px;
}

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container {
	margin: 0 auto;
	background-color: #fff;
	border: 5px solid var(--green);
	box-shadow: 6px 6px 0 1px var(--green);
	border-radius: 30px;
	max-width: 1100px;
	padding: 30px 40px;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label {
	font-family: "Genos", sans-serif;
	font-size: 20px;
	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, .form-flex select, .form-flex textarea {
	background: #E8E8E8;
	border: 4px solid #e8e8e8;
	color: #2D2D2D;
	font-family: "Oxanium", sans-serif;
	font-size: 15px;
	padding: 10px;
	border-radius: 0;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	border: 4px solid var(--green);
	border-radius: 20px;
	box-shadow: 3px 3px 0 1px var(--green);
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Oxanium", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

.green-btn {
	border: none;
	padding: 15px 30px;
	font-size: 20px;
	font-family: "Genos", sans-serif;
	font-weight: 600;
	border-radius: 10px;
	background-color: var(--green);
	color: #fff;
	cursor: pointer;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.green-btn:hover {
	background-color: #234435;
	color: var(--gray);
}

.privacy-link {
	color: #235B42;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: #000;
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

footer h3.sm-heading {
	margin-bottom: 20px;
}

.footer-socials.flex {
	margin-top: 30px;
	background-color: var(--gray2);
	border: 1px solid var(--gray2);
	gap: 1px;
	width: fit-content;
}

.footer-socials.flex a {
	background-color: #000;
	font-size: 20px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-socials.flex a:hover {
	background-color: var(--green);
}

.footer-copy {
	background-color: var(--gray2);
	text-align: center;
	padding: 20px;
	border-radius: 20px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1350px) {
	.hero-text h1.heading {font-size: 64px;}
	.hero-links {max-width: 400px;}
	.hero-links a {padding: 60px 45px;}
}

@media only screen and (max-width: 1200px) {
	.main-header .right-header {display: none;}
	.main-header .flex {align-items: center;}
	
	.hero .wid-90.flex {flex-wrap: wrap;}
	.hero-text {width: unset;}
	.hero-links {display: flex; max-width: unset; justify-content: center; gap: 30px;}
	.hero-links a {max-width: 400px;}
	.hero-links #fin {margin-top: 0;}
	.hero-links #trade {margin-top: 0;}
}

@media only screen and (max-width: 1100px) {
	.heading {font-size: 36px;}
	
	.view-inv.flex {flex-wrap: wrap;}
	
	.locations.flex {padding-top: 20px;}
}

@media only screen and (max-width: 850px) {
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
	
	.hero .wid-90.flex {position: static; padding: 30px 0; transform: none;}
	.hero-links {flex-wrap: wrap;}
	.hero-slider img {min-height: unset;}
	
	.hero-text {width: 100%;}
	.hero-text h1.heading {font-size: 48px;}
	
	.about.flex {flex-wrap: wrap;}
	.about.flex .gray-body {padding: 30px 30px 80px;}
	.about.flex .img-aside {max-width: 620px; width: 90%;}
	.about.flex .img-aside img {margin-top: -50px; margin-left: 0;}
}


@media only screen and (max-width: 650px) {
	footer .wid-90.flex {justify-content: center;}
	.footer-links {width: 100%;}
	
	.inv-cat {width: 100%;}
	
	.map.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 500px) {
	.heading {font-size: 28px;}
	.sm-heading {font-size: 22px;}
	
	.main-header .logo {max-width: 200px; padding: 10px 20px; margin-bottom: -30px;}
	
	.page-heading.padit {padding: 70px 0;}
	
	.hero-slider::before {background-image: linear-gradient( rgba(51, 51, 51, 0.00) 0%, rgba(51, 51, 51, 0.90) 70%);}
	.hero-text h1.heading {font-size: 32px;}
	.hero-links a {font-size: 24px; padding: 45px;}
	
	.inv-cat, .inv-cat a {max-width: 275px;}
	
	.locations.flex {padding-top: 5px;}
	
	.finance.flex .or {width: 100%;}
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.underline-btn, a:has(> .underline-btn) {width: 100%;}
	
	.service.btn-row.flex .underline-btn {font-size: 18px;}
	
	.detail__specs-label {font-size: 14px!important;}
}






