@charset "utf-8";
/*===========================================================================================================*/
/*=========================================== COMMON CONFIG =================================================*/
/*===========================================================================================================*/
.alert-success, .alert-info, .alert-warning, .alert-danger {
  font-size: 1.4em;
}
:target::before {
  content: "";
  display: block;
  height: 130px; /* fixed header height/
  margin: -130px 0 0; / negative fixed header height */
}
@media screen and (min-width: 1200px) {
  .modal-lg {
    width: 1140px;
  }
}
.side-by-side {overflow: hidden;}

.side-by-side img {position: relative; width: 100%}

.side-by-side > div {
	position: relative;
	opacity: 0;
    filter: alpha(opacity=0);
}
.side-by-side > div.ready {
	opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 1.2s ease 0s;
    -moz-transition: opacity 1.2s ease 0s;
    -o-transition: opacity 1.2s ease 0s;
    -webkit-backface-visibility: hidden;
}
.side-by-side > div > div {
	overflow: hidden;
}
.side-by-side span.bnn {
	position: absolute;
	left: 0; right: 0;
	top: 0; bottom: 0;
	background-position: center;
	background-size: cover;
}

.side-by-side .text-by-side {
    position: relative;
    /*top: 50%;*/
    padding: 60px 8vw;
    /*transform: translate(0,-60%);*/
}
@media screen and (min-width: 1200px) {
  .modal-lg {
    width: 1140px;
  }
}
@media screen and (max-width: 1200px) {
	.side-by-side .text-by-side {
		padding: 40px 4vw;
	}
	.side-by-side .text-by-side h2 {
	    font-size: 1.4em;
		line-height: 1.2em;
		margin-bottom: 10px;
		margin-top: 0;
	}
	.side-by-side .text-by-side p {
		font-size: .8em;
		line-height: 1.3em;
	    margin-bottom: 10px;
	}
}
@media screen and (max-width: 991px) {
	.side-by-side .text-by-side {
		padding: 55px 15px;
	}
	.side-by-side .text-by-side h2 {
    	font-size: 1em;
	}
}
@media screen and (max-width: 991px) {
	.side-by-side span.bnn {
		position: static;
		height: 200px;
		width: 100%;
		display: block;
	}
}

.custom-table,
.custom-table .row {
    margin: 0;
}
.custom-table > div {
    padding: 0;
}
.custom-table > div p:first-child {
    background: #e4e4e4;
    border-top: solid 1px #ccc;
}
.custom-table .row > div {
    padding: 0;
}
.custom-table p {
    border-bottom: solid 1px #ccc;
    margin: 0;
    padding: 7px 12px;
	font-size: 16px;
}
@media screen and (min-width: 767px) {
	.custom-table {text-align: right}
}

