﻿
/*===================== 
	CSS reset/normalize 
=======================*/
/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}

/*===================== 
	base styles 
=======================*/
html {
    font-family: 'Roboto', sans-serif;
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 

.text-center {text-align: center;}
	
/*===================== 
	typography 
=======================*/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size:35px;}

p {
	margin: 0;
	}

b, strong {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/
a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color:inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color:inherit;
		}  

/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
    background: #222;
}
header .col-1-2 {
    display: inline-block;
    vertical-align: middle;
    padding: 1% 0;
}
.header-info {
    text-align: right;
    color: #fff;
}
.header-info a:hover {
    color: #fff;
    text-decoration: underline;
}
.header-info p, .header-info img {
    display: inline-block;
    vertical-align: middle;
}

/*===================== 
	nav styles 
=======================*/
nav.mobile {
	display:none;	
}
#menu-button {
	display:none;	
}
/* ----- */

nav.primary {
	max-width:100%;
    background: #c92026;
    padding-left: 20%;
	}
	nav.primary ul {
		margin: 0;
		padding:0;
		}
		nav.primary ul li {
			display:inline-block;
			}
			nav.primary ul li a {
				color: #fff;
				display: block;
				padding: 10px 15px;
				text-transform:uppercase;
				font-size:14px;
                font-weight: bold;
				-webkit-transition-duration: 0.3s; /* Safari */
  				transition-duration: 0.3s;
				}	
			nav.primary ul li a:hover {
				background: #222;
				}
				
/* DROP DOWNS */				
nav.primary ul li li a {  /* appearance of the sub-level links */
	background:#222;
	width:175px;
	display:block;
	text-decoration:none !important;
}
nav.primary ul li li  a:hover {  /* appearance of the sub-level links on hover */
	background:#2b2b2b !important;
	color:#fff !important;
	text-decoration:none !important;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
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: 100;
}
nav.primary ul ul li {
	float: none;
	position: relative;
	margin: 0;
	display:block;
}


/*===================== 
	mobile btns styles 
=======================*/
.mobile-btns {
	display:none;	
}

/*===================== 
	banner styles 
=======================*/
.banner {
    background: url("../siteart/bg-img-sections.png") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 2% 0;
    text-align: center;
}
.banner h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 25px;
    padding-bottom: 1%;
}

/*  SCROLLING INVENTORY
------------------------------------------------*/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
.scrolling{
    width:100%;
    height:92px;
}


/*===================== 
	layout styles 
=======================*/
.wrap {
	max-width:60%;
	margin: 0 auto;
}
	
.col-1-6 { width: 16%;}
.col-1-5 { width: 20%;}
.col-1-4 { width: 24%;}
.col-1-3 { width: 33%;}
.col-1-2 { width: 49%;}
.col-2-3 { width: 65%;}
.col-3-4 { width: 75%;}

/*===================== 
	footer styles 
=======================*/
footer {
	margin: 0;
	width: 100%;
    background: url("../siteart/footer-bg-img.png") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 1% 0;
    color: #fff;
    text-align: center;
}
footer .mfgs-logo img {
    background: #eee;
    padding: .5% 1%;
    width: 16%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 .75%;
}
footer .col-3-4, footer .col-1-4 {
    display: inline-block;
    vertical-align: middle;
}
footer .col-1-3 {
    text-align: right;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:10px;
	color: #fff;
	}
	a.footerlink:hover {
		text-decoration:underline; 
		font-size:10px;
		color: #fff;
		}

.footertext {
	font-size:10px; 
	color:#fff;
	}

.smallfootertext {
	font-size:10px; 
	color:#fff;
	}

.divfooter {
	width:100%; 
    color: #fff;
	text-align:right; 
	margin:0 auto;
}
	
