﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	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%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/
html {
    font-family: Arial, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
	}

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;} 
	
/*===================== 
	typography 
=======================*/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	margin: 0;
	}
	
h1 {
}
		

h2 {
}

	
h3 {
}


h4 {
}


h5 {
}


h6 {
}

/*===================== 
	link styles 
=======================*/
a:focus {outline: thin dotted;/*reset*/
	}
a {color: #616061;}
a:hover {color: #ac7448;}

a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/ 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		}  

/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
	}

.header-logo {
    margin-left:8vw;
    padding:7px 10px 7px 0px;
    max-width:250px;
}

.social-bknd, .header-contact-info {
    text-align:right; 
    text-transform:uppercase; 
    font-size:24px; 
    font-family:'Open Sans Condensed', sans-serif; 
    font-weight:700;}

.social-bknd {
    background-image: url("/siteart/social-bknd.jpg");
    color:#fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
    padding:10px 8vw 10px 25px;
}

.header-contact-info {
    padding:15px 8vw 15px 25px; 
    color:#242424; 
    line-height:80px;
}

.header-social-link {
    color:#fff!important; 
    background-color:#ac7448;
    padding:5px 14px; 
    transition:.2s;
    display:inline-block;
}
.header-social-link:hover {background-color:#616061; color:#fff!important;}

.header-contact-link {color:#ac7448;}


/*===================== 
	nav styles 
=======================*/
nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: center;
    background-color: #242424;
    width: 100%;
	}

nav ul {
	padding:0;
	margin:0;
}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
}

nav ul li a {
	font-size: 18px;
    color: white;
    display: block;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight:700;
    text-transform:uppercase;
    padding: 9px 13px; 
    letter-spacing:.5px;
    transition:.2s;
}	

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active{
	color: #fff;
    background-color:#ac7448;
}


/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
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;
    z-index: 2000 !important;
}

nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
}

.dropdown_arrow {
	display: inline-block !important;
}
/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/
#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	background-color: #242424;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color: white;
		 text-decoration: none;
		 text-align: right !important;
         padding-right: 15px;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #242424;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}

nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
    font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	vertical-align: top;
}

a.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
    padding-right: 10px;
    float: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}

nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}

nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 20px;
	color: white;
	text-decoration: none;
	font-size: 16px;
    clear: both;
}

nav.mobile ul li a:hover {
	background: ;
	color: #fff;
}

nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 35px;
	color: white;
	text-decoration: none;
	text-transform: none !important;
}

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 45px;
	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-dropdown-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%;
}

/*===================== 
	General styles 
=======================*/
.container-fluid {padding: 0px;}
.row-iron {padding: 0px; margin: 0px;}
.div-iron {padding: 0px;}

.center {text-align: center;}

.page-title {
    font-size:42px; 
    font-weight:700; 
    text-transform:uppercase; 
    color:#ac7448; 
    font-family: 'Open Sans Condensed', sans-serif; 
    padding-top:25px; 
    padding-bottom:15px;
}

.page-text {font-size:16px;}
.p-bottom {padding-bottom:35px;}

.page-wrap {padding:0px 8vw;}

/*========================= 
	 Slideshow styles 
===========================*/ 
.carousel-indicators {text-align:right;}
.carousel-indicators li {border-radius:0px; background-color:#fff; opacity:.4; width:15px; height:15px;}
.carousel-indicators .active {opacity:1; width:17px; height:17px;}

.carousel-control.left, .carousel-control.right {background-repeat: no-repeat;text-shadow: none; z-index:10;}

.carousel-control .hero-left, 
.carousel-control .hero-right, 
.carousel-control .icon-prev, 
.carousel-control .icon-next {
	position: absolute;
	top: 43%;
	z-index: 5;
	display: inline-block;
}

.carousel-control.left span:hover, .carousel-control.right span:hover {opacity: .7; filter: alpha(opacity=70);}

.carousel-control {width: 5%;}
.hero-arrows {font-size: 36px;}

/* Carousel Header Styles */
.header-text {
    position: absolute;
    bottom: 0px;
    left: auto;
    right: auto;
    width: 70%;
    color: #fff;
    padding: 30px 7% 0px 7%;
    background-image: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65))!important;
    clip-path: polygon(0 0, 91% 0, 100% 100%, 0 100%);
    z-index: 5;
}

.header-text h2 {
    font-size: 45px;
    font-weight: 700;
    text-align: left;
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
}

