﻿@font-face {
    font-family: 'bernierregular';
    src: url('fonts/bernier_regular-webfont.woff2') format('woff2'),
         url('fonts/bernier_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body{
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #1c140e;
	background-color: #c6b59a;
	background-image: url('../img/bg-stripes-beige.jpg');
}

/********************************************************************************
* Links
*********************************************************************************/
a{
	color: #6b411f;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
	text-decoration: none;

}

a:hover, a:active, a:focus{
	color: #975C2C;
	text-decoration: none;
	
}

/********************************************************************************
* Headings
*********************************************************************************/
h1{
	font-size: 48px;
}
h2{
	font-size: 36px;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 24px;
}
h5{
	font-size: 20px;
}
h6{
	font-size: 18px;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'bernierregular', sans-serif;
	font-weight: normal;
	color: #1c140e;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6{
	color: #b29244;
}
.section-heading {
    line-height: normal;
    margin-top: 0;
	margin-bottom: 40px;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
}
.section-heading:after {
    content: " ";
    height: 28px;
    margin-left: 15px;
    overflow: hidden;
	background-image: url('../img/barbed-wire.svg');
	background-repeat: repeat-x;
    position: absolute;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
    width: 100%;
}
.section-heading.text-center:after{
	display: none;
}
.section-heading.text-center span{
	display: inline-block;
	position: relative;
	z-index: 1;
}
.section-heading.text-center span:after, .section-heading.text-center span:before{
	content: " ";
    height: 28px;
	width: 200%;
	overflow: hidden;
	background-image: url('../img/barbed-wire.svg');
	background-repeat: repeat-x;
    position: absolute;
	top: 60%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.section-heading.text-center span:after {
    margin-left: 15px;
}
.section-heading.text-center span:before{
    margin-right: 15px;
	right: 100%;
}

/********************************************************************************
* Miscellaneous Type Setting
*********************************************************************************/
p{
	margin-bottom: 20px;	
}
hr {
    height: 28px;
    margin: 30px auto;
    overflow: hidden;
	background-image: url('../img/barbed-wire.svg');
	background-repeat: repeat-x;
	background-size: auto 100%;
    width: 100%;
	border: none;
}
blockquote{
	background: #aa9b83;
	background-color: rgba(28,21,14,.19);
    border-left: 5px solid #1C140E;
    padding: 10px 20px;
}

.well{	
	border: none;
	border-radius: 0;
	box-shadow: none;
	background: #aa9b83;
	background-color: rgba(28,21,14,.19);
}

.panel-default{
	border: none;
	border-radius: 0;
	box-shadow: none;
	background: #aa9b83;
	background-color: rgba(28,21,14,.19);
}
.panel-default > .panel-heading{
	border: none;
	border-radius: 0;
	background-color: #DDD;
}
.panel-group .panel{
	border-radius: 0;	
}
.panel-primary{
	border: none;
	border-radius: 0;
	box-shadow: none;
	background: #aa9b83;
	background-color: rgba(28,21,14,.19);
}
.panel-primary > .panel-heading{
	border: none;
	border-radius: 0;
	background-color: #1C140E;
	color: #dad3c8;
	font-size: 24px;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
    padding: 3px 15px;
}

.panel-primary > .panel-heading > .panel-title > a {
	color: inherit;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
    font-size: 24px;
}
.alignright{
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;	
}
.alignleft{
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;	
}


.img-thumbnail{
	background-color: #1C140E;
	border-radius: 0;
	box-shadow: none;
	border: none;	
}
/********************************************************************************
* Lists
*********************************************************************************/
ul.styled-list, .faq-list ul{
   list-style: none;
   margin: 1em 0;
   padding: 0; 
   overflow:hidden;
}
ul.styled-list li, .faq-list ul li {
    border-bottom: 2px solid #1c140e;
    display: block;
    list-style: outside none none;
    margin-left: 0;
    padding: 8px 0 8px 30px;
    position: relative;
}
ul.styled-list li:last-child, .faq-list ul li:last-child{
	border-bottom: 0;
}
ul.styled-list li ul li, .faq-list ul li ul li{
	border-bottom: none;
}
ul.styled-list li:before, .faq-list ul li:before{
	font-family: 'FontAwesome';
	content:"\f138\00a0";
	color: #6b411f;
    display: block;
    left: 1px;
    position: absolute;
}
ul.styled-list li ul li:before, .faq-list ul li ul li:before{
	font-family: 'FontAwesome';
	content:"\f054\00a0";
	color: #6b411f;
	display: block;
    left: -20px;
    position: absolute;
}

ol.styled-list {
    list-style-type: none;
    list-style-type: decimal !ie; /*IE 7- hack*/
     
    margin: 0;
    margin-left: 3em;
    padding: 0;
     
    counter-reset: li-counter;
}
ol.styled-list > li{
    position: relative;
    margin-bottom: 15px;
    padding: 1em;
     
    background: #6b411f;
	background-color: rgba(28,21,14,.19);
}
ol.styled-list > li:before {
    position: absolute;
    top: 0;
    left: -1em;
    width: 0.94em;
    height: 1em;
     
    font-size: 2em;
    line-height: 0.94;
    text-align: center;
    color: #dad3c8;
 
    background-color: #1C140E;
    content: counter(li-counter);
    counter-increment: li-counter;
}

/********************************************************************************
* Background Library
*********************************************************************************/
.bg-stripes-beige{
	background-image: url('../img/bg-stripes-beige.jpg');
}
.bg-noise-beige{
	background-image: url('../img/bg-noise-beige.jpg');
}
.bg-wood{
	background-image: url('../img/bg-wood.jpg');
}
.bg-shade{
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC42Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.6)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#99000000',GradientType=0 );
}
.bg-trans-black{
	background: #000;
	background-color: rgba(0,0,0,.5);
}
.bg-border{
	height: 5px;
	width: 100%;
}
.bg-highlight{
	height: 1px;
	width: 100%;
	background-color: rgba(255,255,255,.37);	
}

.lined {
  line-height: 1;
}
.lined span {
  display: inline-block;
  position: relative;  
}
.lined span:after {
  content: "";
  position: absolute;
  border-top: 2px solid #000;
  top: 30px;
  width: 700px;
}
.lined span:after {
  left: 100%;
  margin-left: 15px;
}


/********************************************************************************
* Buttons
*********************************************************************************/
.btn{
	font-family: 'Montserrat', sans-serif;
	border-radius: 0;
	border: none;
	text-shadow: none;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	background-color: #6b411f;
	color: #dad3c8;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.btn:hover, .btn:active, .btn:focus{
	color: #dad3c8;
	background-color: #975C2C;
}

.btn a, .btn a:hover, .btn a:active, .btn a:focus {
	text-decoration: none;
}

.btn:active{
	position:relative;
	top: 1px;
}

.btn-primary{ 
	background-color: #1c140e;
	color: #dad3c8;
} 

.btn-primary:hover, .btn-primary:active, .btn-primary:focus{
	color: #dad3c8;
	background-color: #333;
}

.btn-success{ 
	color: #dad3c8;
	background-color: #524F24;
}
.btn-success:hover, .btn-success:active, .btn-success:focus{
	color: #dad3c8;
	background-color: #7C7836;
}
.btn-warning{ 
	color: #8E7436;
	background-color: #524F24;
}
.btn-warning:hover, .btn-warning:active, .btn-warning:focus{
	color: #dad3c8;
	background-color: #b29244;
}
.btn-danger{ 
	color: #dad3c8;
	background-color: #7C2317;
}
.btn-danger:hover, .btn-danger:active, .btn-danger:focus{
	color: #dad3c8;
	background-color: #922e21;
}

.btn-small{
	font-size: 14px;	
}
.btn-large{
	font-size: 24px;
}
.btn-xlarge{
	font-size: 36px;
}
.btn-wide{
	width: 100%;	
}
.btn.icon-left .fa{
	position:absolute;
	height: 100%;
	padding: 5px 10px;
	text-align:center;
	top: 0;
	left: 0;
	width: 50px;
	font-size: 24px;
}
.btn.icon-left{
	text-align:left;
	padding-left: 60px;
	position:relative;
}
.btn.icon-right .fa{
	position:absolute;
	height: 100%;
	padding: 5px 10px;
	text-align:center;
	top: 0;
	right: 0;
	width: 50px;
	font-size: 24px;
}
.btn.icon-right{
	text-align:left;
	padding-right: 60px;
	position:relative;
}

.btn.icon-left:active .fa, .btn.icon-right:active .fa{
	position: absolute;
}
.btn-large.icon-left .fa, .btn-large.icon-right .fa{
	padding: 6px 8px;
	font-size: 36px;
	line-height: 30px;
}

.btn-outline{
	background: none;
	border: 5px solid #6b411f;
	color: #6b411f;
}
.btn-outline:hover, .btn-outline:active, .btn-outline:focus{
	background: #6b411f;
	color: #dad3c8;
}


/********************************************************************************
* Labels
*********************************************************************************/
.label-warning{ 
	background-color: #8E7436;
	color: #dad3c8;
} 

.label-danger{ 
	background-color: #7C2317;
	color: #dad3c8;
} 

.label-success{ 
	background-color: #524F24;
	color: #dad3c8;
} 

.label-primary{ 
	background-color: #1c140e;
	color: #dad3c8;
} 

/********************************************************************************
* Header
*********************************************************************************/
header.header-wrapper{

}

header .logo{
	margin: 0 auto 40px auto;
}

/********************************************************************************
* Navbar Top
*********************************************************************************/
.navbar-top{
	background-color: #1C140E;
	color: #979189;
	font-size: 14px;
	text-transform: uppercase;
}
.navbar-top .contact-phone li{
	font-size: 12px;
	font-weight: 700;
}
.navbar-top .contact-phone li span{
	font-family: 'bernierregular';
	font-size: 24px;
	font-weight: normal;
	color: #dad3c8;
}
.navbar-top .contact-address{
	text-align: right;
}
/********************************************************************************
* Main Navigation
*********************************************************************************/
.navbar-default{
	border: none;
	border-top: 3px solid #1c140e;
	border-bottom: 3px solid #1c140e;
	margin-bottom: 40px;
	background-color: transparent;
}
.navbar-default .navbar-nav{
	float: none;	
	text-align: center;
}
.navbar-default .navbar-nav > li{
	float: none;	
	display: inline-block;
}
.navbar-default .navbar-nav > li > a{
	font-family: 'bernierregular', sans-serif;
	font-weight: normal;
	font-size: 26px;
	line-height: 26px;
	letter-spacing: .05em;
	color: #1c140e;
	padding: 8px 20px 15px;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus{
	color: #6b411f;
	background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus{
	color: rgba(0,0,0,.35);
	background-color: transparent;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus{
	color: #6b411f;
	background-color: transparent;
}
.navbar-default .navbar-nav > li > .dropdown-menu{
	border-radius: 0;
	padding-top: 10px;
	text-align: left;
	background-color: #1c140e;
}
.navbar-default .navbar-nav > li > .dropdown-menu:after{
	bottom: 100%;
	left: 20px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(28, 20, 14, 0);
	border-bottom-color: #1c140e;
	border-width: 7px;
	margin-left: -7px;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a{
	color: #979189;
	padding: 8px 20px;
	font-weight: normal;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus{
	background-color: #6b411f;
	color: #1c140e;
}
.navbar-default .navbar-nav > li > .dropdown-menu > .active > a, .navbar-default .navbar-nav > li > .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav > li > .dropdown-menu > .active > a:focus{
	color: #57534d;
	background-color: transparent;
}
.navbar-default .navbar-toggle{
	background-color: #6B411F;
	border: none;
	border-radius: 0;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
	background-color: #975C2C;
}
.navbar-default .navbar-toggle .icon-bar{
	background-color: #dad3c8;
}
.navbar-default .navbar-brand {
    color: #1c140e;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    background-color: transparent;
    color: #6B411F;
}
/********************************************************************************
* Slider
*********************************************************************************/
.slider-container{
	position:relative;
	z-index: 0;
	max-height: 420px;
	overflow:hidden;
	background-color: #1c140e;
	border-top: 5px solid #1c140e;
	border-right: 5px solid #1c140e;
	border-left: 5px solid #1c140e;
}
.slider-text-container{
	position: absolute;
	bottom: 0;
	background-color: rgba(71,44,22,.75);
	color: #979189;
	width: 100%;
	padding: 15px;
	text-align: center;
}

/********************************************************************************
* Page Header
*********************************************************************************/
.section-page-header{
	min-height: 300px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #1c140e;
	border-top: 5px solid #1c140e;
	border-right: 5px solid #1c140e;
	border-left: 5px solid #1c140e;
	text-align: left;
}
.section-page-header:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;	
	background-color: rgba(28, 20, 14,.6);
	z-index: 0;
}
.page-header{
	margin: 0;
	padding: 0;
	border-bottom: 0px;
	position: absolute;
	z-index: 1;
	width: 100%;
	bottom: 30px;
	left: 25px;
	/*top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);*/
}
.page-header h1{
	font-size: 72px;
}
.page-header .property-location{
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 10px;
	letter-spacing: .05em;	
}
.section-breadcrumbs{
	padding: 15px 30px;
}
.breadcrumbs{
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .05em;
}
/********************************************************************************
* Misc Content
*********************************************************************************/
.section-dark{
	color: #dad3c8;	
}
.wrap{
	overflow:hidden;	
}
.wrap .container{
	position: relative;	
}
.wrap > .container:before, .wrap > .container:after{
	content: '';
	position: absolute;
	top: 0;
	height: 99999px;
	width: 70px;
	background-image: url('../img/barbed-wire-vertical.svg');
	background-repeat: repeat-y;
	background-size: 100% auto;
	opacity: .1;	
}
.wrap > .container:before{
	right: 100%;
}
.wrap > .container:after{
	left: 100%;
}
.content{
	position: relative;
	z-index: 1;
	margin: 40px 0;
}

.call-to-action { 
	background-color: #1c140e;
	position: relative;
	padding: 40px 15px !important;
	width: 100%;
}
.call-to-action h2{
	margin-top: 0;
}
.call-to-action p{
	margin-bottom: 0;
	line-height: 18px;
}

.properties-button.icon-right{
	width: 100%;
	padding: 15px 80px 30px 20px;
	line-height: 18px;
	display: block;
}
.properties-button.icon-right .fa{
	font-size: 60px;
    padding: 15px 20px;
    width: auto;
}
.properties-button-text{
	font-size: 48px;
	line-height: 28px;
	font-family: 'bernierregular';
}

.google-maps {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/********************************************************************************
* Sidebar
*********************************************************************************/
.sidebar{
}
.sidebar .widget{
	margin-bottom: 30px;
}
.sidebar .widget h4 {
	padding: 0 15px 10px 15px;
	margin: 0;
	line-height: normal;
	color: #dad3c8;
	background-color: #1C140E;
}
.sidebar .widget .widget-content{
	padding: 15px;
	background: #aa9b83;
	background-color: rgba(28,21,14,.19);
}

/********************************************************************************
* Custom Post - Property
*********************************************************************************/
#property-image { 
	margin-bottom: 20px;
} 

.property-thumbnail { 
	margin-bottom: 10px;
} 

.property-search-title h3{
	margin-top: 0;
}
.property-search-acreage{
	font-size: 14px;
	font-weight: 700;
	font-family: 'Montserrat';
	text-transform: uppercase;
	display: inline-block;	
}
.property-search-thumbnail{
	position: relative;
	overflow:hidden;
}
.corner-ribbon{
	background: none repeat scroll 0 0 #7c2317;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    font-family: "bernierregular",sans-serif;
    left: -75px;
    letter-spacing: 1px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 10px;
    -ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Safari */
	transform: rotate(-45deg);
    width: 200px;
    z-index: 1;
}
.corner-ribbon.new{
	background-color: #524f24;
}
.property-search-thumbnail iframe{
	border: 5px solid #dad3c8;
	border-radius: 3px;
}
.property-search-price h3{
	text-align: right;
	margin-top: 0;
}

/* Property Sidebar */
.property-price-info{
	text-align: right;
}
.property-price-info .property-price{
	margin-top: 0;	
}
.property-price-info .property-price-terms{
	font-style: italic;
	color: rgba(28, 20, 14, 0.7);
    font-size: 90%;
}
.property-price-info .label{
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: .05em;	
}

.property-categories{
	font-style: italic;
	margin-bottom: 15px;	
}
.property-categories strong{
	font-style: normal;
}

.property-acreage{
		
}
.property-acreage-table{
	width: 100%;
	background-color: rgba(28,21,14,.19);
}
.property-acreage-table tr:first-child td{
	padding-top: 15px;
}
.property-acreage-table tr:last-child td{
	padding-bottom: 15px;
}
.property-acreage-table tr td{
	padding: 4px 10px;	
}
.property-acreage-table tr td:first-child{
	padding-left: 15px;
}
.property-acreage-table tr td:last-child{
	text-align: right;
	padding-right: 15px;
}
.property-acreage-table tr.property-acres-total td{
	background-color: rgba(28,21,14,.19);
	font-weight: 700;
	border-top: 2px solid #1c140e;
	text-transform: uppercase;
}
.property-acreage-table tr.property-acres-leased-blm td, .property-acreage-table tr.property-acres-leased-state td{
	color: rgba(28, 20, 14,.7);	
	font-size: 90%;
	font-style: italic;
	padding-left: 30px;
	padding-top: 0;
}

.property-acreage-table tr.property-land-use td{
	border-bottom: 2px solid #1c140e;
}
.property-acreage-table tr.property-land-use td:first-child{
	font-size: 12px;	
}
.property-acreage-table tr.property-land-use:last-child td{
	border: none;
}

/* Property Gallery */
.property-thumbnail iframe{
	border: 5px solid #dad3c8;
	border-radius: 3px;
}
.section-property-gallery{
	margin-top: 40px;	
}
.listing-gallery-popup-link{
	display: inline-block;
    overflow: hidden;
    position: relative;
	margin-bottom: 25px;
}
.listing-gallery-popup-link:after{
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 0;
	background-color: #472c16;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
	
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.listing-gallery-popup-link i{
	width: 100%;
	text-align: center;
	font-size: 30px;
	top: 50%;
	opacity: 0;
	display: block;
	position: absolute;
	color: #DAD3C8;
	z-index: 2;
	
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.listing-gallery-popup-link:hover:after{
	opacity: .75;
}
.listing-gallery-popup-link:hover i{
	opacity: 1;
}


/********************************************************************************
* Property Listing/Search
*********************************************************************************/
.search-pagination-container { 
	margin: 0;
} 

.property-sort-buttons { 
	margin: 20px 0;
	font-weight: bold;
} 

.property-sort-pagination { 
	text-align: right;
} 

.property-search-more { 
	margin-top: 10px;
} 

.property-search-more .fa{
	padding-left: 10px;
}

.pagination > li > a, .pagination > li > span {
    background-color: transparent;
    color: #1c140e;
    cursor: default;
    z-index: 2;
	font-family: 'Montserrat', sans-serif;
	border-radius: 0;
	text-shadow: none;
	border: none;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    background-color: transparent;
    color: #975C2C;

}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
	background-color: #1c140e;	
	color: #dad3c8;
	border: none;
}

.pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span{
	border-radius: 0;
	background-color: #6b411f;
	color: #dad3c8;
}
.pagination > li:first-child > a:hover, .pagination > li:first-child > span:hover, .pagination > li:last-child > a:hover, .pagination > li:last-child > span:hover, .pagination > li:first-child > a:focus, .pagination > li:first-child > span:focus, .pagination > li:last-child > a:focus, .pagination > li:last-child > span:focus{
	background-color: #975C2C;
	color: #dad3c8;
}

.property-search-btn-container {
	text-align: right;
} 

#property-search-btn { 
	padding: 15px;	
} 

.property-search-label { 
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
} 

.property-search-input { 
} 

.property-sort-text { 
	font-weight: bold;
	margin-right: 15px;
	margin-left: 15px;
}

/********************************************************************************
* Featured Property
*********************************************************************************/
.section-featured-property { 
	margin-bottom: 50px;
} 

figure.featured-property {
	border: 3px solid #1c140e;
	position: relative;
	overflow: hidden;
	text-align: center;
	cursor: pointer;
	background: #1c140e;
	-webkit-transition: all .5s;
	transition: all 0.5s;
	height: 215px;
}

figure.featured-property img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: .8;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

figure.featured-property figcaption {
	color: #dad3c8;
	font-size: 14px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 25px;
	text-transform: uppercase;
}
figure.featured-property figcaption::before {
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	border: 2px solid #1c140e;
	content: '';
}
figure.featured-property figcaption::before,
figure.featured-property figcaption::after {
	pointer-events: none;
}

figure.featured-property figcaption,
figure.featured-property figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
figure.featured-property figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

figure.featured-property h3 {
	color: #dad3c8;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
	top: 50%;
	position: relative;
}

figure.featured-property h3,
figure.featured-property p {
	margin: 0;
}

figure.featured-property figcaption::before,
figure.featured-property p {
	opacity: 0;
	-webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

figure.featured-property p {
	margin-top: 5px;
}
figure.featured-property p span{
	display: block;
}
figure.featured-property p .location{
	font-weight: 700;
	margin-bottom: 5px;
}
figure.featured-property p .price{
	font-family: 'bernierregular';
	font-size: 24px;
}

/* Hover */
figure.featured-property:hover {
	background: #472c16;
}
figure.featured-property:hover h3 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	top: 0;
}

figure.featured-property:hover figcaption::before,
figure.featured-property:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.featured-property:hover img {
	opacity: 0.25;
}

#search-form{
		
}
#search-form > .row > div > .row:last-child{
	margin-top: 10px;
}

/********************************************************************************
* Custom Post - Staff
*********************************************************************************/
.agent-container hr:last-child{
	display: none;	
}
.agent-image{
}
.agent-name{
	margin-top: 0;	
}
.agent-title{
	font-size: 14px;
	font-weight: 700;
	font-family: 'Montserrat';
	text-transform: uppercase;
	display: inline-block;
}
.agent-content{
	padding: 0;
}
.agent-bio{
	padding: 15px;
}
.agent-contact{
	background-color:rgba(28,21,14,.19);
	padding: 10px 15px;
	margin-left: 0;	
	font-size: 14px;
}
.agent-contact .fa-stack{
	font-size: 12px;
}
.agent-contact .fa-inverse{
	color: #8C7F6C;
}

/********************************************************************************
* Miscellaneous Plugin Styles
*********************************************************************************/
.visual-form-builder fieldset{
	border: none;
	border-radius: 0;
	background: #aa9b83;
	background-color: rgba(28,21,14,.19);	
}
.visual-form-builder .vfb-legend{
	border: none;
	background-color: rgba(28,21,14,.19);
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
	padding: 0 30px 5px 30px;
}
.visual-form-builder label, label.vfb-desc{
	text-transform: uppercase;
	letter-spacing: .05em;	
}
.vfb-submit, input.vfb-submit[type="submit"]{
	font-family: 'Montserrat', sans-serif;
	border-radius: 0;
	border: none;
	text-shadow: none;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	background-color: #6b411f;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 10px 20px;
}
.vfb-submit, input.vfb-submit[type="submit"]:hover, .vfb-submit, input.vfb-submit[type="submit"]:active, .vfb-submit, input.vfb-submit[type="submit"]:focus{
	color: #dad3c8;
	background-color: #975C2C;
}
input.vfb-text, input.vfb-text[type="text"], input.vfb-text[type="tel"], input.vfb-text[type="email"], input.vfb-text[type="url"], textarea.vfb-textarea, .form-control{
	border-radius: 0;
	background-color: #dad3c8;
	border: 2px solid #1C140E;	
}
input.vfb-text:focus, input.vfb-text[type="text"]:focus, input.vfb-text[type="tel"]:focus, input.vfb-text[type="email"]:focus, input.vfb-text[type="url"]:focus, textarea.vfb-textarea:focus, .form-control:focus{
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(138, 133, 72, 0.6);
	border-color: #b29244;
}

.main .ngg-gallery-thumbnail img{
	background-color: #1C140E;
    border: none;
	margin-right: 10px;
}
.main .ngg-gallery-thumbnail img:hover{
	background-color: #6B411F;
}

/********************************************************************************
* Footer
*********************************************************************************/
footer.footer-wrapper{
	background-color: #1c140e;
	color: #979189;
	font-size: 14px;
	line-height: 16px;
	padding: 40px 0;
}
.logo-realtor{
	margin-right: 15px;	
}
.copyright{
	color: #dad3c8;
	text-align: right;
}
.copyright a{
	color: #b29244;
}
.copyright a:hover{
	color: #6B411F;
	text-decoration: none;
}


.full-width {
	width: 100%;
} 

/* vertical alignment styles */
.col-top {
    vertical-align:top;
}
.col-middle {
    vertical-align:middle;
}
.col-bottom {
    vertical-align:bottom;
}

.videowrapper, .entry-content-asset {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videowrapper iframe, .entry-content-asset iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/********************************************************************************
* Media Queries
*********************************************************************************/

@media (min-width: 768px) {
    .container-sm-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-sm-height {
        display:table-row;
    }
    .col-sm-height {
        display:table-cell;
        float:none;
    }
}
@media (min-width: 992px) {
    .container-md-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-md-height {
        display:table-row;
    }
    .col-md-height {
        display:table-cell;
        float:none;
    }
}
@media (max-width: 1199px){
	.section-page-header{
		background-size: 125% auto;
		background-position: center;
	}
	.call-to-action h3{
		font-size: 20px;	
	}
	.properties-button{
		font-size: 18px;
		line-height: 18px;	
	}
	.properties-button-text{
		font-size: 30px;
		line-height: 30px;	
	}
	figure.featured-property{
		height: 175px;
	}
	footer .nav-pills > li > a{
		font-size: 12px;
		padding: 13px 8px;	
	}
}
@media (max-width: 991px){
	.navbar-top .contact-phone li span{
		font-size: 20px;	
	}
	.navbar-default .navbar-nav > li > a {
		font-size: 22px;
		padding: 8px 10px 15px;
	}
	.section-page-header{
		background-size: 150% auto;
		background-position: center top;
	}
	.sidebar {
		padding-bottom: 30px;	
	}
	.properties-button.icon-right {
		padding: 15px 80px 20px 20px;
		margin-top: 15px;
	}
	.properties-button.icon-right .fa{
		font-size: 36px;	
	}
	.section-featured-property .col-count-3{
		display: none;	
	}
	figure.featured-property{
		height: 206px;
	}
	#property-search-btn { 
		margin-top: 15px;
	}
	.property-sort-text {
		display: block;
		font-size: 12px;
		margin-left: 0;
		margin-top: 10px;
	}
	.property-search-price h3, .property-price h3{
		text-align: left;	
	}
	.property-price-info {
		text-align: center;
	}
	.copyright{
		text-align: center;	
	}
}
@media (max-width: 767px){
	.navbar-top .contact-phone{
		text-align: center;	
	}
	.navbar-default .navbar-collapse, .navbar-default .navbar-form{
		background-color: rgba(28,21,14,.19);
		border: none;
	}
	.navbar-default .navbar-nav > li{
		display: block;	
		text-align: left;
	}
	.navbar-default .navbar-nav > li > .dropdown-menu::after{
		display: none;	
	}
	.navbar-default .navbar-nav .open .dropdown-menu > li > a{
		color: #979189;
	}
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus{
		background-color: #6b411f;
    	color: #1c140e;
	}
	.section-page-header{
		min-height: 200px;
	}
	.page-header h1{
		font-size: 48px;
	}
	h1{
		font-size: 36px;	
	}
	h2{
		font-size: 30px;	
	}
	h3{
		font-size: 24px;	
	}
	h4{
		font-size: 20px;	
	}
	h5{
		font-size: 18px;	
	}
	h6{
		font-size: 16px;	
	}
	.section-featured-property .col-count-2{
		display: none;	
	}
	figure.featured-property img{
		min-width: 100%;	
	}
	figure.featured-property{
		height: auto;
	}
	.property-search-input {
		margin-bottom: 10px;
	}
	.property-sort-pagination { 
		text-align: left;
	} 
	.properties-button{
		margin-top: 10px;	
	}
	.property-container .btn{
		margin-top: 15px;	
	}
	
	footer.footer-wrapper{
		font-size: 12px;	
	}
	.copyright{
		text-align: center;	
	}
}
@media (max-width: 499px){
	.section-page-header{
		background-size: 200% auto;
		text-align: center;
	}
	.page-header{
		left: auto;
	}
	.property-sort-pagination { 
		text-align: left;
	} 
	
	.property-sort-text { 
		display: none;
	} 
}