/*===================== 
	Home Page 
=======================*/
.hero-img {
    background: url("../siteart/hero-img.png") no-repeat;
    background-position: center;
    background-size: cover;
    padding: 7% 0;
    color: #fff;
    text-align: center;
}
.intro-section {
    background: url("../siteart/bg-img-sections.png") no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
    color: #fff;
}
.intro-pic {
    display: inline-block;
    width: 25%;
    vertical-align: middle;
}
.intro-pic img {
    width: 100%;
}
.mobile-intro-img {
    display: none;
}
.intro-para {
    display: inline-block;
    vertical-align: middle;
    width: 60%;
    padding-left: 3%;
}
.intro-para h1 {
    text-transform: uppercase;
    color: #c92026;
}
.red-div {
    background: #c92026;
}
.blk-div {
    background: #222;
}
.red-div, .blk-div {
    padding: 1%;
    display: inline-block;
    vertical-align: middle;
    width: 48%;
    text-align: center;
    color: #fff;
    height: 75px;
}



.pg-pad {
    padding:3% 0;
}
	
/*===================== 
	Contact Page 
=======================*/
.contact-pg {
    background:#DCDCDC;
}
.contact-pg .col-1-3 {
    display: inline-block;
    vertical-align: top;
    padding-bottom: 3%;
}

/*===================== 
	Leasing Page 
=======================*/
.leasing-pg {
    background:#DCDCDC;
}
.leasing-pg .col-1-3, .leasing-pg .col-2-3 {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding: 0 1%;
}
.leasing-pg .col-2-3 .col-1-2 {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 0 1%;
}
 
/*===================== 
	Custom Page 
=======================*/
.gallery-pg {
    background:#DCDCDC;
    text-align: center;
}
.custom-divs {
    margin: 1.5% .75%;
    text-align: left;
    width: 48%;
    display: inline-block;
    vertical-align: top;
}
.custom-divs h3 {
    font-size: 18px;
    color: #222;
}
.custom-divs:hover h3 {
    text-decoration: underline;
    color: #c92026;
}
.custom-divs p {
    text-transform: capitalize;
}
.gallery-pg hr {
    color: #999;
}
.custom-pg {
    text-align: left;
    background:#DCDCDC;
}
.custom-pg p {
    padding-top: 2%;
}

.gallery-pg .col-1-2, .custom-pg .col-1-2 {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}
.red-btn {
    background: #c92026;
    padding: 1.25% 0;
    width: 45%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 1.5% auto;
}

	
/*===================== 
	Inventory styles 
=======================*/

.body-content .body-wrapper {padding:2% 0;}