.team-grid {margin: 25px 0 0}
.member-link {
    margin: 0 0 25px;
}
.member-link .name {
    display: block;
    margin: 15px 0 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
}
.member-link .title {
    display: block;
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3em;
}
/*===========================================================================================================*/
/*=========================================== RWD VIDEOS ====================================================*/
/*===========================================================================================================*/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/*===========================================================================================================*/
/*=========================================== FOMRS =========================================================*/
/*===========================================================================================================*/
label {
  display: block;
  text-align: left;
  font-size: 14px;
  line-height: 28px;
  color: #7f7f7f;
  margin: 0;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.form-horizontal .control-label {
  text-align: left;
}
input[type='text'], input[type='email'], input[type='tel'], input[type='url'], input[type='password'], input[type='number'], input[type='date'], textarea, select {
  width: 100%;
  height: 60px;
  border-width: 1px;
  border: solid 1px;
  border-color: #ccc;
  padding: 0 5px;
  color: #000;
  font-size: 16px;
  border-radius: 0;
}
textarea {
  min-height: 120px;
}
.custom-checkRad label {
  cursor: pointer;
  display: inline-block;
}
.custom-checkRad input[type="checkbox"], .custom-checkRad input[type="radio"] {
  display: none;
}
.custom-checkRad input[type="checkbox"] + label .unchecked, .custom-checkRad input[type="radio"] + label .unchecked {
  display: inline-block;
}
.custom-checkRad input[type="checkbox"] + label .checked, .custom-checkRad input[type="radio"] + label .checked {
  display: none;
}
.custom-checkRad input[type="checkbox"]:checked + label .unchecked, .custom-checkRad input[type="radio"]:checked + label .unchecked {
  display: none;
}
.custom-checkRad input[type="checkbox"]:checked + label .checked, .custom-checkRad input[type="radio"]:checked + label .checked {
  display: inline-block;
}
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
	display: inline-block;
  position: relative;
  cursor: pointer;
  border: solid 2px #ff0000;
  background-color: #ff0000;
  color: #fff;
  line-height: 1.2em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 25px 30px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input.button:focus, .gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_footer input[type=submit]:focus, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input.button:focus, .gform_wrapper .gform_page_footer input[type=submit]:hover, .gform_wrapper .gform_page_footer input[type=submit]:focus {
	background-color: #AB0000;
  border-color: #AB0000;	
  color: #fff;
  text-decoration: none;
}
/*===========================================================================================================*/
/*=========================================== BTN-LAYOUT ====================================================*/
/*===========================================================================================================*/
.btn-layout {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: solid 2px #ff0000;
  background-color: #ff0000;
  color: #fff;
  line-height: 1.2em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 25px 30px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-layout:hover,
.btn-layout:focus {
  background-color: #AB0000;
  border-color: #AB0000;	
  color: #fff;
  text-decoration: none;
}
.white-btn-layout {
  position: relative;
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}
.white-btn-layout:after {
  content: '';
  display: block;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -4px;
  height: 4px;
  background-color: #cc2630;
}
.white-btn-layout:hover,
.white-btn-layout:focus {
  border-color: #fff;
  background-color: #fff;
  color: #00163c;
  text-decoration: none;
}
/*=========================================== BLOG RIGHT CLOUMN =============================================*/
.news-right-column form p {
  font-size: 1em;
  margin-bottom: 15px;
}
.news-right-column form input[type="text"] {
  border-radius: 0;
  height: 47px;
}
.news-right-column form input[type="submit"] {
  width: 100%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: solid 2px #ff0000;
  background-color: #ff0000;
  color: #fff;
  line-height: 1.2em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news-right-column form input[type="submit"]:hover, .news-right-column form input[type="submit"]:focus {
  background-color: #AB0000;
  border-color: #AB0000;	
  color: #fff;
  text-decoration: none;
}
/*======================================== MEDIA MODULE ==========================================================*/
.section-white.events-page {
	padding: 45px 0;
}
.events-page .media-module > div {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: dashed 1px #ebebeb;
}
.events-page .media-module > div:last-child {
  padding: 0;
  border: none;
}
.events-page .media-module .left {
  position: relative;
  float: left;
  display: block;
  width: 180px;
  height: 180px;
  transition: background-color 300ms ease;
  -webkit-transition: background-color 300ms ease;
  -moz-transition: background-color 300ms ease;
  -o-transition: background-color 300ms ease;
  background-color: #fff;
}
.events-page .media-module .left:hover {
  background-color: #E1E1E1;
}
.events-page .media-module .left span {
  display: block;
  position: absolute;
  left: 15px; top: 15px; right: 15px; bottom: 15px;
  background-position: center;
  background-size: cover;
}
.events-page .media-module .right {
  padding-left: 195px;
}
.events-page .media-module .right .text {
  margin-bottom: 0;
}
.events-page .media-module-interior {
  padding-top: 50px;
}
.events-page .media-module .news-thumb {
  float: left;
  width: 250px;
  margin: 0 10px 10px 0;
}
@media screen and (max-width: 991px) {
  .events-page .media-module .left {
    width: 180px;
    height: 120px;
  }
  .events-page .media-module .right {
    padding-left: 195px;
  }
}
@media screen and (max-width: 768px) {
  .events-page .media-module .right .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 650px) {
  .events-page .media-module .left {
    display: none;
  }
  .events-page .media-module .right {
    padding-left: 0;
  }
}
/*=========================================== PAGINATION ===================================================*/
.pagination {
  margin: 25px 0;
  display: block;
}
.pagination > div {
  float: right;
  padding: 0;
  margin: 0;
  display: table;
}
.pagination > div > a, .pagination > div > span {
  display: inline-block;
  font-size: 14px;
  align-items: center;
  text-align: center;
  min-width: 20px;
  padding: 4px 12px;
  border: solid 1px #dcdcdc;
  border-right: none;
}
.pagination > div > a:first-child, .pagination > div > span:first-child {
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
}
.pagination > div > a:last-child, .pagination > div > span:last-child {
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-right: solid 1px #dcdcdc;
}
.pagination > div > a:hover, .pagination > div > span:hover {
  background-color: #f7f7f7;
}
.pagination > div > span.current {
  color: #fff;
  background-color: #AB0000;
}


/*=========================================== DEVELOPMENT SCETION ======================================================*/
.development-section {
  padding: 40px 3vw 70px;
  position: relative;
  overflow: hidden;
  background-color: #838383;
}
.development-section:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url("../png/bnn-overlay-development.png");
  background-position: left;
  background-size: auto;
  background-repeat: repeat-y;
}
.development-section span.parallax {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url("../jpg/bnn-development.jpg");
  background-position: center;
  background-size: cover;
}
.development-section .container-fluid {
  position: relative;
  z-index: 3;
  transform: translate(40px,0);
  -webkit-transform: translate(40px,0);
  -moz-transform: translate(40px,0);
  -o-transform: translate(40px,0);
  opacity: 0;
}
.development-section.ready .container-fluid {
  opacity: 1;
  transform: translate(0,0);
  -webkit-transform: translate(0,0);
  -moz-transform: translate(0,0);
  -o-transform: translate(0,0);
   transition: transform .6s ease, opacity .8s linear;
  -webkit-transition: transform .6s ease, opacity .8s linear;
  -moz-transition: transform .6s ease, opacity .8s linear;
  -o-transition: transform .6s ease, opacity .8s linear;
}
.development-section .container-fluid .h1-style {
  color: #fff;
}
.development-section .container-fluid p {
  max-width: 670px;
  color: #fff;
  padding-left: 3vw;
}

@media screen and (max-width: 768px) {

}

/*=========================================== LEFT RIGHT SCETION ======================================================*/
.left-right {
  padding: 0;
  position: relative;
  z-index: 3;
  background-color: #fff;
}
.left-right span.parallax {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  background-position: center;
  background-size: cover;
  transform: translate(40px,0);
  -webkit-transform: translate(40px,0);
  -moz-transform: translate(40px,0);
  -o-transform: translate(40px,0);
  opacity: 0;
}
.left-right.ready span.parallax {
  opacity: 1;
  transform: translate(0,0);
  -webkit-transform: translate(0,0);
  -moz-transform: translate(0,0);
  -o-transform: translate(0,0);
   transition: transform .6s ease, opacity .8s linear;
  -webkit-transition: transform .6s ease, opacity .8s linear;
  -moz-transition: transform .6s ease, opacity .8s linear;
  -o-transition: transform .6s ease, opacity .8s linear;
}
.left-right .container-text {
  position: relative;
  left: 55%;
  width: 45%;
  z-index: 3;
  padding: 40px 3vw 80px;
  transform: translate(40px,0);
  -webkit-transform: translate(40px,0);
  -moz-transform: translate(40px,0);
  -o-transform: translate(40px,0);
  opacity: 0;
}
.left-right.ready .container-text {
  opacity: 1;
  transform: translate(0,0);
  -webkit-transform: translate(0,0);
  -moz-transform: translate(0,0);
  -o-transform: translate(0,0);
   transition: transform .6s ease .1s, opacity .8s linear .1s;
  -webkit-transition: transform .6s ease .1s, opacity .8s linear .1s;
  -moz-transition: transform .6s ease .1s, opacity .8s linear .1s;
  -o-transition: transform .6s ease .1s, opacity .8s linear .1s;
}
.left-right .container-text p {
  padding: 0 2vw;
}
.left-right .container-text .btn-layout:before {
  content: '';
  position: absolute;
  top: -2px;
  right: 100%;
  margin-right: 2px;
  border-style: solid;
  border-width: 0 0 75px 40px;
  border-color: transparent transparent #ff0000 transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.left-right .container-text .btn-layout:hover:before {
  border-color: transparent transparent #AB0000 transparent;

}
.left-right.brokerage-section span.parallax {
  background-image: url("../jpg/bnn-brokerage.jpg");
  width: 47%;
}
.left-right.brokerage-section .container-text {
  left: 47%;
  width: 53%;
}
.left-right.construction-section span.parallax {
  background-image: url("../jpg/bnn-construction-3.jpg");
  width: 56%;
  right: 0;
  left: auto;
}
.left-right.construction-section .container-text {
  left: 0;
  width: 44%;
}

/*
.left-right.management-section span.parallax {
  background-image: url("../img/bnn-management.jpg");
  width: 60%;
}
.left-right.management-section .container-text {
  left: 60%;
  width: 40%;
}
*/
.left-right.consulting-section span.parallax {
  background-image: url("../jpg/bnn-advisory-3.jpg");
  width: 55%;
  /*right: 0;
  left: auto;*/
}
.left-right.consulting-section .container-text {
  left: 55%;
  width: 45%;
}
@media screen and (max-width: 991px) {
  .left-right span.parallax {
    width: 40%!important;
  }
  .left-right .container-text {
    width: 60%!important;
  }
  .left-right.brokerage-section .container-text,
  .left-right.management-section .container-text,
  .left-right.consulting-section .container-text {
    left: 40%!important;
  }
}
@media screen and (max-width: 610px) {
  .left-right span.parallax {
    width: 5%!important;
  }
  .left-right .container-text {
    width: 95%!important;
  }
  .left-right.brokerage-section .container-text,
  .left-right.management-section .container-text,
  .left-right.consulting-section .container-text {
    left: 5%!important;
    padding: 20px 15px 40px;
  }
  .left-right .container-text p {
    padding: 0;
  }
}

/*=========================================== PORTFOLIO GRID ========================================================*/
.projects-interior {
	padding: 0 0 150px;
}
.projects-interior > .projects-wrapping {
	position: relative;
	top: 80px;
	opacity: 0;
    filter: alpha(opacity=0);
	text-align: center;
}
.projects-interior.ready > .projects-wrapping {
	top: 0;
	opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity .8s ease 0s, top .4s ease 0s;
    -moz-transition: opacity .8s ease 0s, top .4s ease 0s;
    -o-transition: opacity .8s ease 0s, top .4s ease 0s;
    -webkit-backface-visibility: hidden;
}
.portfolio-grid {
	padding: 0;
	margin-top: 45px;
}
.projects-interior .portfolio-grid {
	margin: 0;
	padding: 0;
}
.portfolio-grid > div {
	float: left;
	width: 33.3333%;
}
.image-holder {
	font-family: 'Oswald', sans-serif;
	display: block;
	position: relative;
	padding-bottom: 68%;
	border: solid 2px #fff;
}
.image-holder:before {
	content: '';
	display: block;
	position: absolute;
	z-index: 2;
	left: 0; top: 0; right: 0; bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
}
.image-holder:hover:before {
	opacity: 1;
	transform: scale(.95);
	-webkit-transform: scale(.95);
	-moz-transform: scale(.95);
	-o-transform: scale(.95);
}
.image-holder .bg-img {
	display: block;
	position: absolute;
	z-index: 1;
	left: 0; top: 0; right: 0; bottom: 0;
	background-position: center;
	background-size: cover;
	 transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
}
.image-holder:hover .bg-img {
	transform: scale(.95);
	-webkit-transform: scale(.95);
	-moz-transform: scale(.95);
	-o-transform: scale(.95);
}
.image-holder .content {
	display: block;
	position: absolute;
	z-index: 3;
	left: 15px; right: 15px; top: 50%;
	text-align: center;
	transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    opacity: 0;
    transition: opacity 400ms ease;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
}
.image-holder:hover .content {
	opacity: 1;
}
.image-holder .content .title {
	display: block;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.image-holder .content .address {
	display: block;
	font-style: italic;
	color: #fff;
	font-size: 18px;
	font-weight: 200;
	line-height: 1.2em;
	letter-spacing: 2px;
	text-transform: capitalize;
}
.image-holder .content .line {
	font-style: italic;
	display: inline-block;
	color: #fff;
	font-size: 12px;
	font-weight: 200;
	padding: 0 30px;
	margin: 10px 0;
	text-transform: uppercase;
	position: relative;
}
.image-holder .content .line:before,
.image-holder .content .line:after {
	content: '';
	position: absolute;
	top: 50%;
	width: 26px;
	height: 1px;
	margin-top: -1px;
	background-color: #fff;
}
.image-holder .content .line:before {
	left: 0;	
}
.image-holder .content .line:after {
	right: 0;
}
@media screen and (max-width: 1100px) {
	.image-holder .content .title {font-size: 22px;}
}
@media screen and (max-width: 1024px) {
	.projects-section h2.h1-style {font-size: 38px;}

	.portfolio-grid > div {
		width: 50%;
	}
}
@media screen and (max-width: 768px) {
	.projects-section h2.h1-style {font-size: 28px;}
	.image-holder .content .title {font-size: 18px;}
	.image-holder .content .address {font-size: 18px;}
	.image-holder .content .line {font-size: 12px;}
}
@media screen and (max-width: 640px) {
	.portfolio-grid > div {
		float: none;
		width: auto;
	}
}
@media screen and (max-width: 420px) {
	.image-holder .content .title {font-size: 16px;}
	.image-holder .content .address {font-size: 16px;}
}


/*=========================================== SEARCH ========================================================*/
.search {
	padding: 10px 0 30px;
	background-color: #f7f7f7;
}
.search>.container {
	position: relative;
	top: 80px;
	opacity: 0;
    filter: alpha(opacity=0);
}
.search.ready>.container {
	top: 0;
	opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity .8s ease 0s, top .4s ease 0s;
    -moz-transition: opacity .8s ease 0s, top .4s ease 0s;
    -o-transition: opacity .8s ease 0s, top .4s ease 0s;
    -webkit-backface-visibility: hidden;
}
.search .noUiGroup .noUi-connect {
    background: #ffaeb2;
}
.search .noUiGroup {
	margin-bottom: 15px;
}
.search .noUiGroup p {
	font-size: 14px;
	color: #887172;
	margin: 3px 0 0;
}
.search .noUiGroup .noUi-target {
	padding: 0 15px;
}
.search .noUiGroup .hidden-inputs {
	overflow: hidden;
	height: 0;
	opacity: 0;
}
.search .sale-lease {
    margin: 0;
}
.search .sale-lease li:first-child {
	margin-bottom: 12px;
}
.search label .far {
    font-size: 25px;
	vertical-align: top;
}
.search .dropdown {
	width: 100%;
}
.search .dropdown .btn-layout {
	width: 100%;
	color: #7f7f7f;
	padding: 18px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: capitalize;
	background-color: transparent;
	border-color: #7f7f7f;
	margin: 0 0 12px;
}
.search .dropdown .dropdown-menu {
	width: 100%;
}
.search .dropdown .dropdown-menu ul {
	margin-bottom: 0;
}
.search .dropdown-item.active,
.search .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #ffeaeb;
}
.search button.btn-layout {
	font-size: 14px;
	padding: 20px;
	margin: 30px 0 0;
}
.search button.btn-layout.btn-clear {
	margin-right: 10px;
	background-color: #929292;
	border-color: #929292;
}
.search button.btn-layout.btn-clear:hover {
	background-color: #696868;
	border-color: #696868;
}


/*=========================================== PROPERTIES ========================================================*/
.projects-list {
	padding: 1px 3px 0;
    text-align: center;
}
.grid-listings.projects-list {
    padding: 0 0 0 1px;
}
.projects-list .projects-list-item {
	width: 25%;
	vertical-align: top;
	display: inline-block;
    /*margin: 0.5px -1px 0;*/
	margin: 0;
	border-right: solid 1px #fff;
	border-bottom: solid 1px #fff;
}
.projects-list.closed-grid .projects-list-item {
	/*width: 50%;*/
	padding-bottom: 1px;
}
.grid-listings.projects-list .projects-list-item {
	margin: 0 -3px;
}
.projects-list .projects-list-item a {
	position: relative;
	overflow: hidden;
	display: block;
}
.projects-list .projects-list-item a.btn-layout {
    /*border-radius: 0 0 4px 4px;*/
	margin-top: 1px;
    border-radius: 0;
}
.projects-list .projects-list-item .mls-image {
	display: block;
	padding-bottom: 66%;
	width: 100%;	
	overflow: hidden;
	position: relative;
}
.projects-list .projects-list-item .mls-image .background-image {
	position: absolute;
	left: 0; right: 0; top: 0; bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 1500ms ease;
	-webkit-transition: all 1500ms ease;
	-moz-transition: all 1500ms ease;
	-o-transition: all 1500ms ease;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
}
.projects-list .projects-list-item .mls-image:hover .background-image {
	transform: scale(1.15);
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-o-transform: scale(1.15);
}
.projects-list .projects-list-item .mls-image .shadow {
	display: block;
	position: absolute;
	z-index: 2;
	left: 0; bottom: 0; right: 0;
	height: 85%;
	opacity: 1;
	transition: all 400ms ease;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+49,0+49,0.65+92 */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 49%, rgba(0,0,0,0.65) 92%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.65) 92%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.92) 92%,rgba(0,0,0,0.92) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}
