﻿/***** 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: #FEC52E; 
	
	--gray: #666;
}

/***** 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: calc(100% - 60px); margin: 0 auto; max-width: 1900px;}

.padit {padding: 70px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 240px;}

.logo img {width: 100%; display: block; padding: 20px;}

.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;}

/*------------- 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: "barlow", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Orbitron", serif; }

p, li {
	font-family: "Barlow", sans-serif;
	font-size: 16px;
}

p.body-text {
	line-height: 1.5;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

hr {
	margin: 20px 0;
	border: 1px solid var(--yellow);
}

.sm-heading {
	font-size: 20px;
	font-weight: 700;
}

.heading {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}

/*  BUTTONS  */

.yellow-btn {
	background: var(--yellow);
	color: #fff;
	font-family: "orbitron", sans-serif;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	border: none;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.yellow-btn:hover {
	color: #2F6632;
}

/*--- HEADER STYLES ---------------------*/

.top-header {
	background-color: #000;
	padding: 12px 0;
}

.top-header .wid-90.flex {
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.top-header .left.flex {
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
}

.top-header .flex a {
	color: #fff;
	font-weight: 500;
	font-family: "orbitron", sans-serif;
}

.top-header .right ul {
	display: flex;
}

.top-header .right ul li a {
	padding: 13px 20px;
	font-size: 14px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.top-header .right ul li a:hover {
	color: var(--yellow);
}

.main-header {
	background-color: #000;
	background-image: url("../siteart/header-bg.jpg");
	background-size: cover;
	background-position: center;
}

.main-header .flex {
	justify-content: space-between;
	align-items: center;
}

.main-header .nav-container {flex-shrink: 0;} 

/*---BODY--------------------------------*/

.socials.flex {
	gap: 5px;
}

.socials.flex a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	aspect-ratio: 1 / 1;
	background-color: var(--yellow);
	border-radius: 20px;
	font-size: 15px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.socials.flex a:hover {
	background-color: #E0B43F;
	color: #ddd;
}

/*--------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 {
	font-family: "Outfit", 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, .form-flex select, .form-flex textarea {
	background: #E8E8E8;
	border: none;
	color: #2D2D2D;
	font-family: "Outfit", 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;
	background: #F2ECD2;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Outfit", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: #000;
}

footer .wid-90 {
	max-width: 1200px;
}

.footer-top.flex {
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 40px;
}

.footer-top.flex .connect, .footer-top.flex .location {
	width: 100%;
}

.footer-top .connect {
	text-align: center;
}

.footer-top .connect .logo {
	margin: 0 auto;
}

.footer-top .logo img {
	padding: 15px 20px;
}

.footer-top .email {
	color: #fff;
	font-family: "orbitron", sans-serif;
	font-size: 20px;
	font-weight: 800;
}

.footer-top.flex .socials {
	padding-top: 15px;
	justify-content: center;
}

footer h3.sm-heading {
	margin-bottom: 10px;
}

.footer-top .location {
	border-right: 1px solid #666;
}

.footer-top .location .flex {
	align-items: center;
	gap: 10px;
	margin: 15px 0;
}

.footer-top .location .flex i {
	font-size: 30px;
}

.footer-top .location .flex a {
	color: #fff;
	font-weight: 500;
	line-height: 1.5;
	font-size: 17px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-top .location .flex a:hover {
	color: var(--yellow);
}

footer p.copy {text-align: center;}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1300px) {
	
}

@media only screen and (max-width: 1025px) {
	.top-header {display: none;}
	.main-header .logo img {padding: 10px 0; width: 70%;}
	
	.footer-top.flex {flex-wrap: wrap;}
	footer .wid-90 {max-width: 700px;}
}

@media only screen and (max-width: 850px) {
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
}


@media only screen and (max-width: 600px) {
	
}

@media only screen and (max-width: 500px) {
	
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.yellow-btn {width: 100%;}	
}






