
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #787878;
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #FFF;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: #222;
  margin-bottom: 20px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
}

h2 a {
  color: #222;
}

h2 a:hover {
  color: #fb6a19;
  text-decoration: none;
}

h3 sub {
  font-size: 42%;
}

p {
  margin: 0 0 20px 0;
  padding: 0;
}

a {
  text-decoration: none;
  outline: none;
  outline: 0;
  color: #787878;
}

a:hover, a:focus  {
  color: #fb6a19;
}

strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.wrapper {
  padding-bottom: 30px;
}

.desk_view {
  display: block;
}

.mobile_view {
  display: none;
}

@media (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1170px;
  }
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .desk_view {
    display: none;
  }

  .mobile_view {
    display: block;
  }
}

.accent_color {
  color: #fb6a19;
}

.ajax_spinner {
    display: none;
}

.ajax_loader_out {
    float: left;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2000;
}

.ajax_loader_in {
    float: left;
    width: 100%;
    height: 100%;
}

.ajax_loader_in .ajax_loader_center {
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: -35px;
    width: 50px;
    height: 50px;
}

.ajax_loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3db2bc;
  border-bottom: 6px solid #3db2bc;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*.login-card-body .input-group .form-control, 
.register-card-body .input-group .form-control {
     border-right-width: 1px; 
}

select:not(:last-child), 
.input-group>.form-control:not(:last-child) {
     border-top-right-radius: .25rem; 
     border-bottom-right-radius: .25rem; 
}*/

.monetary_symbol {
  color: #bd2130;
}

.form-group label {
  width: 100%;
  float: left;
}

label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 600;
    font-size: 14px;
}

.form-control {
  font-size: 14px;
}

.common_modal .select2-container,
.col-md-6 .select2-container,
.col-md-3 .select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
}

.select2-container--default .select2-results>.select2-results__options {
  font-size: 14px;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus {
  border-color: #80bdff !important;
  box-shadow: none !important;
}

.select2-selection.select2-selection--single {
  box-shadow: none !important; 
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  font-size: 11px;
  text-transform: capitalize;
}

.select2-container--default .select2-selection--multiple {
  min-height: 40px !important;
  background-image: url('../img/arrow-down.png');
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 10px auto;
  border-radius: 5px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
  min-height: 30px;
  font-size: 13px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #fb6a19 !important;
  color: #FFF;
  border: 1px solid #fb6a19 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #FFF !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #ced4da !important; 
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

:focus {
  outline: none;
  outline: 0;
  outline-width: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input.error,
select.error,
textarea.error {
    /*border-color: #EE001C;*/
    border-color: #bd2130 !important;
    background-image: none !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]).error {
    border-color: #bd2130;
}

input.valid,
select.valid,
textarea.valid {
    background-image: none !important;
    background-color: rgba(0, 0, 0, 0)!important;
}

select.form-control:not([size]):not([multiple]).valid {
    background-color: transparent;
}

.has-danger .select2-container--default .select2-selection--single {
  border-color: #bd2130 !important
}

textarea.form-control {
  height: 80px;
  resize: none;
}

.form-error {
  font-size: 13px;
}

.btn {
  font-size: 15px;
  padding: 7px 16px;
}

.btn.disabled, .btn:disabled {
  pointer-events: none !important;
}

.alert_wrapper {
  width: 100%;
  float: left;
  padding: 0 20px;
}

.alert_wrapper .alert {
  margin-top: 10px;
}

.common_modal .modal-dialog {
    max-width: 580px;
}

.common_modal .modal-body {
    position: relative;
    padding: 30px 30px 30px 30px;
}

.common_modal .form_modal_container {
    float: left;
    width: 100%;
}

.common_modal .button_container {
  padding-top: 10px;
}

.common_modal .button_container .btn {
  padding-left: 20px;
  padding-right: 20px;
}

#forgot_password_user .modal-dialog {
    max-width: 480px;
}

.modal_alert_wrapper {
    float: left;
    width: 100%;
}

.modal_alert_wrapper .alert {
    margin-top: 10px;
}

.form_modal_container .modal_caption {
    float: left;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #131313;
    margin-bottom: 5px;
}

.form_modal_container .modal_text {
    float: left;
    width: 100%;
    font-size: 15px;
    color: #131313;
    margin-bottom: 15px;
}

.form_modal_container .btn_blue {
    float: left;
    width: 100%;
}

.form_modal_container .icon_modal_close {
    float: left;
    width: 20px;
    height: 20px;
    background: url(/img/icon_modal_close.svg);
    background-size: 15px 15px;
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.confirm_modal.modal {
    z-index: 1060;
}

.confirm_modal .modal-dialog {
    min-width: 500px;
}

.confirm_modal .modal_footer_new {
    width: 100%;
    float: left;
    border-top: none;
    padding: 5px 25px 25px 25px;
}

.confirm_modal .modal_footer_new .btn {
  min-width: 110px;
}

.confirm_modal .modal_footer_new .btn-primary {
    margin-right: 20px;
}

.confirm_modal .modal-body {
    padding: 25px;
    padding-bottom: 0;
    text-align: left;
}

@media (max-width: 767px) {
.common_modal .modal-body {
  padding: 20px;
}
}

.disabled-select {
  background-color:rgba(233,236,239,0.4);
  border-radius:3px;
  cursor:not-allowed;
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
}

/**
* Owl-Carousel
* ----------------------------------------------------------------------------
*/
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  background-color: #f6f6f6 !important;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
  outline: 0;
}
.owl-nav .owl-prev:after,
.owl-nav .owl-next:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  color: #222222;
  font-size: 31px;
  line-height: 60px;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: #fb6a19 !important;
}
.owl-nav .owl-prev:hover i,
.owl-nav .owl-next:hover i {
  color: #FFFFFF;
}
.owl-nav .owl-prev {
  left: -80px;
}
.owl-nav .owl-prev:after {
  border-bottom: solid 0 transparent;
  border-top: solid 60px #f6f6f6;
  border-right: solid 10px transparent;
  left: 100%;
}
.owl-nav .owl-prev:hover:after {
  border-top-color: #fb6a19 !important;
}
.owl-nav .owl-next {
  right: -80px;
}
.owl-nav .owl-next:after {
  border-bottom: solid 60px #f6f6f6;
  border-top: solid 0 transparent;
  border-left: solid 10px transparent;
  right: 100%;
}
.owl-nav .owl-next:hover:after {
  border-bottom-color: #fb6a19;
}
.owl-nav .disabled {
  cursor: not-allowed !important;
}
.owl-nav-top-right .owl-next,
.owl-nav-bottom-center .owl-next {
  background-color: #fb6a19 !important;
}
.owl-nav-top-right .owl-next i,
.owl-nav-bottom-center .owl-next i {
  color: #fff !important;
}
.owl-nav-top-right .owl-next:after,
.owl-nav-bottom-center .owl-next:after {
  border-bottom-color: #fb6a19 !important;
}
.owl-dots {
  text-align: center;
  padding-top: 10px;
}
.owl-dots .owl-dot {
  display: inline-block;
}
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 3px;
  display: block;
  background-color: #EBEBEB;
}
.owl-dots .owl-dot.active span {
  background-color: #fb6a19;
}
.color-light .owl-dots .owl-dot span {
  background-color: #FFFFFF;
}
.color-light .owl-dots .owl-dot.active span {
  background-color: #fb6a19;
}
@media (max-width: 1380px) {
  .owl-carousel:hover .owl-nav .owl-prev {
    left: 0;
  }
  .owl-carousel:hover .owl-nav .owl-next {
    right: 0;
  }
  .owl-nav .owl-prev {
    left: 0;
  }
  .owl-nav .owl-next {
    right: 0;
  }
}
@media (max-width: 1200px) {
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    width: 40px;
    height: 50px;
    margin-top: -30px;
  }
  .owl-nav .owl-prev i,
  .owl-nav .owl-next i {
    font-size: 24px;
    line-height: 50px;
  }
  .owl-nav .owl-prev:after {
    border-top: solid 50px #f6f6f6;
  }
  .owl-nav .owl-next:after {
    border-bottom: solid 50px #f6f6f6;
  }
}

