/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
## Typography
## Elements
## Forms
## Navigation
## Extra Styles

--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 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, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
    box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

table { /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}

a:focus,
a:hover,
a:active {
    color: #e5aa22!important;
    /*font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;*/
	text-decoration: none;
}

a img {
    border: 0;
}

img{
    display: block;
    height: auto;
    max-width: 100%;
    transition-duration: 0.5s;
    transition-property: transform;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
p,
.content-hold,
.entry-content,
.content-wrap{
    margin: 0 0 25px;
}

p:last-of-type{
    margin-bottom: 0;
}

address{
  margin: 20px 0 35px;
}

h1,h2,h3,h4,h5,h6{
   clear: both;
   line-height: 1.5;
   font-weight: 700;
   color: #e5a922;
   margin: 0;
   font-family: 'Open Sans Condensed', sans-serif;
}

h1 {  
    font-size: 52px;  
    margin-bottom: 20px;
}  

h2 {
    font-size: 35px; 
    margin-bottom: 20px;
}

h3 {
    font-size: 26px; 
    margin-bottom: 15px;
    }

h4 {
    font-size: 24px;
    margin-bottom: 10px;
    }

h5 {
    font-size: 20px; 
    margin-bottom: 10px;
    }

h6 {
    font-size: 18px;
    margin-bottom: 10px;
}

h6.small{
    font-size: 14px;
}

b,
strong {
    font-weight: 700;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

small {
    font-size: 14px;
}

big {
    font-size: 52px;
}


/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 15px;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol,ul,li{
    list-style: none;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li{
    display: inline-block;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 25px;
}

figure {
    margin: 0;
}

table {
    margin: 0 0 30px;
    width: 100%;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/

.clr-red{
    color: red;
}

label{
    display: block;
    font-size: 15px;
    font-weight: 400;
}

form{
    margin-top: 50px;
}

.form-inline .form-group:last-child {
    float: right;
}

.form-inline .form-group {
    width: 48%;
    margin-bottom: 15px;
}

.form-inline .form-control {
    width: 100%;
}

button,
input,
select,
textarea {
    font-size: 100%; /* Corrects font size not being inherited in all browsers */
    margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
    vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: none;
    cursor: pointer;
    -webkit-appearance: button;
    background-color: #e5a922;
    border: 1px solid #e5a922;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 15px 25px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition-property: background, color;
    transition-duration: 0.5s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #ba8817;
    border: 1px solid #ba8817;
}

input[type="text"], 
input[type="password"], 
textarea,
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],select {
    width: 100%;
    border: 1px solid #ccc;
    background-color: none;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    line-height: 1;
    padding: 10px;
    height: 40px;
    font-family: 'Roboto', sans-serif;
}

::-webkit-input-placeholder {
    color: #000;
}

:-moz-placeholder { /* Firefox 18- */
    color: #000;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: #000;
}

:-ms-input-placeholder {  
    color: #000; 
}

form.wpcf7-form.invalid input.wpcf7-validates-as-required::-webkit-input-placeholder {
   color: #000;
}
form.wpcf7-form.invalid input.wpcf7-validates-as-required:-moz-placeholder {
   color: #000;
}
form.wpcf7-form.invalid input.wpcf7-validates-as-required::-moz-placeholder {
   color: #000;
}
form.wpcf7-form.invalid input.wpcf7-validates-as-required :-ms-input-placeholder {  
   color: #000;
}

textarea.form-control {
    border-radius: 0;
    color: #000;
}

.form-control:focus {
    border-color: #e5a922;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(229,169,34,.075),0 0 8px rgba(229,169,34,.075);
    box-shadow: inset 0 1px 1px rgba(229,169,34,.075),0 0 8px rgba(229,169,34,.075);
}

span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
}


.CaptchaWhatsThisPanel a {color:#333;}


/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/

a {
    color: #ffffff;
    text-decoration: none;
    transition-property: color, opacity;
    transition-duration: 0.5s;

}

a:hover{
    text-decoration: none;
    color: #ffffff;
}


/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

/*--------------------------------------------------------------
    Menu Start
--------------------------------------------------------------*/
#menu-button{display:none;}
nav.mobile {display:none;}

nav.primary {z-index:500; position:relative; margin:0; padding:0;}

nav.primary ul {display:flex; flex-flow:row wrap; align-items:center; justify-content:space-around; margin:0; padding:0;}
nav.primary ul li {margin:0; padding:0; list-style-type:none;}
				
nav.primary ul li a {
	display:block; margin:0 10px; padding:12px 0;
   line-height:15px; text-align:center; text-decoration:none; text-transform:uppercase; 
	
	color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
	-webkit-transition:.5s ease-in; -moz-transition:.5s ease-in; -o-transition:.5s ease-in; transition:.5s ease-in;	
}	
nav.primary ul li a::after{
    content: '';
    height: 4px;
    width: 0;
    display: block;
    margin: 5px auto 0;
    transition-property: width;
    transition-duration: 0.5s;
}
nav.primary ul li a:hover {color:#e5a922;}
nav.primary ul li a:hover::after {background: #e5a922;
    width: 100%;}



/*  SUB NAV
------------------------------------------------*/
nav.primary ul li li {width: 250px;}
nav.primary ul li li a:link, nav.primary ul li li a:visited{
	width: 250px; padding:15px 0; font-size:.94em; line-height:18px; text-indent:20px; text-align:left; color:#fff; border:0; background: #181818;
}

nav.primary ul li li a:hover,nav.primary ul li li a:active {line-height:18px; color:#fff; background:#058fce;}

/*  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;}


/*--------------------------------------------------------------
        Menu End
--------------------------------------------------------------*/

/*-------------------------------------- 
13.1 Basic Styles
----------------------------------------*/

.fnt-opensans{
    font-family: 'Open Sans', sans-serif;
}

.fnt-opensans-condensed{
    font-family: 'Open Sans Condensed', sans-serif;
}

.fnt-roboto{
    font-family: 'Roboto', sans-serif;
}

.txt-uppercase{
    text-transform: uppercase;
}

.fnt-bold{
    font-weight: 700;
}

.fnt-semi{
    font-weight: 600;
}

.fnt-normal{
    font-weight: 400;
}

body {
    color: #212221;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
}

/*-------------------------------------- 
14.0 Extra Styles
----------------------------------------*/

.top-head{
    background: #5B8036;
    padding: 5px 0;
    color: #fff;
    font-size: 15px;
}

.top-head .col-xs-12,
.logo-sec .col-xs-12{
    display: flex;
    justify-content: space-between;
}

.top-head ul:first-child li{
    padding-right: 20px;
}

.top-head ul li:first-child{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.top-head ul li:first-child i{
    font-size: 18px;
    vertical-align: middle;
}

.top-head ul:last-child li{
    text-transform: uppercase;
}

.top-head i{
    padding-right: 5px;
}

.logo-sec{
    background: #000;
    padding: 5px 0;
}

.site-branding img{
    margin-left: 110px;
}

.logo-sec .col-xs-12{
   align-items: center;  
}

.logo-sec li{
    padding-right: 60px;
}

.logo-sec li:last-child{
    padding-right: 0;
}



/*hero banner*/

.hero-banner{
    overflow: hidden;
}

.banner-item{
    height: 560px;
    padding-top: 50px;
    background-size: cover !important;
}

.banner-item::after,
.feature-banner::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4) ;
}

.content{
    z-index: 1;
}

.content h6,
.feature-banner h6{
    color: #ffffff;
}

.content h1,
.content h6,
.feature-banner h1,
.feature-banner h6{
    line-height: 1;
}

.content h1,
.feature-banner h1{
    margin-bottom: 10px;
}

.slick-active .content,
.icontent{
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/*features*/

.features{
    padding: 36px; 
	}

.features row {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	border-radius: 7px;
}

.features .col-sm-3{
   /* border-right: 2px solid #ffffff;*/
}

.features-right {
	/*border-right: #FFFFFF solid 1px;*/
}


.features .col-sm-3:last-child{
    border: 0;
}

.features .row{
    margin: 0;
}

.features .col-xs-6{
    padding: 0;
}

.features figure{
	background-color: #000;
    overflow: hidden;
    position: relative;}

.features figure::before{
    content: '';

    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

.features img{
    height: auto;
    margin: 0 auto;
    width: 100%;
}

figcaption{
    color: #000!important;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    padding: 5px 10px;
    line-height: 1;
    letter-spacing: 2px;
    z-index: 2;
}

.main-content-wrapper{
    max-width: 100%;
    margin: 0 auto;
}

.col-xs-12{
	color: white;
}
.about{
    position: relative;
    padding: 60px 0 115px;
    color: #ffffff;
    background-size: cover !important; 
}

.about::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.5);
}

.about .row,
.footer .row{
    z-index: 1;
    position: relative;
}

.about h2,
.about h6{
    color: #ffffff;
}

.about h2{
    margin-bottom: 10px;
    line-height: 1;
}

.about h6{
    margin-bottom: 40px;
}

.style-one{
	display: inline-block;
}

.style-one::before{
    content: '';
    height: 4px;
    background: #e5a922;
    /*width: 290px;*/
    width: 100%;
    margin-bottom: 5px;
    display: block;
}

.about .col-sm-8{
    padding-left: 50px;
    padding-right: 130px;
}

.about .col-sm-4{
    padding-right: 50px;
    font-size: 15px;
}

.about li{
    padding-bottom: 5px;
}

.hours-operation{
    margin-bottom: 50px;
}

.img-block img{
    margin: 0 auto;
    width: 100%;
}

.google-maps{
    position: relative;
    height: 320px;
}

.google-maps iframe{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}


.footer{
    position: relative;
    color: #ffffff;
    padding: 70px 0;
    background-size: cover !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

.footer::after{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
}

.footer address{
    width: 220px;
    margin: 10px 0 30px;
}

.footer .col-sm-4{
    border-right: 1px solid #e5a922;
    padding-left: 50px;
    padding-right: 45px;
}

.footer .col-sm-8{
    padding-left: 140px;
}

.footer .col-sm-8  li a{
    color: #e5a922;
}

.footer .col-sm-8 li{
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #e5a922; 
    line-height: 90%;
    text-decoration: underline;
    text-decoration-color: #e5a922; 
}

.footer .col-sm-8 li:hover{
    text-decoration: none;   
}

.footer .col-sm-8 li:last-child{
    border: 0;
}

.footer p{
  margin-bottom: 5px;
}

.footer li:last-child{
    padding-right: 0;
}

.footer li:first-child{
    padding-left: 0;
}

.feature-banner{
    background-size: cover !important;
    height: 320px;
    padding-top: 50px;
    position: relative;
}

.feature-banner .row{
    position: relative;
    z-index: 1;
}

.inner-about .col-xs-12{
   background-size: contain !important;
   padding: 60px 70px; 
}

.inner-about h2{
    color: #000;
}

.inner-about p{
    margin-bottom: 40px; 
	color: black;
}

.inner-about p:last-child{
    margin-bottom: 0;
	color:black;
}

.scale img:hover{
    transform: scale(1.1);
}

.right-arrow,
.left-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.right-arrow{
    left: 25px;
}

.left-arrow{
    right: 25px;
}

.mean-container .mean-nav ul li a{
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer .col-sm-4 a:hover,
.about a:hover,
.top-head a:hover,
.tablet-menu a:hover{
	color: #e5a922;
}

.inner-about{
 
    background-size: contain !important;
}

.inner-about title{
    display: block;
    color: #000;
    font-size: 35px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: inline-block;
    clear: both;
    line-height: 1.5;
    font-weight: 700;
    font-family: 'Open Sans Condensed', sans-serif;
}


.inner-about title::before{
    content: '';
    height: 4px;
    background: #e5a922;
    width: 290px;
    width: 100%;
    margin-bottom: 5px;
    display: block;
}

.inner-about .container .container{
    margin:20px 5%;
	
}

.cf-sh {
    width: auto;
    padding: 0;
    margin-top: -10px;
}

@media (max-width: 800px) {
.features{
    padding: 30px; 
	}
	
}

@media (max-width: 300px) {
.features{
    padding: 10px; 
	}
	
}

/*  SCROLLING IMAGE INVENTORY SANDHILLS 
------------------------------------------------*/
.scrolling-wrap {
    width:100%!important;
    height:90px!important;
    overflow:hidden;
}
 
.scrolling{
    width:100%!important;
    height:90px!important;
}



/* Footer Styles */

a.footerlink:link, a.footerlink:visited, a.footerlink:active{text-decoration:underline; font-family:Arial, Helvetica, sans-serif;font-size:15px; color: #e5aa22;}
a.footerlink:hover {text-decoration:none; font-family:Arial, Helvetica, sans-serif;font-size:15px;}

.footertext{font-family:Arial, Helvetica, sans-serif;font-size:15px; color:#fff;}

.smallfootertext{font-family:Arial, Helvetica, sans-serif;font-size:15px; color:#fff;}

.divfooter {max-width: auto; text-align: left; margin:0 auto;}


/* captcha align left */
.CaptchaPanel {
    margin: 10px 0px 10px 0px;
    text-align: left!important;
    padding: 10px;
}