.projects-list .projects-list-item .mls-image:hover .shadow {
	opacity: 0.9;
}
.projects-list .projects-list-item .mls-image .info {
	display: block;
	position: absolute;
	z-index: 3;
	left: 10px; right: 10px; bottom: 10px;
	transition: all 300ms ease;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-o-transition: all 400ms ease;
}
.projects-list .projects-list-item .mls-image:hover .info {
	opacity: 0.9;
}
.projects-list .projects-list-item .mls-image .info .left {
	/*display: inline-block;
	vertical-align: bottom;
	width: 56.5%;*/
	display: block;
    vertical-align: bottom;
    width: auto;
}
.projects-list .projects-list-item .mls-image .info .left .city {
	text-align: left;
	display: block;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	margin-bottom: 3px;
	text-transform: uppercase;
}
.projects-list .projects-list-item .mls-image .info .left .type,
.projects-list .projects-list-item .mls-image .info .left .address {
	text-align: left;
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	margin-bottom: 10px;
	/*text-transform: capitalize;*/
}
.projects-list .projects-list-item .mls-image .info .left .type {font-style: italic; font-size: 14px; margin-bottom: 2px}
.projects-list .projects-list-item .mls-image .info .right {
	/*display: inline-block;
    width: 42%;
    text-align: right;
    vertical-align: bottom;*/
	position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    text-align: right;
}
.projects-list .projects-list-item .mls-image .info .right .totals {
	text-align: right;
	display: block;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2em;
	margin-bottom: 2px;
	text-transform: capitalize;
	text-shadow: 2px 1px 0px #000;
}
.projects-list .projects-list-item .mls-image .info .right .totals strong {
	display: inline-block;
	margin-right: 20px;
	position: absolute;
    right: 100%;
    width: 110px;
}

