﻿/* RESET 
------------------------------------------------*/
* { 
    margin: 0;  
    padding: 0;  
    border: 0;  
    outline: 0;  
    background: transparent;  
}

ol, ul {}
blockquote, q {quotes: none;}  
blockquote:before, blockquote:after, q:before, q:after {content: '';}  


/* TEXT/LINK FORMATTING
------------------------------------------------*/

	/* LINKS */
	a:link, a:visited {
		color:#800000;
		text-decoration:underline;
	}
	a:hover, a:active {
		color:#bbb;
		text-decoration:none;
	}

	/* PARAGRAPH/LIST/GENERAL TEXT */
	p, ul, li {font-size: 12px;}

	/* HEADERS */
	h1, h2, h3, h4 ,h5 ,h6 {line-height: normal;}
	h1 {font-size:28px; color:#800000; font-weight:100;}
	h2 {font-size:24px;}
	h3 {font-size:20px;}
	h4 {font-size:18px;}
	h5 {font-size:17px; font-family: 'source_sans_prosemibold';}
	h6 {font-size:14px;}


/* GLOBAL SITE FRAMEWORK
------------------------------------------------*/
.clear {clear: both;}
.left {float:left;}
.right {float:right;}
.center{text-align:center;}

body {
	margin:0;
	font-family: 'source_sans_proregular', sans-serif !important;
	background:#fff;
}

em {font-family: 'source_sans_proitalic';}

img{display:block;}

.content {
	width:85%;
	margin:0 auto;
}


.full {width:100%;}


/* SELECTION
------------------------------------------------*/	
::selection {
	color:#fff;
	background: #800000;
}
::-moz-selection {
	color:#fff;
	background: #800000;
}


/* HEADER
------------------------------------------------*/	
header {
	padding:40px 0;
	border-top:5px #292929 solid;	
	background-color: #353535;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%232a2a2a' fill-opacity='0.4' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}	


/* LOGO
------------------------------------------------*/	
.logo {
	color:#fff;
	font-size:40px;
	line-height:40px;
	margin:21px 5% 0 0;
	width:50%;
	float:left;
	position:relative;
    font-family: 'source_sans_proextralight';
}

.logo span{font-family: 'source_sans_problack';}


.financing-promo {width:20%; float:left; position:relative; margin:20px 0 0 0;}
.financing-promo img{width:100%; max-width:300px;}


/* HEADER CONTACT
------------------------------------------------*/	
.header-contact {
	width:25%;
	float:left;
	position:relative;
	color:#fff;
	font-size:20px;
	line-height:28px;
	text-align:right;
	
}

.header-contact span{font-size:30px; line-height:30px;}
.header-contact em {font-size:16px; line-height:20px;}
.header-contact strong {line-height:22px; font-family: 'source_sans_proSBdIt';}
.header-contact a:link, .header-contact a:visited{color:#fff; margin:0 0 0 10px;}
.header-contact a:hover, .header-contact a:active{color:#A2A2A2;}

	
/*  NAVIGATION
------------------------------------------------*/
#menu-button{
	display: none;
}

nav.mobile {
	display:none;
}

nav.primary {
	padding:0;
	margin:0;
	width:100%;
	z-index: 500;
	position:relative;
	border-bottom:5px #952d2d solid;
	
	background: rgb(128,1,1);
	background: -moz-linear-gradient(top,  rgb(128,1,1) 0%, rgb(134,2,2) 100%);
	background: -webkit-linear-gradient(top,  rgb(128,1,1) 0%,rgb(134,2,2) 100%);
	background: linear-gradient(to bottom,  rgb(128,1,1) 0%,rgb(134,2,2) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#800101', endColorstr='#860202',GradientType=0 );
}

nav.primary ul {
	margin:0 auto;
	padding:0;
}

nav.primary ul li {
	margin:0;
	paddding:0;
	float:left;
	width: 16.6%;
	list-style-type:none;	
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

nav.primary ul li:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #202020;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
		
nav.primary ul li:hover, nav.primary ul li:focus, nav.primary ul li:active {
  color: #3d3d3d;
}
nav.primary ul li:hover:before, nav.primary ul li:focus:before, nav.primary ul li:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
				
nav.primary ul li a {
	display:block;
	color:#f3f3f3;
	font-weight:normal;
	font-size:18px;
	line-height:1;
	text-decoration:none;
	padding:21px 0px;
	margin:0;
	text-align:center;
	text-transform:uppercase;
	-webkit-transition:.5s ease-in;  
	-moz-transition:.5s ease-in;  
	-o-transition:.5s ease-in;  
	transition:.5s ease-in;	
}	

nav.primary ul li a:hover {
	color:#fff;
	background: #3d3d3d; 

}


/*  SUB NAV
------------------------------------------------*/
nav.primary ul li li a:link, nav.primary ul li li a:visited{
	font-size:14px;
    line-height:14px;
	padding:10px 18px;
	
	color:#fff;
	background: #181818;
	width: 230px;
	
	text-align:left;
	
	border-right:none;
	border-left:none;
	border-bottom: #fff solid 1px;
}

nav.primary ul li li a:hover,nav.primary ul li li a:active {
	color:#060606;
	background:#eee;
}


/*  NAV DROPDOWNS
------------------------------------------------*/
nav.primary ul ul {
    display: none;
    position: absolute; 
}
  
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
  
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 500;
}
  
nav.primary ul ul li {
    float: none; 
    position: relative;
    margin:0;
}


/*  SLIDESHOW
------------------------------------------------*/
.cycle-slideshow {
	width:100%;
	line-height:0;
	z-index:10;
	position:relative;
}

.cycle-slideshow img{width:100%;}


/*  MAIN
------------------------------------------------*/	
.main {
	border-bottom:8px #790000 solid;
}

.inv-main {padding:35px 0;}

/*  ARTICLE
------------------------------------------------*/
article {
	width:75%;
	float:left;
	position:relative;
	padding:35px 0;
}

article h1{margin:0 0 3px 0;} 

article p{
	font-size:15px;
	line-height:20px;
}

article .contact-details {
	width:25%;
	font-size:17px;
	line-height:20px;
	float:left;
	position:relative;
	margin:15px 0 0 0;
	text-align:center;
}

/* ADDRESS
------------------------------------------------*/	
address {
	width:20%;
	font-style:normal;
	float:left;
	position:relative;
	margin:40px 0 35px 5%;
	font-size:15px;
	line-height:16px;
	text-align:right;
}

.google-map {
	border:0;
	margin:0 0 45px 0;	
}


/*  SECTION
------------------------------------------------*/
.cta-section {
	border-top:4px #f3f3f3 solid;
	padding:4% 0;
	background-color: #fafafa;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23e9e9e9' fill-opacity='0.4' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
 
.cta-section .category{
	width:30%;
	height:inherit;
	margin:0 5% 0 0;
	float:left;
	position:relative;
	border-bottom:12px #800000 solid;
}

.cta-section .category:nth-child(3){margin:0;}

.cta-section .category a:hover img.cat-bg, .cta-section .category a:active img.cat-bg{
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.cta-section .category a:hover .cat-icon, .category a:active .cat-icon{
	width:60px;
	height:60px;
	opacity: 1 !important;
	filter: alpha(opacity=100) !important;
}

.cta-section .category img.cat-bg {width:100%;}

.cta-section .cat-icon {
	top:15px;
	left:15px;
	position:absolute;
	
	width:50px;
	height:50px;
	text-align:center;
	background:#800000;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;	
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.cta-section .cat-icon img{width:70%; margin:7px auto 0 auto; -webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;}
.cta-section .cat-title {
	bottom:15px;
	left:15px;
	position:absolute;
	font-size:30px;
	line-height:30px;
	color:#800000;
	text-transform:uppercase;
	font-family: 'source_sans_prosemibold';
}


/*  SCROLLING INVENTORY
------------------------------------------------*/
.scrolling-wrap {width:100%; height:92px; overflow:hidden; margin:0 0 35px 0;}
.scrolling{width:100%; height:92px;}


/*  FOOTER
------------------------------------------------*/
footer {padding:45px 0; background:#650101;}


/*  Stylized Footers 
------------------------------------------------*/
.divfooter {
	width:85%;
	color:#fff;
	margin:0 auto;
	font-size:10px;
	line-height:11px;
	text-align:center;
}

a.footerlink:link, a.footerlink:visited, a.footerlink:active{color:#fff; text-decoration:underline;}
a.footerlink:hover {color:#fff; text-decoration:none;}




/************************************************ Responsive Styles **/

@media screen and (max-width: 1132px) {
	nav.primary ul li a {
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
	.content {width:93.6%; margin:0 3.2%;}
	.content-full{width:100%; margin:0;}
	
	address {margin:60px 0 35px 5%;}
}

@media screen and (max-width: 900px) {
	.logo {width:100%; font-size:35px; line-height:35px; margin:0; text-align:center;}
	.financing-promo {width:50%; margin:30px 0 0 0;}
	.financing-promo img {width:80%; margin:0 auto;}
	.header-contact {width:50%; font-size:18px; line-height:25px; text-align:center; margin:20px 0 0 0;}
	.header-contact span{font-size:25px;}

	nav.primary{display:none;}
	
	#menu-button{
		display: block;
		font-size: 24px;
		line-height:60px;
		width:90px;
		position: relative;
		z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
		border-bottom:5px #952d2d solid;
		background:#800000;
		width:100%;
		
	}
	#menu-button a{
		color:#fff;
		text-decoration: none;
		padding:0 0 0 .8em;
		font-weight:100;
	}
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #323232;
		z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
	}
	nav.mobile .navtitleheading { /* Menu header styles */
		position: relative;
		padding: 12px 10px;
		color: #fff;
		font-size: 1.2em;
		font-weight: 400;
		border-bottom: 4px solid #222;
	}
	nav.mobile .menu-toggle { /* Menu close button */
		position: absolute;
		top: 12px;
		right: 10px;
		display: inline-block;
		padding: 6px 9px 5px;
		font-family: Arial, sans-serif;
		font-weight: 100;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		vertical-align: top;
	}
	nav.mobile .menu-toggle:hover {color: #fff;}
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		border-top: 1px solid #151515;
		border-bottom: 1px solid #454545;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		border-top: 1px solid #454545;
		border-bottom: 1px solid #151515;
	}
	nav.mobile ul li a {
		position: relative;
		display: block;
		padding: 15px 0px 15px 20px;
		color: #999;
		font-size:15px;
		text-decoration: none;
	}
	nav.mobile ul li a:hover {background: #800000; color: #fff;}
	
	nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		background:url(../siteart/menu-arrow.png) 10px 12px no-repeat;
		background-size:55%;
		position:relative;
		display:block;
		float:right;
		margin:-44px 0 0 0;
		cursor:pointer;
		z-index: 12399994;
		width:44px;
		height:44px;
		-webkit-transition:background-size .3s ease-in-out;
		-moz-transition:background-size .3s ease-in-out;
		transition:background-size .3s ease-in-out;
	}
	nav.mobile ul li span.click:hover{background-size:60%;}
	
	nav.mobile ul li li a { /* appearance of the sub-level links */
		background: #434343;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
		background: #37424e;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #000;
		text-decoration: none;
	}
	
	nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		background:url(../siteart/menu-arrow.png) 10px 12px no-repeat;
		background-size:55%;
		position:relative;
		display:block;
		float:right;
		margin:-44px 0 0 0;
		cursor:pointer;
		z-index: 12399994;
		width:44px;
		height:44px;
		-webkit-transition:background-size .3s ease-in-out;
		-moz-transition:background-size .3s ease-in-out;
		transition:background-size .3s ease-in-out;
	}
	nav.mobile ul li span.click:hover{
		background-size:60%;
	}
	
	.cta-section .cat-icon {display:none;}
	.cta-section .cat-title {left:10%; font-size:25px; line-height:25px;}
}


@media screen and (max-width: 768px) {
	.cycle-slideshow {display:none;}
	article {width:100%; padding:35px 0;}
	article h1 {font-size:22px;}
	address {width:100%; margin:0 0 40px 0; text-align:center;}
	article .contact-details {width:100%; text-align:center;}
}

@media screen and (max-width: 600px){
	.logo {width:76%; margin:0 0 0 12%; font-size:33px; line-height:33px;}	
	.header-contact {font-size:18px; line-height:25px; margin:15px 0 0 0;}
	.header-contact span{font-size:25px;}
	
	
	.cta-section {padding:35px 0;}
	.cta-section .category{width:90%; margin:0 5% 35px 5%; border-bottom:12px #800000 solid;}
	.cta-section .category:nth-child(3){margin:0 5%;}
	.cta-section .cat-icon {display:block;}
}

@media screen and (max-width: 500px){
	.financing-promo {width:100%;}
	.financing-promo img {width:60%; margin:30px auto 0 auto}
	.header-contact {width:100%; text-align:center; margin:25px 0 0 0; font-size:15px; line-height:24px;}
	.header-contact span{font-size:24px;}
}

@media screen and (max-width: 320px){
	.logo {width:100%; margin:0;}
	.cta-section .category {width:100%; margin:0 0 35px 0;}
	.cta-section .category:nth-child(3) {margin:0;}
}