@media(max-width: 767px) {
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    width: 30px;
    height: 40px;
    margin-top: -30px;
  }
  .owl-nav .owl-prev i,
  .owl-nav .owl-next i {
    line-height: 40px;
  }
  .owl-nav .owl-prev:after {
    border-top: solid 40px #f6f6f6;
  }
  .owl-nav .owl-next:after {
    border-bottom: solid 40px #f6f6f6;
  }
}

.heading_style {
  margin-bottom: 25px;
}

.heading_style h2 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0;
  position: relative;
}

.heading_style h2::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: #fb6a19;
  margin-left: 20px;
  vertical-align: middle;
  margin-top: -2px;
}

.header_main {
  width: 100%;
  float: left;
  background-color: #FFF;
}

.brand {
  float: left;
  padding: 10px 0 0 0;
}

.brand_property_out {
  width: 200px;
  height: 82px;
  float: left;
  padding: 0;
}

.brand_property {
  width: 100%;
  height: 82px;
  float: none;
  display: table;
}

.brand_property span {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.brand_property span img {
  height: 60px;
}

.navbar-nav {
  float: right;
  display: block;
}

.navbar-nav ul {
  float: left;
  padding: 20px 0 0 0;
  margin: 0;
  list-style: none;
}

.navbar-nav ul li {
  float: left;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  color: #222;
  padding: 10px 0;
  margin: 0 10px 0 30px;
}

.navbar-nav ul li a {
  float: left;
  color: #222;
  position: relative;
}

.navbar-nav ul li a:after {
  width: 70%;
  height: 4px;
  background-color: #fb6a19;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  display: none;
}

.navbar-nav ul li a:hover {
  color: #fb6a19;
  text-decoration: none;
}

.navbar-nav ul li:hover a::after {
  display: block;
}

.navbar-nav ul li:hover span:after,
.navbar-nav ul li:hover span:before {
  display: block;
}

.navbar-nav ul li span {
  position: relative;
}

.navbar-nav ul li span:before,
.navbar-nav ul li span:after {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  height: 4px;
  width: 10px;
  display: none;
  background-color: #fb6a19;
}

.navbar-nav ul li span:before {
  margin-left: -10px;
  -webkit-transform: skew(0deg, 150deg);
  -moz-transform: skew(0deg, 150deg);
  -ms-transform: skew(0deg, 150deg);
  -o-transform: skew(0deg, 150deg);
  transform: skew(0deg, 150deg);
}

.navbar-nav ul li span:after {
  -webkit-transform: skew(0deg, -150deg);
  -moz-transform: skew(0deg, -150deg);
  -ms-transform: skew(0deg, -150deg);
  -o-transform: skew(0deg, -150deg);
  transform: skew(0deg, -150deg);
}

.navbar-nav ul li a.active {
  color: #fb6a19;
}

.navbar-nav ul li a.active::after {
  display: block;
}

.navbar-nav ul li a.active span:after,
.navbar-nav ul li a.active span:before {
  display: block;
}

.header-customize-nav {
  float: left;
  line-height: 82px;
  color: #FFF;
  background-color: #fb6a19;
  margin-left: 45px;
  position: relative;
  padding-left: 25px;
}

.header-customize-item {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  max-width: 100%;
}

.header-customize-item .contact-phone i {
  display: block;
  font-size: 32px !important;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-customize-item .contact-phone {
  text-align: center;
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
}

.header-customize-nav .item-custom-text:before {
  content: '';
  display: block;
  border-top: solid 0 transparent;
  border-bottom: solid 82px #fb6a19;
  border-left: solid 22px transparent;
  right: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
}

.header-customize-nav .item-custom-text:after {
  content: '';
  display: block;
  background-color: #fb6a19;
  width: 1000%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
}

.sticky { 
  box-shadow: 1px 0 3px 2px rgb(0 0 0 / 10%); 
  position:fixed; 
  top:0; 
  left:0; 
  z-index:101; 
  bottom:auto; 
  display:block;
}

.toggle_icon {
  display: inline-block;
  height: 30px;
  position: relative;
  vertical-align: middle;
  width: 24px;
  position: absolute;
  top: 20px;
  left: 17px;
  z-index: 60;
}

.toggle_icon > span {
  background: none repeat scroll 0 0 #000;
  bottom: 0;
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.toggle_icon:after, 
.toggle_icon:before {
  background-color: #000;
  content: "";
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 100%;
}

.toggle_icon:before {
  top: 20%;
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
}

.toggle_icon:after {
  bottom: 20%;
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  -o-transform-origin: bottom left;
  transform-origin: bottom left;
}

.search-form {
    padding: 20px;
    position: relative;
    background-color: #111;
}

.search-form input {
    width: 100%;
    height: 44px;
    color: #FFF;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-color: #333;
    background-color: #333;
    border: none;
    padding: 6px 50px 6px 10px;
}

.search-form button {
    width: 44px;
    text-align: center;
    height: 44px;
    padding: 0;
    border: none;
    position: absolute;
    right: 20px;
    top: 20px;
    padding-left: 12px;
    padding-right: 12px;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    background-color: #fb6a19;
    border: solid 2px;
    border-color: #fb6a19;
    font-weight: 400;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 0;
}

.search-form button i {
    line-height: 44px;
    font-size: 18px;
}

.mobile_overlay {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: rgba(0,0,0,0.7);
  background-image: url('../img/close.png');
  background-repeat: no-repeat;
  background-position: 290px 15px;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  max-width: 0;
  -webkit-transition: opacity .5s, visibility 1s;
  transition: opacity .5s, visibility 1s;
  cursor: pointer;
}

.header_main .search_form {
  display: none;
}

@media (max-width: 767px) {
body.toggle_open .mobile_overlay {
  max-width: 100%;
  opacity: 1;
  visibility: visible;
}

  .offcanvas-collapse {
    position: fixed;
    top: 0px; /* Height of navbar */
    bottom: 0;
    right: 100%;
    width: 280px;
    padding-right: 0;
    padding-left: 0;
    overflow-y: auto;
    visibility: hidden;
    background-color: #343a40;
    transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    z-index: 102 !important;
  }

  .offcanvas-collapse.open {
    visibility: visible;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  .header_main {
    text-align: center;
  }

  .brand {
    /*width: 100%;*/
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 6px 0;
  }

  .brand img {
    height: 50px;
  }

  .brand_property_out {
    width: auto;
    height: 62px;
    float: none;
    display: inline-block;
    vertical-align: top;
  }

  .brand_property {
    width: 100%;
    height: 62px;
  }

  .brand_property span img {
    height: 50px;
  }

  .navbar-nav {
    width: 100%;
    float: left;
    display: block;
  }

  .navbar-nav ul {
    width: 100%;
    float: left;
    text-align: left;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .navbar-nav ul li {
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
    border-top: 1px solid #999;
    padding: 0;
    margin: 0;
  }

  .navbar-nav ul li a {
    width: 100%;
    float: left;
     color: #FFFFFF;
    position: relative;
    padding: 10px 20px;
  }

  .navbar-nav ul li a:hover {
    color: #fb6a19;
    text-decoration: none;
  }

  .navbar-nav ul li:hover a::after {
    display: none;
  }

  .navbar-nav ul li:hover span:after,
  .navbar-nav ul li:hover span:before {
    display: none;
  }

  .navbar-nav ul li a.active::after {
    display: none;
  }

  .navbar-nav ul li a.active span:after,
  .navbar-nav ul li a.active span:before {
    display: none;
  }

  .header-customize-nav {
    display: none;
  }

.home .header_main {
  padding: 10px 0;
}  

.home .header_main .search_form {
  width: 100%;
  padding: 0 0 0 40px;
  display: block;
  position: relative;
}

.home .header_main .search_form .form-control{
  height: 50px;
  font-size: 13px;
  border-radius: 25px;
  padding: 10px 55px 10px 53px;
}

.home .header_main .search_form .form-control:focus {
  box-shadow: none;
}

.home .header_main .search_form .img-circle {
  width: 40px;
  position: absolute;
  top: 5px;
  right: 1px;
}

.home .header_main .brand {
  position: absolute;
  left: 55px;
  z-index: 8;
}

.home .header_main .brand img {
  height: 35px;
}
}


.property_box_out {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
}

.property_box {
  width: 100%;
  float: left;
  background-color: #FFF;
  padding: 15px;
  padding-bottom: 35px;
}

.property_box figure {
  width: 100%;
  float: left;
  position: relative;
}

.property_box figure img {
  width: 100%;
}

.property_box .property_status {
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 0;
  z-index: 3;
}

.property_box .property_label {
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 0;
  z-index: 3;
}

.property_box span.label_bar {
  width: 100%;
  float: left;
}

.property_box span.label_bar span {
  display: inline-block;
  background-color: #fb6a19;
  padding-left: 10px;
  padding-right: 5px;
  position: relative;
  line-height: 19px;
  font-size: 12px;
  color: #FFF;
  position: relative;
  margin-bottom: 10px;
}

.property_box .property_label span.label_bar span {
  background-color: #32b5f8
}

.property_box .property_label span.label_bar span::after {
  position: absolute;
  content: '';
  display: block;
  left: 100%;
  top: 0;
  border-top: 10px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 7px solid;
  border-left-color: #32b5f8;
  border-right-color: #32b5f8;
}

.property_box .property_label span.label_bar:nth-of-type(2n) span {
  background-color: #fb6a19
}

.property_box .property_label span.label_bar:nth-of-type(2n) span::after {
  border-left-color: #fb6a19;
  border-right-color: #fb6a19;
}

.property_box .property_label span.label_bar:nth-of-type(2n+3) span {
  background-color: #dd3333
}

.property_box .property_label span.label_bar:nth-of-type(2n+3) span::after {
  border-left-color: #dd3333;
  border-right-color: #dd3333;
}

.property_box .property_status span.label_bar {
  text-align: right;
}

.property_box .property_status span.label_bar span {
  background-color: #dd3333
}

.property_box .property_status span.label_bar span::after {
  position: absolute;
  content: '';
  display: block;
  right: 100%;
  top: 0;
  border-top: 10px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 7px solid;
  border-left-color: #dd3333;
  border-right-color: #dd3333;
}

.property_box .property_status span.label_bar:nth-of-type(2n) span {
  background-color: #fb6a19
}

.property_box .property_status span.label_bar:nth-of-type(2n) span::after {
  border-left-color: #fb6a19;
  border-right-color: #fb6a19;
}


.property_box h2 {
  text-transform: uppercase;
  margin-bottom: 13px;
}

.property_box .price {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 13px;
}

.property_box .price_postfix {
  font-size: 12px;
  color: #fb6a19;
}

.property_box .property_location,
.property_box .property_type_list {
  font-size: 12px;
  font-weight: 400;
  color: #787878;
  margin-bottom: 6px;
}

.property_box .property_location i,
.property_box .property_type_list i {
  font-size: 14px;
  color: #fb6a19;
  margin-right: 3px;
}

.property_box .property_type_list span {
  position: relative;
}

.property_box .property_type_list span a {
  color: #787878;
}

.property_box .property_type_list span a:hover {
  color: #fb6a19;
}

.property_box .property_type_list span:after {
  content: ', ';
  position: relative;
  top: 0;
  right: 0;
}

.property_box .property_type_list span:last-child:after {
  display: none;
}

.property_box_out .call_bar {
  width: 100%;
  float: left;
  height: 30px;
  background-color: #fb6a19;
  position: absolute;
  bottom: 0;
  left: 0;
}

.property_box_out .call_bar_inner {
  width: 100%;
  float: left;
  font-size: 12px;
  line-height: 30px;
  padding: 0 15px;
}

.property_box_out .call_link i {
  float: left;
  font-size: 16px;
  margin-right: 7px;
  margin-top: 6px;
}

.property_box_out .call_link i.fa-mobile {
  font-size: 19px;
  margin-top: 5px;
}

.property_box_out .call_link a {
  color: #FFF;
  text-decoration: none;
}

@media (max-width: 767px) {
.property_box h2 {
  font-size: 16px;
}
}

/* Home Page styles*/
.home_banner {
  width: 100%;
  float: left;
}

.home_banner {
  width: 100%;
  height: 60vh;
  background-image: url('../img/banner-home-six.jpg'); 
  background-position: center center;
  float: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 0;
}

.home_banner_inner {
  height: 30vh;
}

.home_banner::before {
  width: 100%;
  height: 100%;
  float: left;
  background-color: rgba(0,0,0,0.1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

.home_banner .banner_info {
  width: 100%;
  float: left;
  text-align: center;
  position: relative;
  z-index: 10;
}

.home_banner .banner_info h1 {
  font-size: 34px;
  font-weight: 400;
  color: #FFF;
}

.banner_info .banner_search {
  width: 100%;
  max-width: 900px;
  margin: auto;
  position: relative;
}

.banner_info .banner_search .select_status{
  width: 135px;
  height: 60px;
  float: left;
  font-size: 13px;
  border: none;
  border-right: 1px solid #ccc;
  padding: 0 0 0 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_info .banner_search .form-control {
  width: 100%;
  height: 60px;
  box-shadow: none;
  padding: 0 60px 0 150px;
}

.banner_info .banner_search .mini-search-btn {
  width: 60px;
  height: 60px;
  background-color: #fb6a19;
  color: #FFF;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 21px;
}

@media (max-width: 767px) {
.home_banner {
  display: none;
}  
.home_banner .banner_info h1 {
  font-size: 30px;
}

  .home .banner_info .banner_search {
    display: none;
  }
}

.head_style {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.head_style:after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #fb6a19;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

.head_style p {
  color: #909090;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 4px 0;
}

.head_style h2 {
  color: #222222;
  font-size: 32px;
}

@media (max-width: 767px) {
.head_style p {
  font-size: 14px;
}

.head_style h2 {
  font-size: 24px;
  margin-bottom: 14px;
}
}

.section_offer {
  width: 100%;
  background-image: url('../img/background-01.jpg');
  background-repeat: repeat;
  padding: 30px 0 30px 0;
  display: inline-block;
}

.show_mobile {
  display: none;
}

.show_desk {
  display: block;
}

@media (max-width: 767px) {
.show_mobile {
  display: block;
}

.show_desk {
  display: none;
}
}

.section_location {
  width: 100%;
  padding: 50px 0 30px 0;
}

.slider_location {
  width: 100%;
  position: relative;
}

.slider_location .property_main{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: left;
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.slider_location .property_info{
  width: max-content;
  padding: 19px 20px 0 20px;
  background-color: rgba(34,34,34,.9);
  color: #FFF;
}

.slider_location h2 {
  font-size: 32px;
  font-weight: 400;
  color: #FFF;
  padding: 0;
  margin-bottom: 0;
}

.slider_location h2 a {
  color: #FFF;
}

.slider_location .property_info_in {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.slider_location .price {
  font-size: 26px;
  font-weight: 700;
  color: #FFF;
  margin-right: 15px;
  margin-bottom: 15px;
}

.slider_location .price_postfix {
  font-size: 12px;
  color: #fb6a19;
}

.slider_location .property_status span {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  background-color: #fb6a19;
  padding: 2px 15px 1px 15px;
  margin: 0 4px 4px 3px;
  position: relative;
}

.slider_location .property_status span:nth-child(odd) {
  background-color: #dd3333;
}

.slider_location .property_location {
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  padding-left: 10px;
  margin-bottom: 6px;
}

.slider_location .property_location i {
  font-size: 17px;
  color: #fb6a19;
  margin-right: 5px;
}

.slider_location .call_bar {
  width: max-content;
  background-color: rgba(255,255,255,.9);
  padding: 20px;
}

.slider_location .call_bar_inner {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
}

.slider_location .call_link:first-child {
  padding-right: 25px;
}

.slider_location .call_link i {
  float: left;
  font-size: 19px;
  margin-right: 10px;
  margin-top: 0;
}

.slider_location .call_link i.fa-mobile {
  font-size: 22px;
}

.slider_location .call_link a {
  color: #000;
  text-decoration: none;
}

.slider_location .owl-prev {
  left: 20px!important;
  top: 50px;
}

.slider_location .owl-next {
  right: auto;
  left: 83px!important;
  top: 50px;
  /*background-color: #fb6a19 !important;*/
}

@media (max-width: 767px) {
.section_location {
  padding: 40px 0 30px 0;
}

.slider_location figure {
  padding: 0;
  margin-bottom: 0;
}

.slider_location .property_main{
  width: 100%;
  height: auto;
  display: block;
  padding: 0 0;
  position: relative;
  top: 0;
  left: 0;
}

.slider_location .property_info{
  width: 100%;
  padding: 15px 20px;
}

.slider_location h2 {
  font-size: 22px;
}

.slider_location .property_info_in {
  display: block;
}

.slider_location .price {
  font-size: 20px;
  margin-right: 0;
  margin-bottom: 10px;
}

.slider_location .price_postfix {
  font-size: 12px;
  color: #fb6a19;
}

.slider_location .property_status span {
  font-size: 13px;
  padding: 2px 10px 1px 10px;
}

.slider_location .property_status {
  margin-bottom: 5px;
}

.slider_location .property_location {
  width: 100%;
  font-size: 14px;
  padding-left: 0;
  margin-bottom: 0;
}

.slider_location .property_location i {
  font-size: 17px;
  color: #fb6a19;
  margin-right: 5px;
}

.slider_location .call_bar {
  width: max-content;
  background-color: rgba(255,255,255,.9);
  padding: 10px 20px;
}

.slider_location .owl-prev {
  left: 20px!important;
  top: 50px;
}

.slider_location .owl-next {
  right: auto;
  left: 63px!important;
  top: 50px;
}
}

.section_builder {
  width: 100%;
  background-image: url('../img/background-01.jpg');
  background-repeat: repeat;
  padding: 50px 0 30px 0;
}

/* Single Property style  */
.single_property {
  width: 100%;
  float: left;
}

.single_banner {
  width: 100%;
  height: 60vh;
  float: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single_banner::before {
  width: 100%;
  height: 100%;
  float: left;
  background-color: rgba(0,0,0,0.68);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

.single_banner .page_title_inner {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
}

.single_banner .page_title_inner > div {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

.single_banner .page_title_inner h1 {
  color: #FFFFFF;
}

.single_banner .page_title_inner .page_title_info {
  width: 50%;
  float: none;
  display: inline-block;
  vertical-align: middle;
}

.single_banner .page_title_inner .property_status span {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  background-color: #fb6a19;
  padding: 2px 15px 1px 15px;
  margin: 0 10px 10px 3px;
  position: relative;
}

.single_banner .page_title_inner .property_status span:nth-child(odd) {
  background-color: #dd3333;
}

.single_banner .page_title_inner .property_info {
  width: 50%;
  float: none;
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  padding-left: 20px;
  margin-left: -4px;
}

.single_banner .page_title_inner .property_price {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  margin-bottom: 5px;
}

.single_banner .page_title_inner .property_location {
  color: #bababa;
}

.single_banner .page_title_inner .property_location i {
  font-size: 15px;
  color: #fb6a19;
  margin-right: 3px;
}

@media(max-width: 767px) {
.single_banner {
  width: 100%;
  height: 100vh;
}

.single_banner .page_title_inner .page_title_info {
  width: 100%;
}

.single_banner .page_title_inner .page_title_info h1 {
  margin-bottom: 5px;
}

.single_banner .page_title_inner .property_info {
  width: 100%;
  text-align: left;
  padding-left: 0px;
  margin-left: 0px;
}  
}

.single_action_bar {
  width: 100%;
  float: left;
  background-color: #f6f6f6;
  padding: 20px;
}

.single_action_bar .property_action {
  float: left;
  font-size: 14px;
  color: #333;
  margin-right: 30px;
}

.single_action_bar .property_action i {
  float: left;
  font-size: 25px !important;
  padding-top: 0px;
  padding-right: 9px;
  margin-top: -2px;
}

.single_action_bar .property_action a {
  color: #333;
  font-weight: 400; 
  text-decoration: none;
}

@media(max-width: 767px) {
.single_action_bar {
  padding: 15px 20px 5px 20px;
}

.single_action_bar .property_action {
  font-size: 12px;
  margin-right: 25px;
  margin-bottom: 10px;
}

.single_action_bar .property_action i {
  font-size: 20px !important;
  padding-right: 7px;
  margin-top: 0px;
}
}

.single_property_inner {
  width: 100%;
  float: left;
  padding: 50px 0 0 0;
  background-color: #fff;
}

.single_property_inner .container {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.single_property_gallery {
  width: 100%;
  float: left;
  margin-bottom: 50px;
}

.single_property_gallery .owl-prev {
  left: 10px!important;
  top: auto;
  bottom: 10px;
}

.single_property_gallery .owl-next {
  right: auto;
  left: 73px!important;
  top: auto;
  bottom: 10px;
  /*background-color: #fb6a19 !important;*/
}

.single_property_about {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

.single_property_about h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.single_property_about p {
  font-size: 14px;
  font-weight: 400;
}

.single_property_about article {
  margin-bottom: 20px;
}

.single_property_about .read_more_show,
.single_property_about .read_more_hide {
  color: #fb6a19;
  cursor: pointer;
}

.single_property_about .read_more_hide {
  top: -20px;
  position: relative;
}

.single_property_about .full_content {
  display: none;
}

.section_about_us_icons {
  text-align: center;
  padding-bottom: 0;
}

.section_about_us_icons h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.section_about_us_icons a {
  color: inherit;
  text-decoration: none;
}

.section_about_us_icons a:hover {
  color: #fb6a19;  
}

.section_about_us_icons p {
  font-size: 13px;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.section_about_us_icons .icon_div {
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 17px;
}

.section_about_us_icons .icon_div img {
  width: 45px;
  float: none;
  display: inline-block;
  margin-bottom: 0;
}

.section_about_us_icons .icon_div i {
  font-size: 50px;
  color: #fb6a19;
}

.section_about_us_icons .aside_text {
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: relative;
  padding-bottom: 30px;
}

.section_about_us_icons .aside_text:nth-child(1)::after,
.section_about_us_icons .aside_text:nth-child(4)::after,
.section_about_us_icons .aside_text:nth-child(7)::after {
  display: none;
}

.section_about_us_icons .aside_text::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  width: 1px;
  height: 100%;
  background: #cccccc;
  background: -webkit-linear-gradient(top,rgba(0,0,0,0),#cccccc,rgba(0,0,0,0));
  background: -moz-linear-gradient(top,rgba(0,0,0,0),#cccccc,rgba(0,0,0,0));
  background: -ms-linear-gradient(top,rgba(0,0,0,0),#cccccc,rgba(0,0,0,0));
  background: -o-linear-gradient(top,rgba(0,0,0,0),#cccccc,rgba(0,0,0,0));
}

@media (max-width: 767px) {
.section_about_us h3 {
  font-size: 20px;
}

.section_about_us_icons {
  text-align: center;
}

.section_about_us_icons .icon_div {
  margin-bottom: 16px;
}

.section_about_us_icons .icon_div i {
    font-size: 40px;
}

.section_about_us_icons h4 {
  font-size: 14px;
  line-height: 1.2;
}

.section_about_us_icons .aside_text {
  width: 50%;
}

.section_about_us_icons .aside_text::after,
.section_about_us_icons .aside_text:nth-child(4)::after {
  display: block;
}

.section_about_us_icons .aside_text:nth-child(3)::after,
.section_about_us_icons .aside_text:nth-child(5)::after,
.section_about_us_icons .aside_text:nth-child(7)::after,
.section_about_us_icons .aside_text:nth-child(9)::after  {
  display: none;
}

.single_property_gallery .owl-next {
  left: 53px!important;
}
}

@media (max-width: 579px) {
.section_about_us_icons h4 {
  font-size: 12px;
}
}


.single_location {
  width: 100%;
  float: left;
  margin-bottom: 50px;
}

.single_location .property-address {
  width: 100%;
}

.single_location ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.single_location ul li {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
.single_location {
  margin-bottom: 35px;
}

.single_location ul li {
  width: 100%;
}
}

.single_features {
  width: 100%;
  float: left;
  margin-bottom: 50px;
}

.cost_sheet {
  width: 90%;
  float: left;
  transition: transform 1s; 
  overflow: hidden;
  margin: 0 5%;
  text-align: center;
  position: relative;
}

.cost_sheet img {
  transition: transform 1s;  
}

.cost_sheet:hover i {
  display: flex;
  transition: transform 1s; 
}

.cost_sheet i {
  width: 100%;
  height: 100%;
  float: none;
  background-color: rgba(34,34,34,0.4);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fb6a19;
  position: absolute;
  top: 0;
  left: auto;
  display: none;
  transition: transform 1s; 
}

/*
.cost_sheet img {
  transition: transform 1s;
}

.cost_sheet img:hover {
  transition: transform 1s;  
  transform: scale(1.1); 
}*/

.cost_sheet .tour_info {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: transform 1s;
  background-image: url('../img/play-button.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80px auto;
  /*text-indent: -99999px;*/
  text-align: center;
}

.cost_sheet .tour_info span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
}

.cost_sheet:hover img {
  transition: transform 1s;  
  transform: scale(1.05); 
}

.visible-xs {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  .hidden-xs {
    display: none !important;
  }
}
.single_features .tab_features {
  width: 100%;
  float: left;
}

.single_features .tab_features .nav-tabs {
  width: 100%;
  float: left;
  border-bottom: none;
  background-color: #222;
  margin: 0;
}

.single_features .tab_features ul {
  list-style: none;
  position: relative;
  z-index: 100;
}

.single_features .tab_features .nav-tabs li a {
  float: left;
  margin-right: 0;
  border: none;
  color: #8f8f8f;
  padding: 19px 30px;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  font-weight: 500;
  text-decoration: none;
}

.single_features .tab_features .nav-tabs li a.active,
.single_features .tab_features .nav-tabs li a:hover {
  background-color: #fb6a19;
  color: #FFF;
}

.single_features .tab_features .panel-default {
  width: 100%;
  float: left;
  border: 1px solid #ddd;
}

.single_features .tab_features .panel-heading {
  width: 100%;
  float: left;
}

.single_features .tab_features .panel-heading h4 {
  width: 100%;
  float: left;
  font-size: 15px;
  font-weight: 600;
}

.single_features .tab_features .panel-heading h4 a {
  width: 100%;
  float: left;
  color: #fb6a19;
  font-size: 15px;  
  background-color: #f8f8f8;
  border-bottom:1px solid #ddd;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 15px;
}

.single_features .tab_features .panel-heading h4 a.collapsed {
  color: #333333;  
}

.single_features .tab_features .panel-collapse {
  width: 100%;
  float: left;
}

.single_features .tab-content {
  width: 100%;
  float: left;
  padding: 30px 0 0 0;
}

.single_features .tab_overview {
  width: 100%;
  float: left;
}

.single_features .tab_overview ul {
  width: 100%;
  float: left;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.single_features .tab_overview ul li {
  width: 100%;
  display: flex;
  padding: 8px 15px;
}

.single_features .tab_overview ul li:nth-child(odd) {
    background: #f8f8f8;
}

.single_features .tab_overview ul li strong,
.single_features .tab_overview ul li span {
  width: 50%;
}

.single_features .tab_overview ul li span {
  font-size: 13px;
}

.single_features .tab_overview .accent_color {
  font-size: 12px;
}

.single_features .button_link {
  width: 80px;
  height: 80px;
  float: none;
  display: inline-block;
  color: #FFFFFF;
  background-image: url('../img/pdf.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80px auto;
  text-indent: -99999px;
  padding: 0;
  margin: 0;
}

.single_features .button_link:hover,
.single_features .button_link:focus {
  color: #fb6a19;
  background-color: transparent;
  outline: none;
}

@media (max-width: 767px) {
.single_features {
  margin-bottom: 0;
}

.single_features .tab-content {
  padding-top: 0;
}

.single_features .tab_features .panel-default {
  margin-bottom: 5px;
} 

.single_features .tab_features .panel-heading h4 {
  margin-bottom: 0;
}
/*
.single_features .tab_features .panel-heading h4 a.active {
  background-color: #fb6a19;
  color: #FFF;
}*/

.single_features .panel-body {
  padding: 15px;
} 

.single_features .tab_overview ul {
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
}

.single_features .tab_overview ul li {
  width: 100%;
  float: none;
  display: block;
  padding: 8px 15px;
}
}

.single_price_table {
  display: table;
  text-align: center;
  padding-bottom: 30px;
}

.single_price_table .aside_col {
  width: 30%;
  min-width: 270px;
  float: none;
  display: inline-block;
  border: 1px solid #cccccc;
  vertical-align: top;
  border-radius: 7px;
  padding: 0;
  margin: 0 1.5% 35px 1.5%;
}

.single_price_table .title_text {
  width: 100%;
  float: left;
  background-color: #fb6a19;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
  padding: 15px 0;
}

.single_price_table .price_text {
  width: 100%;
  float: left;
  font-size: 20px;
  color: #333;
  font-weight: 600;
  padding: 35px 0 25px 0;
}

.single_price_table .price_amount {
  font-size: 38px;
}

.single_price_table .onward_text {
  font-size: 18px;
 color: #fb6a19; 
 font-weight: 500;
}

.single_price_table .descri_text {
  width: 100%;
  float: left;
  font-size: 13px;
  line-height: 1.3;
  padding-bottom: 15px;
}

.single_price_table .btn_price_out {
  width: 100%;
  float: left;
  border-top: 1px solid #cccccc;  
  padding: 15px 0;
}

.single_price_table .btn_price {
  max-width: 140px;
  float: none;
  display: inline-block;
  background-image:none !important;
  background-color: #fb6a19;
  border-color: #fb6a19;
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  padding: 8px 25px;
}

.single_price_table .btn_price:hover {
  background-color: #dd3333;
  color: #ffffff;
}


@media (max-width: 1023px) {
.single_price_table .aside_col {
  width: 38%;
}

.single_price_table .title_text {
  font-size: 26px;
  padding: 13px 0;
}

.single_price_table .price_amount {
  font-size: 26px;
}
}

@media (max-width: 767px) {
.single_price_table {
  padding: 35px 0 25px 0;
}

.single_price_table .title_text {
  font-size: 24px;
  padding: 10px 0;
}

.single_price_table .head_text {
  padding-bottom: 10px;
}

.single_price_table .aside_col {
    width: 100%;
    float: none;
    max-width: 280px;
    display: inline-block;
    margin-bottom: 25px;
}
}

.section_similar_property {
  width: 100%;
  float: left;
  background-image: url('../img/background-01.jpg');
  background-repeat: repeat;
  padding: 50px 0 30px 0;
}

.section_similar_builder_property {
  width: 100%;
  float: left;
  padding: 50px 0 30px 0; 
}

.section_similar_builder_property .property_box {
  background-color: #f7f7f7;
  background-repeat: repeat;
}


.section_question_head {
  width: 100%;
  float: left;  
}

.section_question_head a {
  width: 100%;
  float: left;
  font-size: 20px;
  color: #FFFFFF;
  background-color: #fb6a19;
  padding: 10px 20px;
  text-decoration: none;
}

.section_question_out {
  width: 100%;
  float: left;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.section_question_ans {
  width: 100%;
  float: left;
  display: none;
  padding-top: 15px;
}

.section_question_ans article {
  width: 100%;
  float: left;
  margin-bottom: 17px;
  padding: 0 20px;
}

.section_question_ans article .quest_title {
  width: 100%;
  float: left;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 18px;
  margin-bottom: 2px;
  cursor: pointer;
}

.section_question_ans article .quest_title::before {
  content: "\f067";
  position: absolute;
  top: 2px;
  left: 0;
  font-family: FontAwesome;
  font-size: 14px;
}

.section_question_ans article .quest_title.active::before {
  content: "\f068";
  position: absolute;
  top: 2px;
  left: 0;
  font-family: FontAwesome;
  font-size: 14px;
}

.section_question_ans article .quest_option {
  width: 100%;
  float: left;
  font-size: 14px;
  color: #333333;
  display: none;
  padding-left: 18px;
}


#modal_enqury_now h2 {
  color: #fb6a19;
  margin-bottom: 10px;
}

#modal_enqury_now p {
  font-size: 14px;
}

#modal_enqury_now .form-group {
  position: relative;
  margin-bottom: 10px;
}

#modal_enqury_now .form-group i {
  width: 40px;
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 38px;
  text-align: center;
}

#modal_enqury_now .form-group .form-control {
  width: 100%;
  height: 40px;
  font-size: 13px;
  color: #333;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #eee;
  padding: 6px 10px 6px 40px;
  border-radius: 0;
}

#modal_enqury_now .form-group .form-control:focus {
  box-shadow: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #fb6a19;  
}

#modal_enqury_now .form-group textarea.form-control {
  height: 80px;
  padding-top: 10px;
}

#modal_enqury_now .btn-primary{
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  padding: 11px 19px;
  color: #fff;
  background-color: #fb6a19;
  border: solid 2px;
  border-color: #fb6a19;
  font-weight: 400;
  border-radius: 0;
}

#modal_enqury_now .btn-primary i {
  padding-right: 4px;
}

#modal_enqury_now .btn-primary:hover,
#modal_enqury_now .btn-primary:focus {
  color: #fb6a19;
  background-color: transparent;
}


#login_register_modal .modal-dialog {
    max-width: 520px;
}

#login_register_modal h2 {
  color: #fb6a19;
  margin-bottom: 10px;
}

#login_register_modal p {
  font-size: 14px;
}

#login_register_modal .form-group {
  position: relative;
  margin-bottom: 10px;
}

#login_register_modal .form-group i {
  width: 40px;
  float: left;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 38px;
  text-align: center;
}

#login_register_modal .form-group input.valid, 
#login_register_modal .form-group select.valid {
  box-shadow: none;
}

#login_register_modal .form-group .form-control {
  width: 100%;
  height: 40px;
  font-size: 13px;
  color: #333;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #eee;
  padding: 6px 40px 6px 10px;
  border-radius: 0;
}

#login_register_modal .form-group .form-control:focus {
  box-shadow: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #fb6a19;  
}

#login_register_modal .form-group .icheck-primary label {
  font-size: 13px;
  font-weight: 400;
}


#login_register_modal .btn-primary{
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  padding: 11px 19px;
  color: #fff;
  background-color: #fb6a19;
  border: solid 2px;
  border-color: #fb6a19;
  font-weight: 400;
  border-radius: 0;
}

#login_register_modal .btn-primary i {
  padding-right: 4px;
}

#login_register_modal .btn-primary:hover,
#login_register_modal .btn-primary:focus {
  color: #fb6a19;
  background-color: transparent;
}

#login_register_modal .nav-tabs {
  border-bottom: 1px solid #ddd;
}

