﻿/***** 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 {
		
	--red: #CD0512; 
	--red2: #A40000;
}

/***** 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: 200px;}

.logo img {width: 100%; display: block;}

.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;}
.red {color: var(--red);}
.dark-red {color: var(--red2);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Roboto", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif; }

p, li {
	font-family: "Roboto", sans-serif;
}

p.body-text {
	line-height: 2;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

ul.icon-bullets {
	margin-left: 20px;
}

ul.icon-bullets li {
	position: relative;
}

ul.icon-bullets li i {
	position: absolute;
	right: 100%;
	line-height: 2;
}

hr {
    margin: 0;
    border: none;
    border-top: 1px solid #444;
}

.sm-heading {
	font-size: 24px;
	font-weight: 700;
}

.heading {
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

/*  BUTTONS  */

.red-btn {
	display: inline-block;
	text-align: center;
	padding: 12px 40px;
	background: var(--red2);
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	letter-spacing: 1.5px;
	font-weight: 700;
	text-transform: uppercase;
	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;
}

.red-btn:hover {
	background: #444;
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.main-header {
	background: #fff;
	border-bottom: 5px solid var(--red);
}

.main-header .flex {
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.header-contact.flex {
	justify-content: flex-end;
	margin-bottom: 55px;
	gap:0;
}

.header-contact.flex a {
	padding: 25px 50px;
	background-color: var(--red);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	transition: .3s ease all;
}

.header-contact.flex a:nth-child(odd) {
	background-color: var(--red2);
}

.header-contact.flex a:hover {
	background-color: #444;
}

/*---BODY--------------------------------*/

.page-heading.flex .title {
	background-color: var(--red);
	background-image: linear-gradient(90deg, var(--red2), var(--red));
	width: 100%;
	padding: 50px 0;
}

.page-heading.flex .leaf {
	width: 20%;
	max-width: 200px;
	background-color: #eee;
	background-image: url("../siteart/leaf-half.svg"), linear-gradient(90deg, #ddd, #fff);
    background-repeat: no-repeat;
    background-size: contain;
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container {
	margin: 0 auto;
	background-color: #fff;
	border: 1px solid #aaa;
	max-width: 900px;
	box-shadow: 0 7px 20px -5px rgba(0,0,0,0.6);
	padding: 30px 40px;
}

.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: "Roboto", 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: #eee;
	border: 1px solid #eee;
	color: #2D2D2D;
	font-family: "Roboto", 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: #F6E2E2;
	border: 1px solid var(--red);
	border-radius: 5px;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Outfit", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: #fff;
}

.footer-top {
	height: 54px;
	background-color: var(--red);
	clip-path: polygon(100% 0, 100% 10px, 5% 100%, 0 10px, 0 0);
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}

.footer-nav .flex {
	gap: 0 40px;
	flex-wrap: wrap;
}

.footer-nav li a {
	color: #000;
	font-family: "Poppins", sans-serif;
	line-height: 2.5;
	font-weight: 500;
	font-size: 20px;
	text-transform: uppercase;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-nav li a:hover {
	color: var(--red);
}

footer .logo {max-width: 220px;}

.footer-bottom.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-contact.flex {
	gap: 20px;
	flex-wrap: wrap;
}

.footer-contact.flex a {
	color: #000;
	font-weight: 600;
	transition: .3s ease all;
}

.footer-contact.flex a:hover {
	color: var(--red);
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1300px) {
	
}

@media only screen and (max-width: 1000px) {
	.header-contact.flex span {display: none;}
}

@media only screen and (max-width: 850px) {
	.heading {font-size: 36px;}
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
}


@media only screen and (max-width: 600px) {
	.header-contact.flex {margin-bottom: 40px;}
	.header-contact.flex a {padding: 15px 30px;}
	
	.main-header .logo {max-width: 150px;}
	
	.page-heading.flex .leaf {background-size: cover;}
}

@media only screen and (max-width: 500px) {
	.heading {font-size: 28px;}
	
	.footer-top {height: 30px;}
}

@media only screen and (max-width: 450px) {
	footer .logo {margin: 0 auto;}
/*	make buttons full width*/
	.red-btn {width: 100%;}
}