.listings-details-wrap {
	padding-top: 15px;
}
.affix-top {
	position: absolute;
	left: 15px; right: 15px;
}
.affix-top .contact-map {
	padding-bottom: 55%!important;
}
.affix-top .broker-details {
	margin-top: 30px;
}
.affix-top .broker-details > a {
	float: left;
	opacity: 1;
	transition: opacity 250ms linear;
	-webkit-transition: opacity 250ms linear;
	-moz-transition: opacity 250ms linear;
	-o-transition: opacity 250ms linear;
}
.affix-top .broker-details > a:hover {
	opacity: .65;
}
.affix-top .broker-details > a > span {
	background-position: center;
	background-size: cover;
	display: block;
	width: 120px;
	padding-bottom: 120px;
	border-radius: 50%;
}
.affix-top .broker-details > p {
	font-family: 'Muli', sans-serif;
	font-size: 18px;
	padding-left: 135px;
	margin-top: 23px;
	line-height: 1.3em;
}
.affix-top .broker-details > p > a em {
	color: #909090;
}
.grey-box {
	background-color: #fff;
	border: solid 1px #e4e4e4;
	padding: 15px;
	font-weight: 600;
    margin-bottom: 15px;
}
.grey-box h1 {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-top: 10px;
    line-height: 1.4em;
    color: #d9012e;
    text-align: center;
    margin-bottom: 0;
    font-size: 22px;
}
.grey-box h1 span {
	display: block;
    color: #232323;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    font-style: italic;
	margin-left: 0;
    text-transform: capitalize;
}
.grey-box .small-info {
	text-align: center;
	margin: 15px 0 0;
}
.grey-box .small-info li {
    font-size: 24px;
    font-weight: 200;
}
.grey-box .small-info .fa {
	font-size: 70%;
}
.grey-box .small-info img {
	width: 13px;
}
.grey-box span.line {
	display: block;
	background-color: #e4e4e4;
	height: 1px;
	margin: 13px auto;
}
.grey-box h2 {
	font-size: 28px;
    font-style: normal;
	font-weight: 200;
	color: #5b5b5b;
    text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 15px;
	line-height: 1.2em;
	text-align: center;
}
.grey-box h2 span {
	display: block;
    color: #6A6A6A;
    font-size: 14px;
    font-weight: 600;
    line-height: 2em;
	margin-left: 0;
    text-transform: capitalize;
}
.grey-box .btn-layout {
	display: block;
	/*border-width: 2px;
	font-size: 1.2em;*/
	margin-bottom: 5px;
	font-size: 16px;
}
.grey-box .btn-layout:last-child {
	margin-bottom: 0;
}
#more-info .inputs-list.multi-container {
	list-style: none;
    padding-left: 0;
}
.details-info-tag {
	display: inline-block;
	padding: 0 5px;
	color: #fff;
	    border: solid 1px #359901;
    background-color: #41af09;
	border-radius: 3px;
}