.header-text h3 {
    padding-top: 20px;
    padding-bottom:15px;
    font-size: 20px;
    text-align: left;
    font-weight: 600;
}

.hero-btn-div {
    float: left; 
    padding-top: 15px;
    padding-bottom: 50px;
}

.hero-btn {
    background-color: #ac7448;
    border: none;
    padding: 12px 20px;
    margin-right: 10px;
    transition: .2s;
    color: white;
    z-index: 9999999;
    font-size:24px;
    font-weight:600;
}

.hero-btn:hover {
    background-color: #616061;
    color: white;
}
.hero-btn-link {
    color: white;
    font-size: 16px;
    font-weight: 300;
}

.hero-btn-link:hover
.hero-btn-link:active,
.hero-btn-link:focus{
    color: white;
}

/*===================== 
	content styles 
=======================*/
.home-title span {font-family: 'Open Sans', sans-serif; font-weight:400; color:#242424; font-size:28px; position:relative; top:10px;}
.home-title {
    text-transform:uppercase; 
    color:#ac7448; 
    font-weight:700;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size:52px;
    padding-top:5vw;
}

.states-img {width:95%; display:block; margin:auto; padding:15px 0px;}



/*===================== 
	footer styles 
=======================*/
.footer-logo {max-width:200px; width:90%;display:block; margin:auto;}
.footer-phone-link {
    font-weight:700; 
    font-family: 'Open Sans Condensed', sans-serif; 
    color:#fff!important; 
    font-size:20px; 
    display:block; 
    text-align:center; 
    margin-top:15px;
    transition:.2s;
}
.footer-phone-link:hover, .footer-phone-link:active, .footer-phone-link:focus {color:#ac7448!important;}

.footer-social-info {padding-bottom:15px; text-align:center;}
.footer-social-link {
    color:#fff!important; 
    background-color:#ac7448;
    padding:3px 11px; 
    display:inline-block; 
    font-size:24px;
    transition:.2s;
}
.footer-social-link:hover {background-color:#242424; color:#fff!important;}

.footer-title {
    font-weight:700; 
    font-family: 'Open Sans Condensed', sans-serif;
    color:#ac7448;
    font-size:24px;
    text-align:center;
    padding-bottom:15px;
}
.footer-ul {list-style:none; padding:0px; text-align:center;} 
.footer-ul li {padding:2px 0px;}
.footer-link {color:#fff; font-size:15px; transition:.2s;}
.footer-link:hover, .footer-link:active, .footer-link:focus {color:#ac7448;}

.copyright-info-left {text-align:left; color:#fff; text-transform:uppercase; padding-top:15px; font-size:13px; letter-spacing:.5px;}
.copyright-info-right {text-align:right; color:#fff; text-transform:uppercase; padding-top:15px; font-size:13px; letter-spacing:.5px;}
.copyright-link {color:#fff; font-weight:700; transition:.2s;}
.copyright-link:hover, .copyright-link:active, .copyright-link:focus {color:#ac7448;}

footer {
	margin: 0;
	width: 100%;
    background-color:#535353;
    padding:25px 8vw;
	}

/*===================== 
	form styles 
=======================*/
.contact-info {color:#242424; font-family: 'Open Sans Condensed', sans-serif; font-weight:700; font-size:24px;}
.contact-link, .contact-link:hover, .contact-link:active, .contact-link:focus {color:#ac7448;}
.contact-form-text {font-size:15px; font-weight:700; padding:25px 15px; text-align:center;}


.form-wrap {border:1px solid #242424; margin-top:25px!important; margin-bottom:35px!important;}

.form-title {
    font-family: 'Open Sans Condensed', sans-serif; 
    text-align:center; 
    text-transform:uppercase; 
    color:#242424; 
    font-size:22px; 
    font-weight:700;
    padding-top:35px; 
    padding-bottom:5px;
}
.formcontent {display:inline; font-weight:700;}

.contact_form {
    margin: 7px auto;
    padding: 7px 10px;
    border: 1px solid #a4a4a4;
    width: 100%;
}

.submit-button, .thanks-button {
    background-color: #ac7448;
    color: white;
    font-size: 18px;
    padding: 5px 15px; 
    border: 2px solid #ac7448;
    margin-top: 10px;
    margin-bottom: 30px; 
    transition:.2s;
}

.submit-button:hover, .thanks-button:hover{
    border: 2px solid #616061;
    color: #fff;
    background-color: #616061;
}

.thanks-text {
    font-size: 18px;
    text-align: center;
}

/*===================== 
	captcha styles 
=======================*/
/*control the Captcha */
.CaptchaPanel {
    margin:0 0 0 0 !important;
    padding:0 0 0 0 !important;
    text-align: center;
    line-height:normal !important;
    }

.CaptchaImagePanel {
    margin:0 0 0 0;
    padding:0 0 0 0;
    }

.CaptchaMessagePanel {
    padding:0 0 0 0 !important;
    margin:0 0 0 0 !important;
    font-weight:normal !important;
    font-size:13px;
    line-height:20px;
    }

.CaptchaAnswerPanel {
    margin:0 0 0 0;
    padding:2px 0px 2px 0px !important;
    }

.CaptchaWhatsThisPanel {
        line-height:0;
        margin:0 0 0 0;
        padding:11px 0 8px 0 !important;
    }
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 





/*========================= 
	 Responsive styles 
===========================*/
/*==========  Non-Mobile First Method  ==========*/


@media only screen and (max-width : 1400px) {
/*========================= 
	 Header styles 
===========================*/
    .header-contact-info {line-height:53px;}
    
/*========================= 
	 content styles 
===========================*/
    .header-text {padding:25px 7% 0px 7%;}
    .header-text h2 {font-size:42px;}
    .header-text h3 {padding-bottom:8px; padding-top:10px;}
    .hero-btn-div {padding-bottom:35px;}
    .hero-btn {font-size:20px;} 
    
    
    .home-title {padding-top:2vw;}
}

@media only screen and (max-width : 1384px){
	nav ul li a {padding: 9px; font-size: 16px;}
}

@media only screen and (max-width : 1200px) {
/*========================= 
	 Header styles 
===========================*/
    .header-logo {margin-left:4vw;}
    
    .social-bknd, .header-contact-info {font-size:22px;}
    .social-bknd {padding:10px 4vw 10px 25px;}
    .header-contact-info {padding:15px 4vw 15px 25px;}
    
    nav ul li a {font-size:14px; padding:9px;}
    
/*========================= 
	 General styles 
===========================*/    
    .page-wrap {padding:0px 4vw;}
    
/*========================= 
	 content styles 
===========================*/
    .header-text h2 {font-size:36px;}
    .header-text h3 {font-size:18px;}
    .hero-btn {font-size:18px;}
    
    .home-title span {font-size:24px;}
    .home-title {font-size:42px;}
    
    
/*========================= 
	 Footer styles 
===========================*/
    footer {padding:25px 4vw;}
    
    
}

@media only screen and (max-width : 1050px) {
	 nav ul li a {font-size:14px; padding:6px;}
}

@media only screen and (max-width : 991px) {
/*========================= 
	 content styles 
===========================*/   
    .header-text {width:100%; clip-path:none; padding:20px 7% 0px 7%;}
    .header-text h2 {font-size:32px;}
    .header-text h3 {padding-bottom:0px; padding-top:9px; font-size:16px;}
    .hero-btn-div {padding-bottom:20px;}
    .hero-btn {font-size:15px;}
    
    .carousel-control.left, .carousel-control.right, .carousel-indicators {display:none;}
    
    .home-wrap {padding:15px 0px 25px 0px;}
    .home-title span {font-size:22px;}
    .home-title {padding-top:0px; font-size:36px;}
    
/*========================= 
	 Footer styles 
===========================*/      
    .footer-social-info {padding-top:15px;}
    .footer-title {padding-top:15px; padding-bottom:6px;}
    
    .copyright-info-left, .copyright-info-right {text-align:center;}
    .copyright-info-right {padding-top:3px;}
}

@media only screen and (max-width : 767px) {
/*========================= 
	 Header styles 
===========================*/
    .hide-mobile {display:none;}
    .header-logo {display:block; margin:auto; padding:7px 15px;}
    .header-contact-info {text-align:center; padding:0px 15px;}
    
    
/*========================= 
	 General styles 
===========================*/
    .page-wrap {padding:0px 15px;}
    
/*========================= 
	 Content styles 
===========================*/    
    .header-text {position:relative; background-image:none; background-color:#242424; padding:20px 15px;} 
    .hero-btn {margin-top:10px;}
    

}
 
@media only screen and (max-width : 480px) {
 
 
}

@media only screen and (max-width : 320px) {


}

