﻿/***** 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 --------

	RED:  #C8102E
*/

/***** END RESET *****/
::-moz-selection {
    background: #C8102E; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #C8102E;
    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 {

}

.flex {display: flex;}

.wid-90 {width: 90%; margin: 0 auto; max-width: 1300px;}

.padit {padding: 50px 0;}

.logo {max-width: 300px;}

.logo img {padding: 35px 0; width: 100%; display: block;}

#menu-button .logo {max-width: 200px; margin-left: 20px;}

.mobile-only {display: none;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.red {color: #C8102E;}

.white {color: #fff;}

.black {color: #000;}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Roboto Condensed", sans-serif;}
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Roboto Condensed", sans-serif; }

p, li {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px;
}

p.body-text {
	line-height: 1.8;
	font-weight: 400;
}

.sm-heading {
	font-size: 24px;
	font-weight: 800;
	font-family: "Roboto Condensed", sans-serif;
}

.heading {
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
}

/*  BUTTONS  */


/*--- HEADER STYLES ---------------------*/
header {background-color: #C8102E;}

.main-header .wid-90 {
	display: flex;
	justify-content: space-between;
}

.header-top {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}

.header-top a {
	font-size: 22px;
}



/*---BODY--------------------------------*/

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	gap: 30px;
}

.form-container {
	width: 100%;
}

.form-flex { 
	display: flex;
	gap: 20px;
	padding: 10px 0;
}

.form-field {
	width: 100%;
}

.form-container label {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 600;
}

.form-flex input, textarea {
	border: none;
	border-radius: 1px;
	padding: 10px;
	background-color: #eee;
	font-family: "Roboto", sans-serif;
	width: 100%;
}
.form-flex input:focus, textarea:focus {
	outline: none;
	background-color: rgba(240,98,41,0.33);
}

textarea {
	height: 75px;
}

.CaptchaPanel {
	font-family: "Roboto", sans-serif;
}

.captcha-button {
/*	text-align:center;*/
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	background-color: #C8102E;
}

footer .wid-90 {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer h3 {
	margin-bottom: 10px;
}

footer .about {width: 50%;}

.footer-nav ul li a {
	color: #fff;
	line-height: 200%;
	font-weight: 900;
	font-size: 18px;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-nav ul li a i {
	font-size: 15px;
}

.footer-contact p {
	font-weight: 700;
}

.flex.footer-social {flex-wrap: wrap; gap: 20px; margin-top: 30px;}

.footer-social a {color: #fff; padding: 15px; width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border: 1px solid rgba(255,255,255,0.38); border-radius: 20px; -webkit-transition:.4s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;}

.footer-social a:hover {background: #000; border-color: #000;}

.bottom-footer {background: #000; padding: 30px 0;}

.bottom-footer .flex {justify-content: space-between; gap: 20px;}

.foot-left {width: 50%; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;}

.foot-left a {font-weight: 900; transition: .3s ease-in;}
.foot-left a:hover {color: #C8102E;}

.foot-right .body-text {font-size: 14px; text-align: right;}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/







/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1350px) {
}

@media only screen and (max-width: 1250px) {
}

@media only screen and (max-width: 1175px) {
	.wid-90 {width: 95%;}
}

@media only screen and (max-width: 1040px) {
	.main-header .wid-90 {display: none;}
}

@media only screen and (max-width: 900px) {
	footer .about, .foot-left, .foot-right {width: 100%;}

}

@media only screen and (max-width: 700px) {
}


@media only screen and (max-width: 600px) {
}

@media only screen and (max-width: 500px) {
	 
}

@media only screen and (max-width: 450px) {
	.mobile-only {display: initial;}
	
	.white-btn, .orange-btn {width: 100%;}
	
	.form-flex {flex-wrap: wrap; gap: 10px; padding: 5px 0;}
}