.card-header {
	font-size: 16px;
	text-align: center;
	padding: 2px 15px;
}

.info-wrapper div.dataset ul {
    margin: 0;
    padding: 0;
}
.info-wrapper div.dataset ul li:after,
.info-wrapper div.dataset ul li:before {
    content: "";
    display: table;
}
.info-wrapper div.dataset ul li:after {
    border-top: 2px dotted #ccc;
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}
.info-wrapper div.dataset ul li {
    position: relative;
    margin: 0;
    padding: 3px 0;
    list-style: none;
    display: table;
    font-size: 16px;
    width: 100%;
}
.info-wrapper div.dataset ul li strong {
    font-weight: 400;
    color: #555;
    position: relative;
    padding-right: 5px;
    z-index: 2;
    background: #fff;
}
.info-wrapper div.dataset ul li span {
    text-align: right;
    position: relative;
    padding-left: 5px;
    z-index: 2;
    background: #fff;
    float: right;
    max-width: 65%;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
}
@media screen and (max-width: 1450px) {
	.projects-list .projects-list-item {width: 33.3%;}
}
@media screen and (max-width: 1100px) {
	.projects-list .projects-list-item .mls-image .info .left .city {font-size: 16px;}
	.projects-list .projects-list-item .mls-image .info .left .type, .projects-list .projects-list-item .mls-image .info .left .address {font-size: 13px;}
	.projects-list .projects-list-item .mls-image .info .left .type,
	.projects-list .projects-list-item .mls-image .info .right .totals {font-size: 12px}
}
@media screen and (max-width: 1024px) {
	.grey-box h1 {
		font-size: 2em;
	}
	.grey-box h1 span {
		font-size: 16px;
	}
	.grey-box h2 {
		font-size: 1.85em;
	}
	.grey-box .property-specs {
		padding: 6px 15px;
	}
	.grey-box .property-specs p {
		font-size: 1.4em;
	}
}
@media screen and (max-width: 991px) {
	.projects-list .projects-list-item { width: 50%; }
}
@media screen and (max-width: 768px) {
	.affix-top {
		margin-top: 0;
		position: static;
	}
	.properties-section .projects-list .list-details li { font-size: 16px; }
	.properties-section .projects-list .list-bottom p { font-size: 18px; }
}
@media screen and (max-width: 680px) {
	.projects-list .projects-list-item { width: 100%; margin: 0; }
	.projects-list.closed-grid .projects-list-item { width: 100%; }
}