/*----View Details Button----*/
.view-listing-details-link {background:#c92026 !important; color: #fff !important;}
.view-listing-details-link:hover {background:#000 !important; color: #fff !important;}

/*----Price----*/
.listing-main-stats .price {color:#000 !important;}

/*------- Faceted Search------*/
.faceted-search-content .selected-facets-container .selected-facet{background: #c92026 !important; color:#fff !important;}



/* ====================
	MOBILE SCREENS
=================================== */
@media screen and (max-width: 1580px) {
.wrap {
    max-width: 70%;
}
nav.primary {
    padding-left: 14%;
}
}

@media screen and (max-width: 1450px) {
.wrap {
    max-width: 75%;
}
nav.primary {
    padding-left: 11%;
}
.intro-para {
    padding-left: 2%;
    width: 70%;
}
.intro-para h1 {
    font-size: 30px;
}
.auc-highlights {
    width: 40%;
}  
#hl-container {
    width: 57%;
    margin: 0 0 0 3%;
}
    
}

@media screen and (max-width: 1275px) {
.wrap {
    max-width: 80%;
}
nav.primary {
    padding-left: 9%;
}
.intro-para {
    padding-left: 0%;
    width: 85%;
    display: block;
    margin: 0 auto;
}
.mobile-intro-img {
    display: block;
}
.intro-section {
    padding: 3% 0;
}
.intro-pic {
    width: 40%;
    display: block;
    padding-bottom: 2%;
    padding-left: 10%;
}
.intro-img {
    display: none;
}
.red-div, .blk-div {
    width: 98%;
    padding: 2% 1%;
    height: auto;
}
    
footer .col-3-4, footer .col-1-4 {
    text-align: right;
}
footer .col-1-3 {
    width: 48%;
    text-align: right;
}
}

@media screen and (max-width: 1115px) {
.wrap {
    max-width: 85%;
}
nav.primary {
    padding-left: 3%;
}
.logo {
    width: 60%;
}
.banner h2 {
    font-size: 20px;
}
.intro-para {
    text-align: center;
    padding: 1% 0;
    width: 95%;
}
.intro-pic {
    width: 30%;
    margin: 0 auto;
    padding: 0 0 2% 0;
    display: block;
}
.contact-pg .col-1-3 {
    width: 47%;
    padding-bottom: 2%
}
    
.leasing-pg .col-1-2 {    
    width: 100%;
    margin: 1% 0;
}
    

footer .col-3-4, footer .col-1-4 {
    width: 100%;
    text-align: center;
} 
footer .col-1-4 img {
    width: 25%;
}
footer .col-1-3 {
    width: 100%;
    text-align: center;
    margin: 1% 0;
}
.divfooter {
    text-align: center;
}

}

@media screen and (max-width: 970px) {
.wrap {
    max-width: 90%;
}
.logo {
    width: 50%;
    margin:0 auto;
}
    
.custom-divs {
    width: 99%;
} 
    
footer .mfgs-logo img {
    width: 29%;
    margin: 1% .75%;
}
    
/*============================= 
	mobile btn styles 
==============================*/	
.mobile-btns {
	display:inline-block;
	width:99%;
    color: #fff;
    padding:2.75% 0;
	background:#222;	
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 1px #111 solid;
}
    
/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary {
	display:none;	
}
#menu-button { /* initially will need to be hidden */
	display: block;
	font-size: 25px;
    text-align: center;
	max-width: 100%;
	position: relative;
	z-index: 900;/* needs to be lower than nav.mobile, adjust as needed */
	padding:1% 0 1% 3%;
	background-color:#c92026;
}
#menu-button a {
	color: #fff;
	text-decoration: none;
	display:block;
    text-align: center;
}
nav.mobile {
	display: block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #333;
	z-index: 1200; /* needs to be higher than #menu-button, adjust as needed */
	overflow: auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 20px;
	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: bold;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	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: 10px;
	color: #999;
	text-decoration: none;
}
nav.mobile ul li a:hover {
	background: #000;
	color: #fff;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	background: #444;
	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: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #fff;
	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/arrow.png) 10px 12px no-repeat;
	background-size: 45%;
	position: relative;
	display: block;
	float: right;
	margin: -44px 10px 0 0;
	cursor: pointer;
	z-index: 12399994;
	width: 40px;
	height: 40px;
	-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%;
}
}

@media screen and (max-width: 760px) {
header .col-1-2 {
    width: 100%;
    text-align: center;
}
header .col-1-2 {}
.wrap {
    max-width: 95%;
}
.intro-pic {
    width: 100%;
}
.intro-para h1 {
    font-size: 25px;
}
    
.contact-pg .col-1-3 {
    width: 100%;
    padding-bottom: 2%
}  
.custom-pg {
    text-align: center;
}  
.custom-pg .carosel {
    width: 93%;
    margin: 0 auto;
    text-align: center;
}
 
footer .col-1-4 img {
    width:75%; 
}
footer .mfgs-logo img {
    width: 45%;
}

/*============================= 
	mobile btn styles 
==============================*/	
.mobile-btns {
	display:inline-block;
	width:99%;
    color: #fff;
    padding:2.75% 0;
	background:#222;	
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 1px #111 solid;
}
	
/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary {
	display:none;	
}
#menu-button { /* initially will need to be hidden */
	display: block;
	font-size: 25px;
	max-width: 100%;
    text-align: center;
	position: relative;
	z-index: 900;/* needs to be lower than nav.mobile, adjust as needed */
	padding:1% 0 1% 3%;
	background-color:#c92026;
}
#menu-button a {
	color: #fff;
	text-decoration: none;
	display:block;
    text-align: center;
}
nav.mobile {
	display: block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #333;
	z-index: 1200; /* needs to be higher than #menu-button, adjust as needed */
	overflow: auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 20px;
	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: bold;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	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: 10px;
	color: #999;
	text-decoration: none;
}
nav.mobile ul li a:hover {
	background: #000;
	color: #fff;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	background: #444;
	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: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #fff;
	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/arrow.png) 10px 12px no-repeat;
	background-size: 45%;
	position: relative;
	display: block;
	float: right;
	margin: -44px 10px 0 0;
	cursor: pointer;
	z-index: 12399994;
	width: 40px;
	height: 40px;
	-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%;
}
}
	
