@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --dark-grey: #14171a;
  --light-grey: #272829;
  --brand-green: #e4a532;
  --banner-yellow: #e4a532;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

ul,
li {
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
}

:focus {
  outline: 0px;
}

input:focus {
  outline: 0px;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Albert Sans", sans-serif;
}
p {
  font-family: "Albert Sans", sans-serif;
  line-height: 1.65rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.bgGrey {
  background-color: #f8f8f8;
}

.border-radius {
  border-radius: 5px;
}

.prop_thumb-block {
  width: 100%;
  background-color: #fff;
  border: 1px solid #f1f2f5;
  overflow: hidden;
  border-radius: 5px;
  margin: 15px 0px;
  padding: 10px;
  position: relative;
  z-index: 5;
}
.prop_thumb-block a {
  color: #14171a;
}

.prop_thumb-block .thumb_block img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.prop_thumb-block .content_block {
  padding-top: 20px;
}
.prop_thumb-block .content_block .title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Albert Sans";
}
.prop_thumb-block .content_block .address {
  font-size: .85rem;
  font-weight: 400;
  margin: 0px;
}

ul.prop_thumb-feataure {
  display: flex;
    justify-content: flex-start;
    margin-top: 15px;
    margin-bottom: 0px;
    gap: 15px
}
ul.prop_thumb-feataure li {
  display: flex;
  align-items: center;
  font-weight: 500;
}
ul.prop_thumb-feataure li .icon {
  width: 20px;
  margin-right: 10px;
}

.detailsWrap {
  width: 100%;
  padding: 15px 0px;
  background-color: #f8f8f8;
}

.prop_dtls-section {
  width: 100%;
  margin: 25px 0px;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
}

.prop_dtls-section .title {
  font-weight: 600;
  font-size: 1.35rem;
  border-bottom: 1px solid #dce0e0;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.prop_dtls-section .custom_price{
  text-align: left !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
ul.prop_overview {
  display: flex;
  margin: 0px;
  justify-content: space-between;
  flex-wrap: wrap;
}
ul.prop_overview li i {
  margin-right: 5px;
}
ul.prop_overview li .item {
  display: block;
  font-weight: 600;
}
ul.prop_overview li {
  display: flex;
  align-items: center;
  flex: 0 0 25%;
  max-width: 25%;
  margin: 10px 0px;
}
ul.prop_overview li .f-icon{
  width: 20px;
  height: auto;
  margin-right: 4px;
}

ul.float-list {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  padding: 0px;
}

ul.float-list li {
  display: flex;
  justify-content: flex-start;
  padding: 10px 0px;
  gap: 20px;
}

.galleryScroll {
  width: 100%;
}

.cust_pagination {
      display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 15px;
}

.cust_pagination a, .cust_pagination span{
  margin-left: 4px;
  line-height: 20px;
  text-align: center;
  display: block;
  border: 1px solid #ccc;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 600;
}

#site-navigation-wrap .dropdown-menu {
    display: block;
    float: none;
    position: relative;
    top: auto;
    left: auto;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.owl-carousel .owl-item img {
  height: 1000px;
  object-fit: cover;
}

@media(max-width:600px){
  ul.prop_overview li {
  display: flex;
  flex: 0 0 50%;
 
}
}

@media (max-width:767px){
  .prop_dtls-section .custom_price {
    text-align: left !important;
  }
  ul.prop_overview {
    flex-direction: column;
    padding: 0 !important;
  }
    ul.prop_overview li{
     flex: 0 0 100%;
        max-width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }
    ul.float-list {
      columns: 1 !important;
      padding: 0px;
    }
}