/*===========================================================================================================*/
/*=========================================== FOOTER ========================================================*/
/*===========================================================================================================*/
.footer {
  position: relative;
  z-index: 3;
  padding: 100px 0 60px;
  background-color: #fff;
  border-top: solid 24px #ebebeb;
}
.footer:before {
  content: '';
  position: absolute;
  top: -4vw;
  left: 3vw;
  bottom: 0;
  width: 24px;
  background-color: #ebebeb;
}
.footer:after {
  content: '';
  position: absolute;
  top: 24px;
  left: 6vw;
  right: 0;
  height: 3px;
  background-color: #ebebeb;
}
.footer .container {
  position: relative;
  z-index: 3;
  top: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.footer.ready .container {
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -moz-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -o-transition: opacity 1.2s ease 0s, top 0.8s ease 0s;
  -webkit-backface-visibility: hidden;
}
.footer .footer-menu {
	
}
.footer .footer-menu > li {
	float: left;
    width: 50%;
    font-size: 20px;
	letter-spacing: 1px;
    font-weight: 600;
    padding: 0 5px;
    margin: 0 0 40px;
    vertical-align: top;
    text-align: left;
	text-transform: capitalize;
}
.footer .footer-menu > li > ul {
	padding-top: 30px;
	text-align: left;
}
.footer .footer-menu > li > ul li {
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 600;
}
.footer .footer-menu li a .fal {
	display: none;
}
.footer p {
	font-size: 20px;
	color: #7a7a7a;
	letter-spacing: 1px;
	margin: 0 0 40px;
}
@media screen and (max-width: 1250px) {
  .btn-layout {
    font-size: 14px;
    padding: 15px;
    letter-spacing: 0;
  }
  .left-right .container-text .btn-layout:before {
    border-width: 0 0 50px 25px;
  }
  h1, .h1-style {
    font-size: 30px;
  }
  p, li, td, th, label {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  p, li, td, th, label {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0;
    border-width: 15px;
    padding-left: 30px;
  }
  .footer:before {
    width: 15px;
    left: 10px;
  }
  .footer:after {
    top: 15px;
    left: 40px;
  }
  .footer .social-nav li {
  	font-size: 38px;
  	padding: 0 5px;
  }
  .footer .footer-menu {
    margin-bottom: 20px;
  }
  .footer .footer-menu > li {
  	padding: 0;
  	display: block;
  	width: auto;
  	float: none;
  	font-size: 16px;
  	margin-bottom: 15px;
  }
  .footer .footer-menu > li > ul {
  	padding-left: 15px;
  }
  .footer p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  h1, .h1-style {
    font-size: 25px;
    letter-spacing: 3px;
  }
  h2 {
    font-size: 20px;
    letter-spacing: 1px;
  }
  h3 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  h4 {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .news-right-column h2,
  .news-right-column h3 {
    font-size: 20px;
  }
  p, li, td, th, label {
    font-size: 14px;
  }
  span.parallax {
    top: 0 !important;
    height: 100% !important;
  }
  .btn-layout {
    font-size: 13px;
    padding: 10px;
    letter-spacing: 0;
  }
  .left-right .container-text .btn-layout:before {
    border-width: 0 0 39px 15px;
  }
}

@media print {
	.menu,
	.footer,
	.affix-hook,
	.btn-layout, .btn {
		display: none;
	}
	.print-content {
		float: none!important;
		width: 100%!important;
		max-width: 100%!important;
	}
	.banner-top {
		padding: 0 0 0;
	}
	.banner-top > .container h1 {
		font-size: 25px;
		color: #000;
	}
	.section-white {
		padding: 0;
	}
}
