﻿/***** 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 --------

	BLUE:  #265AA5
	RED: #E4252B
	DARK RED: #CA1319

	GRAY: #EFEFEF
*/

/***** 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 {

}

.flex {display: flex;}

.flex-1 {width: 100%;}

.wid-90 {width: 90%; max-width:1600px; margin: 0 auto;}

.padit {padding: 50px 0;}

.logo {max-width: 300px;}

.logo img {display: block; width: 100%;}

.blue-body {background-color: #265AA5;}

.gray-body {background-color: #EFEFEF;}

.page-heading {background-color: #E9E9E9; padding: 30px;}

.mobile-only {display: none;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.blue {color: #265AA5;}

.white {color: #fff;}

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: "Roboto Condensed", sans-serif; }

p, li {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
}

p.body-text {
	line-height: 2;
}

hr{border:#919191 1px solid;}

.sm-heading {
	font-size: 32px;
	text-transform: uppercase;
}

.heading {
	font-size: 40px;
	text-transform: uppercase;
	font-weight: 900;
}

.hero-heading {
	text-transform: uppercase;
	font-size: 40px;
	line-height: 0.8;
}

.hero-heading span {
	font-size: 24px;
}

/*  BUTTONS  */

.red-btn {
	background: #E4252B;
	padding: 15px;
	min-width: 225px;
	color: #fff;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 16px;
	font-weight: 900;
	border: none;
	cursor: pointer;
	-webkit-transition:.5s ease-in;  
	-moz-transition:.5s ease-in;  
	-o-transition:.5s ease-in;  
	transition:.5s ease-in;
}

.red-btn:hover {
	background: #AD151A;
}

.red-btn.alt {
	background-color: #CA1319;
}

.red-btn.alt:hover {
	background-color: #AD151A;
}


/*--- HEADER STYLES ---------------------*/

.top-header {
	background-color: #000;
	padding: 10px 0 20px 0;
}

.top-header .flex {
	justify-content: space-between;
	gap: 20px;
}

.top-header .socials a {
	color: #E4252B;
	font-size: 20px;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
	line-height: 1;
}
.top-header .socials a:hover {
	color: #fff;
}

span.icon {
	display:flex;
	width: 18px;
	height: 18px;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	border-radius: 2px;
	color: #000;
	background: #E4252B;
}

a.contact-item {
	display: flex;
	gap: 5px;
	color: #fff;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px;
	font-weight: 900;
	align-items: center;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

a.contact-item:hover {
	color: #E4252B;
}

.main-header .wid-90 {
	position: relative;
}

.main-header .wid-90 .logo {
	position: absolute;
	top: -10px;
	z-index: 10;
}

/*---BODY--------------------------------*/

.hero {
	background-color: #000;
	position: relative;
}

.hero img {
	display: block;
	width: 100%;
}

.hero-text {
	position: absolute;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -30%);
	text-align: center;
	width: 90%;
}

.hero-text h1.heading {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	letter-spacing: 5px;
}

.hero-text h1.heading span {
	font-size: 24px;
	font-weight: 400;
	font-style: italic;
}

.button-row.flex {
	justify-content: center; 
	margin: 0 auto;
	margin-top: 10px;
	background-color: #E4252B;
	width: fit-content;
}

.mobile-only .button-row.flex {
	margin: 0 auto;
	width: unset;
}

.mobile-only .button-row.flex a, .mobile-only .button-row.flex .red-btn {
	width: 100%;
}

.about.flex {
	gap: 150px;
	align-items: flex-start;
}

.about.flex .about-text {
	width: 85%;
}

.about.flex .about-links.flex {
	width: 50%;
	flex-wrap: wrap;
	gap: 20px;
}

a.img-link {
	display: block;
	width: 100%;
	background-color: #E4252B;
	color: #fff;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	padding: 35px 0;
	position: relative;
	
}

a.img-link span {
	position: relative;
}

a.img-link.financing {
	background-image: url("../siteart/financing.jpg");
	background-size: cover;
	background-position: center;
}

a.img-link.insurance {
	background-image: url("../siteart/insurance.jpg");
	background-size: cover;
	background-position: center;
}

a.img-link::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(#E4252B, #961115);
	opacity: 0.8;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.4s ease-in;  
	-o-transition:.4s ease-in;  
	transition:.4s ease-in;
}

a.img-link:hover::before {
	opacity: .95;
}

h3.sm-heading {margin-bottom: 10px;}

 .scrolling-wrap {
	position: relative;
	width: 90%;
	height: 90px;
}

.scrolling-wrap iframe {
	width: 100%;
	height: 90px;
}

.scrolling-wrap::before {
	content: "";
	position: absolute;
	right: -1px;
	top: -1px;
	width: 92px;
	aspect-ratio: 1 / 1;
	background-color: #EFEFEF;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container .form-box {
	margin: 0 auto;
}

.form-box {
	background: #fff;
	padding: 5px 15px;
	box-shadow: 0 9px 30px -8px rgba(0,0,0,0.4);
	width: 70%;
}

.form-box .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label {
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-flex input, .form-flex select, .form-flex textarea, .form-flex .orange-btn, .form-flex div {
	width: 100%;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: #E8E8E8;
	color: #2D2D2D;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	padding: 15px;
	border: none;
	border-radius: 0;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Roboto", sans-serif;
}

.captcha-button {
/*	text-align:center;*/
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
.footer-top {
	height: 75px;
	position: relative;
}

.footer-top::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: -1px;
	left: 0;
	right: 0;
	background-color: #000;
	border-bottom: 2px solid #000;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.footer-top::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 50%;
	background-color: rgba(38,90,165,0.25);
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

footer {
	background-color: #000;
	padding-bottom: 50px;
	gap: 20px;
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

footer .logo {margin: 0 auto;}

.footer-nav h3.sm-heading {
	font-size: 20px;
}

.footer-nav ul {
	margin-top: 10px;
}

.footer-nav ul li a {
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	line-height: 2;
}

.footer-contact p {
	text-align: right;
}

.footer-contact a {
	color: #fff;
	font-weight: 700;
	text-align: right;
}

.footer-contact .socials {
	gap: 16px;
	justify-content: flex-end;
}

.footer-contact .socials a {
	font-size: 20px;
	color: #E4252B;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.footer-contact .socials a:hover {
	color: #fff;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/




/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1050px) {
	.about.flex {gap: 20px;}
}

@media only screen and (max-width: 900px) {
	.main-header .wid-90 {display: none;}
	.top-header {padding: 10px 0;}
	
	.heading {font-size: 28px;}
	.sm-heading {font-size: 24px;}
	
	.hero-text h1.heading span {font-size: 18px;}
	.about.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 700px) {
	footer .logo {order: 1; width: 100%;}
	.footer-nav {order: 2;}
	.footer-contact {order: 3;}
	.footer-contact p {text-align: left;}
	.footer-contact .socials {justify-content: flex-start;}
}

@media only screen and (max-width: 840px) {
	.top-header .flex {justify-content: center; flex-wrap: wrap;}
	a.contact-item span {display:none;}
	a.contact-item span.icon {display:flex;}
}

@media only screen and (max-width: 600px) {
	.hero-text .button-row.flex {display: none;}
	.mobile-only.hero-btns {display: block;}
	
	.about.flex .about-links.flex {width: 100%;}
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
}

@media only screen and (max-width: 550px) {
	.heading {font-size: 20px;}
	.sm-heading {font-size: 18px;}
	.hero-text h1.heading {letter-spacing: 3px;}
	.hero-text h1.heading span {font-size: 16px;}
	
	.mobile-only .button-row.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 450px) {
	
}