#login_register_modal .nav-tabs>li {
  float: left;
  position: relative;
  display: block;
  margin-bottom: -1px;
}

#login_register_modal .nav-tabs>li>a {
  margin-right: 2px;
  line-height: 1.42857143;
  color: #555;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  position: relative;
  display: block;
  text-decoration: none;
  padding: 10px 15px;
}

#login_register_modal .nav-tabs>li>a.active, 
#login_register_modal .nav-tabs>li>a.active:focus, 
#login_register_modal .nav-tabs>li>a.active:hover {
    color: #fb6a19;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}


#login_register_modal .tab-content {
  padding-top: 30px; 
}

.main_footer{
  width: 100%;
  float: none;
  display: inline-block;
  background-color: #333;
  padding: 10px 0;
}

.main_footer p {
  font-size: 13px;
  color: #FFF;
  font-weight: normal;
  text-align: center;
  margin-bottom: 0;
}

.main_footer p a {
  color: #FFF;
}

@media (max-width: 767px) {
.main_footer{
  margin-bottom: 49px;
}
}

.footer_bar {
  width: 100%;
  float: left;
  text-align: center;
  background-color: #fb6a19;
  position: fixed;
  bottom: 0;
  display: none;
  z-index: 100;
}

.footer_bar ul {
  width: 100%;
  float: left;
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
}

