﻿/***** 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: #005E39; 
	
	--bright-green: #00C476;
	--gray: #eee;
}

/***** 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: 1800px;}

.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: 900px;
}

.mobile-only {display: none;}

.gray-body {background-color: var(--gray);}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.white{color: #fff;}
.green {color: var(--green);}
.bright-green {color: var(--bright-green);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Archivo", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Archivo", sans-serif; }

p, li {
	font-family: "Archivo", sans-serif;
}

p.body-text {
	line-height: 1.5;
}

.line-break {line-break: anywhere;}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

.verse {
	padding: 20px;
	line-height: 2;
	font-size: 18px;
	text-align: center;
	font-style: oblique;
}

.sm-heading {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: .4px;
	text-transform: uppercase;
	font-variation-settings:
    "wdth" 80;
}

.heading {
	font-size: 40px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
}
/*  BUTTONS  */

.white-btn {
	padding: 15px 30px;
	background: #fff;
	color: #000;
	font-family: "Archivo", sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	font-variation-settings:
    "wdth" 80;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.white-btn:hover {
	color: var(--green);
	background-color: var(--gray);
}


.green-btn {
	padding: 15px 30px;
	background: var(--bright-green);
	color: #000;
	font-family: "Archivo", sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	font-variation-settings:
    "wdth" 80;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.green-btn:hover {
	color: var(--green);
	background-color: var(--gray);
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.header-container {
	position: relative;
}

.main-header {
	background: #FFF;
}

.main-header .flex {
	justify-content: space-between;
	align-items: center;
}

.main-header .gray-body {
	width: 30%;
	max-width: 250px;
	padding: 20px;
	text-align: center;
}

.header-contact {
	line-height: 2;
}

.header-contact a {
	color: #000;
	font-weight: 600;
	padding: 7px;
	transition: .3s ease all;
}

.header-contact a:hover {
	background-color: rgba(0,0,0,0.1);
}

.header-contact i {
	color: var(--green);
}

.mobile-contact {
	background-color: #fff;
	padding: 10px 20px;
	line-height: 2;
	width: 80%;
	margin: 0 auto;
	margin-top: 20px;
}

.mobile-contact a {color: #000;}

/*---BODY--------------------------------*/

.hero-search {
	background-color: #000;
	width: 100%;
	max-width: 600px;
}

.hero-search .wid-90 {
	padding: 50px 0;
}

.hero-search .heading span {
	color: var(--bright-green);
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 1.6px;
	font-variation-settings:
    "wdth" 80;
}

.hero-search .body-text {
	padding: 20px 0 0;
}

.hero-search h3.sm-heading {
	font-size: 20px;
	font-style: italic;
}

.inv-search {margin: 30px 0;}

.search-bar {
	width: 100%;
	max-width: 350px;
	padding-top: 10px;
}

.search-bar input {
	background-color: #fff;
	border: none;
	border-radius: 0;
	padding: 12px 20px;
	font-family: "Archivo", sans-serif;
	width: 100%;
}

.search-bar input::placeholder {
	color: var(--green);
	font-style: italic;
}

.search-bar input:focus-visible {
	outline: 0;
}

.search-bar button {
	border: none;
	border-radius: 0;
	background-color: var(--bright-green);
	color: #000;
	width: 39px;
	height: 39px;
	cursor: pointer;
	transition: .3s ease all;
}

.search-bar button:hover {
	background-color: #009B5D;
}

.hero-image {
	width: 100%;
	min-height: 250px;
	background-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.00) 50%), url("/siteart/hero.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left center;
}

.inv-cats .heading {
	text-align: center;
}

.inv-cats .flex {
	justify-content: space-around;
	gap: 30px;
	padding-top: 30px;
}

.inv-cats .flex .inv-card {
	display: block;
	width: 100%;
	max-width: 350px;
	aspect-ratio: 3 / 2;
	position: relative;
	background-color: var(--green);
	background: linear-gradient(180deg, var(--bright-green), var(--green));
}

.inv-cats .flex img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
}

 .inv-card .img-wrap {
	position: relative;
	 width: 100%;
	 aspect-ratio: 3 / 2;
}

.inv-card .img-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 50%, #000 75%);
	background-size: 100% 200%;
	background-position: 0% 50%;
	transition: .3s ease all;
}

.inv-card.all-inv .img-wrap::after {
	background: #000;
	opacity: .2;
}

.inv-card:hover .img-wrap::after {
	background-position: 0% 75%;
}

.inv-card.all-inv:hover .img-wrap::after {
	opacity: .4;
}

.inv-card .cat-title {
	position: absolute;
	padding: 20px;
	bottom: 0;
	color: #fff;
	font-size: 20px; 
	font-weight: 900;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.inv-card.all-inv .cat-title {
	text-align: center;
	bottom: 50%;
	width: 100%;
	transform: translate(0, 50%);
}

.inv-card .cat-title span {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.3px;
	font-variation-settings:
    "wdth" 80;
}

.inv-card .go {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--bright-green);
	color: #000;
	font-size: 30px;
	padding: 15px;
}

.green-bg {
	background-color: var(--green);
	background-image: url("../siteart/green-bg.jpg");
	background-size: cover;
	background-position: center;
}

.financing.flex {
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.financing.flex .heading {
	max-width: 450px;
}

.inv-scroll.flex {
	gap: 30px 5%;
	align-items: center;
}

.equip-aside {
	background-color: var(--gray);
	width: 90%;
	max-width: 500px;
	margin: 90px 60px 60px 0;
}

.equip-aside img {
	display: block;
	padding-left: 45px;
	margin: -90px -60px -60px 0;
	width: 110%;
}

.inv-right {
	width: 100%;
}

.inv-right .gray-body {
	margin-top: 40px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.inv-right .gray-body .sm-heading {
	padding: 20px;
}

.home-map.flex {
	padding-top: 50px;
	justify-content: space-between;
	gap: 50px 5%;
}

.flex.home-map .touch {
	background-color: #fff;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	width: 100%;
	max-width: 550px;
}

.flex.home-map .touch .gray-body {
	padding: 20px 0;
}

.flex.home-map .touch .contact-item {
	margin: 30px 0;
}

.flex.home-map .touch .contact-item .sm-heading {
	padding-bottom: 10px;
}

.flex.home-map .touch .contact-item a {
	color: #000;
	transition: .3s ease all;
}

.flex.home-map .touch .contact-item a:hover {
	color: var(--green);
}

.flex.home-map .touch .green-btn {
	margin-bottom: 30px;
}

.flex.home-map .map {
	width: 100%;
	max-width: 850px;
	position: relative;
}

.flex.home-map .map iframe {
	display: block;
	position: absolute;
	height: 100%;
	min-height: 450px;
}

.page-heading {
	padding: 80px 0;
}

.contact-form.flex {
	gap: 50px 5%;
}

.contact-aside {
	width: 100%;
	max-width: 620px;
}

.contact-icon.flex {
	gap: 10px;
	align-items: center;
	margin: 30px 0;
}

.contact-icon .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	background-color: var(--bright-green);
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.contact-icon a {
	color: #000;
	font-weight: 600;
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container {
	background-color: #fff;
	width: 100%;
	max-width: 800px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	margin: 0 auto;
}
.form-container .heading, .form-wrap {
	padding: 20px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label, .form-flex legend {
	font-family: "Archivo", 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: var(--gray);
	border: 2px solid var(--gray);
	color: #2D2D2D;
	font-family: "Archivo", sans-serif;
	font-size: 15px;
	padding: 15px;
	border-radius: 0;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	border: 2px solid var(--bright-green);
	background: #f5f5f5;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Archivo", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding: 10px 0 250px;
	background: #000;
	background-image: url("/siteart/equipment-silhouette.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

footer h3.heading {
	margin-bottom: 10px;
	text-align: center;
}

.footer-links.flex {
	max-width: 1000px;
	margin: 0 auto;
	border-top: 2px solid #fff;
	padding-top: 20px;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-nav.flex, .footer-contact.flex {
	gap: 20px;
}

.footer-nav li a, .footer-contact a {
	color: #fff;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-nav li a:hover, .footer-contact a:hover {
	color: var(--bright-green);
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1300px) {
	.header-contact {display: none;}
	.main-header .gray-body {width: unset; padding: 0;}
	.main-header .logo {max-width: 175px;}
	
	.heading {font-size: 36px;}
	.hero-search .heading span {font-size: 28px;}
}

@media only screen and (max-width: 1100px) {
	.inv-cats .flex, .inv-scroll.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 850px) {
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
	
	.top-header .verse {font-size: 16px;}
	
	footer {background-size: contain; background-position: center bottom; padding: 10px 0 150px;}
	.footer-nav.flex {display: block; line-height: 2;}
	
	.hero.flex, .home-map.flex, .contact-form.flex {flex-wrap: wrap;}
	.hero-image {order: -1; background-image: url("../siteart/hero.jpg");}
	.hero-search {max-width: unset;}
	.hero-search .wid-90 {width: 90%;}
	
	.flex.home-map .map iframe {position: static;}
}


@media only screen and (max-width: 600px) {
	.heading {font-size: 26px;}
	.sm-heading {font-size: 20px;}
	.hero-search .heading span {font-size: 20px;}
	
	.page-heading {padding: 60px 0;}
}

@media only screen and (max-width: 500px) {
	footer {padding: 0 0 50px;}
	.footer-links.flex {flex-direction: column;}
	.footer-contact.flex {flex-wrap: wrap;}
	
	.equip-aside img {margin: -60px -30px -30px 0; }
	.equip-aside {margin: 60px 30px 30px 0;}
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.white-btn, a:has(.white-btn), .green-btn {width: 100%;}
	
	.top-header .verse {font-size: 14px;}
}