.footer_bar ul li {
  width: 20%;
  float: none;
  display: inline-block;
  line-height: 16px;
  padding: 0;
  margin: 0 -2px;
}

.footer_bar ul li span {
  width: 100%;
  float: left;
  font-size: 11px;
  padding: 0;
  margin: 0;
}

.footer_bar ul li i {
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.footer_bar ul li i.fa-mobile {
  font-size: 19px;
}

.footer_bar ul li i.fa-whatsapp {
  font-size: 16px;
}

.footer_bar ul li a {
  color: #FFF;
}

@media (max-width: 767px) {
.footer_bar {
  display: block;
}
}

@media (max-width: 359px) {
.footer_bar ul li {
  width: auto;
}
}


.section_search {
  width: 100%;
  float: none;
  background-color: #FFF;
  border-top: 1px solid #CCC;
  padding: 30px 0 15px 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
  display: inline-block;
}

.section_search .form-control {
  height: 40px;
  font-size: 13px;
  outline: none;
  box-shadow: none;
}

.section_search .mini-search-btn {
  width: 140px;
  height: 40px;
  background-color: #fb6a19;
  color: #FFF;
  border: none;
  font-size: 14px;
  outline: none;
}

.section_search .mini-close-btn {
  width: auto;
  height: 40px;
  background-color: transparent;
  color: #fb6a19;
  border: 1px solid #fb6a19;
  font-size: 13px;
  padding: 0 20px;
  outline: none;
}

.single_rating .ratings_summary {
  background-color: #f8f8f8;
  text-align: center;
  color: #222;
  border: 1px solid #ddd;
  height: 100px;
  width: 200px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 30px;
}

.single_rating .ratings_summary .ratings_average {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.single_rating .rating_container .rating-sm {
  font-size: 18px;
}

.single_rating .rating_container .rating_stars {
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.single_rating .rating_container.rating-lg .rating_stars {
  font-size: 28px;
}

.single_rating .ratings_summary .rating_container .rating_stars {
  cursor: not-allowed;
}

.single_rating .rating_container .empty_stars{
  color: #fb6a19
}

.single_rating .rating_container .filled_stars {
  color: #fb6a19;
  -webkit-text-stroke: 1px #fb6a19;
  text-shadow: 1px 1px #fb6a19;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  color: #fb6a19;
  white-space: nowrap;
  overflow: hidden;
}

.single_rating .overall_rating {
    width: 280px;
    display: inline-block;
    vertical-align: middle;
}

.single_rating .overall_rating .reviews_box {
    margin: 0;
    padding: 0;
}

.single_rating .overall_rating .reviews_box li {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  line-height: 1.2;
  margin: 5px 0;
  padding: 0;
  list-style: none;
  border: none;
  box-shadow: none;
  font-weight: 700;
}

.single_rating .overall_rating .reviews_box li .label:first-child {
    min-width: 10px;
    width: auto;
}

.single_rating .overall_rating .reviews_box li .label {
    font-size: 12px;
    position: relative;
    width: 35px;
    padding: 0;
    text-align: left;
    color: #222;
}

.single_rating .overall_rating .reviews_box li .item-list {
    width: 66%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.single_rating .overall_rating .reviews_box li .item-list {
    position: relative;
    width: 75.7778%;
    height: 10px;
    margin: 0 10px;
    border-radius: 1px;
    background-color: #e6e9ee;
    position: relative;
}

.single_rating .overall_rating .reviews_box li .item-list span {
  height: 100%;
  background-color: #fb6a19;
  position: absolute;
  top: 0;
  left: 0;
}

.single_rating .overall_rating .reviews_box li span {
    display: inline-block;
    vertical-align: middle;
}

.single_rating .reviews_count {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}

.single_rating .btn_login_register {
  font-size: 15px;
  font-weight: 600;
  color: #fb6a19;
}

.single_rating .modal_alert_wrapper .alert {
  display: none;
}

.single_rating textarea.form-control {
  width: 100%;
  float: left;
  height: 100px;
}

.single_rating .btn_review_user {
  height: 40px;
  background-color: #fb6a19;
  color: #FFF;
  border: 2px solid transparent;
  font-size: 14px;
  outline: none;
  padding: 7px 20px;
}

.single_rating .btn_review_user:hover,
.single_rating .btn_review_user:focus {
  border-color: #fb6a19;
  color: #fb6a19;
  background-color: transparent;
}

.single_rating .rating {
    float:left;
}

.single_rating .rating:not(:checked) > input {
    position:absolute;
    t/op:-99999px;
    visibility: hidden;
    clip:rect(0,0,0,0);
}

.single_rating .rating:not(:checked) > label {
    float:right;
    width:35px;
    padding:0 .1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:200%;
    line-height:1.2;
    color:#fb6a19;
}

.single_rating .rating:not(:checked) > label:before {
    content: "\f006";
    font-family: FontAwesome;
    font-size: 24px;
}

.single_rating .rating > input:checked ~ label {
    color: #fb6a19;
}

.single_rating .rating > input:checked ~ label:before {
    content: "\f005";
    font-family: FontAwesome;
    font-size: 24px;   
}

.single_rating .rating:not(:checked) > label:hover,
.single_rating .rating:not(:checked) > label:hover ~ label {
    color: #fb6a19;
}

.single_rating .rating:not(:checked) > label:hover ~ label:before {
    content: "\f005";
    font-family: FontAwesome;
    font-size: 24px; 
}

.single_rating .rating > input:checked + label:hover,
.single_rating .rating > input:checked + label:hover ~ label,
.single_rating .rating > input:checked ~ label:hover,
.single_rating .rating > input:checked ~ label:hover ~ label,
.single_rating .rating > label:hover ~ input:checked ~ label {
    color: #fb6a19;
}

.single_rating .rating > label:active {
    position:relative;
    top:2px;
    left:2px;
}

.single_rating .reviews_list {
  width: 100%;
}

.single_rating .reviews_list ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.single_rating .reviews_list ul li {
  width: 100%;
  padding: 0;
  margin: 0 0 20px 0;
}

.single_rating .reviews_list .media_left {
  width: 80px;
  float: left;
}

.single_rating .reviews_list .media_left figure {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 1px solid #dbdfe2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.single_rating .reviews_list .media_left figure img {
  width: 100%;
}

.single_rating .reviews_list .media_body {
  border-bottom: 1px solid #ddd;
  margin-left: 100px;
}

.single_rating .reviews_list .media_body h4 {
  font-size: 14px;
  color: #555;
  font-weight: 700;
  margin-bottom: 5px;
}

.single_rating .reviews_list .media_body .review_date {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  display: inline-block;
}

.single_rating .reviews_list .media_body .review_date .fa-calendar {
  color: #fb6a19;
  padding-right: 5px;
}

.single_rating .reviews_list .media_body .review_rating {
  display: inline-block;
  float: right;
}

.single_rating .reviews_list .media_body .review_content {
  font-size: 13px;
  color: #555;
  padding-top: 20px;
}

.single_rating .reviews_list .media_body .waiting_text {
  color: #fb6a19;
  font-size: 13px;
}

.single_rating .reviews_list .btn-primary{
  font-size: 14px;
  line-height: 18px;
  padding: 11px 19px;
  color: #fff;
  background-color: #fb6a19;
  border: solid 2px;
  border-color: #fb6a19;
  font-weight: 400;
  border-radius: 0;
}

.single_rating .reviews_list .btn-primary:hover,
.single_rating .reviews_list .btn-primary:focus {
  color: #fb6a19;
  background-color: transparent;
}

#login_register_modal .form-group .checkbox {
  width: 25px;
  float: left;
  margin: 5px -25px 0 0;
  position: relative;
  cursor: pointer;
}

#login_register_modal .form-group .term_flag { 
  padding-left: 30px; 
}

.myprofile_section {
  width: 100%;
  padding: 30px 0 30px 0;
}

.myprofile_section .btn_home {
  height: 40px;
  background-color: #fb6a19;
  color: #FFF;
  border: 2px solid transparent;
  font-size: 14px;
  outline: none;
  padding: 7px 20px;
  text-decoration: none;
}

.myprofile_section .btn_home:hover,
.myprofile_section .btn_home:focus {
  border-color: #fb6a19;
  color: #fb6a19;
  background-color: transparent;
}

.profile_dashboard {
    text-align: center;
    border: 1px solid #ddd;
    padding: 30px 0;
}

.profile_dashboard .panel_heading {
  font-size: 16px;
  color: #333;
  background-color: #f8f8f8;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.profile_dashboard .upload_profile {
  width: auto;
  float: none;
  outline: none;
  
  cursor: pointer;
}

.profile_dashboard .upload_profile span {
  height: 40px;
  background-color: #fb6a19;
  color: #FFF;
  border: 2px solid transparent;
  font-size: 14px;
  outline: none;
  padding: 7px 20px;
}

.profile_dashboard .upload_profile:hover,
.profile_dashboard .upload_profile:focus {
  border-color: #fb6a19;
  color: #fb6a19;
  background-color: transparent;
}

.profile_dashboard .upload_profile #imgInp {
  visibility: hidden;
  width: 0;
  height: 0;
}

.profile_dashboard .btn_upload_pro {
  height: 40px;
  background-color: #fb6a19;
  color: #FFF;
  border: 2px solid transparent;
  font-size: 14px;
  outline: none;
  padding: 7px 20px;
}

.profile_dashboard .btn_upload_pro:hover,
.profile_dashboard .btn_upload_pro:focus {
  border-color: #fb6a19;
  color: #fb6a19;
  background-color: transparent;
}

.profile_dashboard .form-group label {
  font-size: 13px;
}

.profile_dashboard .form-group .form-control {
  font-size: 13px;
}

.profile_dashboard .button_container {
  border-top: 1px solid #ddd;
}

.profile_dashboard .button_container .btn-danger {
  color: #333;
  background-color: #d8d8d8;
  border-color: transparent;
  border-radius: 0;
}

.profile_dashboard .button_container .btn-danger:focus,
.profile_dashboard .button_container .btn-danger:active {
  background-color: #d8d8d8;
  box-shadow: none;
  color: #333;
  background-color: #d8d8d8;
  border-color: transparent;
  border-radius: 0;
}

.left_profile {
  width: 100%;
}

.left_profile h5 {
  font-size: 15px;
  font-weight: 700;
  padding: 0;
  margin-bottom: 0;
}

.left_profile p {
  font-size: 13px;
}

.left_profile p a:hover {
  text-decoration: none;
}

.left_profile p a i {
  color: #fb6a19;
}

.left_profile figure {
  float: none;
  margin: 0 auto;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 1px solid #dbdfe2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 10px;
}

.left_profile figure img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.note_text {
  font-size: 12px;
  color: #bd2130;
  line-height: 15px;
}


.policy_page_content a {
  color: #fb6a19; 
}

.policy_page_content a:hover {
  color: #fb6a19; 
}


.section_blog {
  width: 100%;
  display: inline-block;
  padding: 50px 0 0 0;
}

.section_blog .blog_post {
  width: 100%;
  float: none;
  display: inline-block;
  -webkit-box-shadow: 0 3px 0 #eee;
  box-shadow: 0 3px 0 #eee;
  border: 1px solid #eaeaea;
}

.section_blog figure {
  width: 100%;
  float: none;
  display: inline-block;
  margin: 0 0 15px 0;
}

.section_blog figure img {
  width: 100%;
}

.section_blog h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.section_blog h3 {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.section_blog h3 a {
  color: #222;
}

.section_blog h3 a:hover {
  color: #fb6a19;
}

.section_blog p {
  color: #777;
}

.section_blog article {
  width: 100%;
  float: none;
  display: inline-block;
  padding: 0 20px;
}

.section_blog aside {
  width: 100%;
  margin-bottom: 15px;
}

.blog .home_banner::before {
  background-color: rgba(0,0,0,0.6);
}

.blog .home_banner h1 {
  margin-bottom: 10px;
}

.blog .home_banner p {
  font-size: 13px;
  color: #ddd;
  padding: 0;
  margin-bottom: 0;
}

.section_single_post {
  width: 100%;
  display: inline-block;
  background-color: #fafafa;
  padding: 50px 0 50px 0;
}

.section_single_post .box_post {
  width: 100%;
  float: none;
  display: inline-block;
  background-color: #FFF;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 25px;
}

.section_single_post .box_post h2 {
  font-size: 20px;
  font-weight: 600;
}

.section_single_post .box_post h3 {
  font-size: 18px;
  font-weight: 600;
}

.section_single_post .box_post h4 {
  font-size: 16px;
  font-weight: 600;
}

.section_single_post .box_post p {
  color: #5d6769;
}

.section_single_post .box_post p a {
  color: #fb6a19;
}

.section_single_post .box_post img {
  width: 100% !important;
  height: auto !important;
}

.section_single_post .box_post ul {
  width: 100%;
  float: left;
  padding: 0;
  margin: 0;
  list-style: none;
}

.section_single_post .box_post ul li {
  width: 100%;
  float: left;
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}

.section_single_post .box_post ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section_single_post .tag_list a {
  color: #FFF;
  font-size: 12px;
  background-color: #fb6a19;
  padding: 5px 10px;
}

@media (max-width: 767px) {
.blog .home_banner {
  display: flex;
  height: 60vh;
}  

.blog .home_banner .banner_info h1 {
  font-size: 24px;
}
}

@media (max-width: 579px) {
.blog .home_banner {
  height: 40vh;
}  

.blog .home_banner .banner_info h1 {
  font-size: 24px;
}
}

@media (max-width: 479px) {
.blog .home_banner {
  height: 37vh;
}
}