.page-title h1{
    top: auto;
    bottom: 80px;
}
.booking-area {
    position: relative;
    bottom: 0px;
    left: 0;
   transform: translateX(0%);
    z-index: 1;
}
.search-bar form{
    margin-top: 0px;
}
.search-bar {
    position: absolute;
    width: 100%;
    /* top: 300px; */
    bottom: 10px;
}
section.home-list {
    background: #fff;
}
.home-list-card {
    position: relative;
}

/* Recommend homes for you */
section.recommend-properties {
  padding: 60px 0;
  /* background: #316599; */
  color: white;
}
section.recommend-properties h3{
  font-size:21px;
  text-transform: uppercase;
  letter-spacing:0;
  line-height: 1.1;
  font-weight: 300;
}
section.recommend-properties h3 a{
  color:var(--btn-color);
  font-family: var(--heading-font);
}
section.recommend-properties h3 a:hover{
  color: var(--para-color);
}
section.recommend-properties p{
  margin-bottom:0;
  font-size: 14px;
  line-height: 1.5;
  color: #606c76;
  font-weight: 300;
}
span.tax-desc{
  color: #008000;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}
section.recommend-properties p strong{
  font-weight:bold;
}
section.recommend-properties img{
  width:100%;
  height:300px;
  object-fit:cover;
}
.recommend-img{
  margin-bottom:16px;
}
.recommend-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.recommend-head-sec {
  margin-bottom: 40px;
}

.recommend-head-sec h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 500;
}

.recommend-property-list {
  background: #1b4070;
  border: 1px solid #1b4070;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s;
  height: 100%;
}

.recommend-property-list:hover {
  transform: translateY(-4px);
}

.recommend-list-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.recommend-property-list h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  height: 32px;
  overflow: hidden;
}

.recommend-property-list h3 a {
  color: #fff;
  text-decoration: none;
}

.recommend-property-list p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
  height: 24px;
  overflow: hidden;
}

.recommend-list-amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  padding: 0;
  margin: 15px 0;
}

.recommend-list-amenity li {
  font-size: 14px;
  color: #fff;
  display: flex !important;
  align-items: center;
  gap: 0;
  list-style: none;
}

.recommend-list-amenity li i {
  margin-right: 5px;
  color: #fff !important;
}

.recommend-list-amenity li span {
  font-weight: 700;
  margin-right: 2px;
}

.recommend-pro-btn {
  margin-top: 10px;
}

.recommend-main-btn {
  background: #4a8eff;
  color: white;
  padding: 13px 20px;
  font-size: 14px;
  display: block;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
}

.recommend-main-btn:hover {
  background: #3a7ae0;
}

/* Owl Carousel Dots */
.recommend-owl-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.recommend-owl-dots button.owl-dot {
  transition: 0.4s ease-in-out;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #ffffff70 !important;
  border: none;
}

.recommend-owl-dots button.owl-dot:hover {
  background: #fff !important;
}

.recommend-owl-dots button.owl-dot.active {
  width: 35px;
  background: #1b4070 !important;
}

/* Owl Carousel Nav */
.recommend-owl-nav {
  text-align: center;
  margin-top: 20px;
  display: none;
}

.recommend-owl-nav .owl-prev,
.recommend-owl-nav .owl-next {
  background: #4a8eff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.recommend-owl-nav .owl-prev:hover,
.recommend-owl-nav .owl-next:hover {
  background: #3a7ae0 !important;
}

/* Owl Carousel Dots */
.owl-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

button.owl-dot {
  transition: 0.4s ease-in-out;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  /* background: #ffffff70 !important; */
  background: #1b4070 !important;
  border: none;
}

button.owl-dot:hover {
  background: #fff !important;
}

button.owl-dot.active {
  width: 35px;
  background: #1b4070 !important;
}

/* Owl Carousel Nav */
.owl-nav {
  text-align: center;
  margin-top: 20px;
}

.owl-prev,
.owl-next {
  background: #4a8eff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.owl-prev:hover,
.owl-next:hover {
  background: #3a7ae0 !important;
}
@keyframes bounceUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

.owl-item.active .slide-content {
  animation: bounceUp 1s ease;
}
section.recommend-properties .owl-carousel .owl-nav button.owl-next, section.recommend-properties .owl-carousel .owl-nav button.owl-prev{
      width: 32px;
    height: 32px;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: transparent !important;
    border: 2px solid var(--white-color);
  opacity:0.5;
  -webkit-transition: opacity .35s linear 0s;
    transition: opacity .35s linear 0s;
}
section.recommend-properties .owl-carousel .owl-nav button.owl-next:hover, section.recommend-properties .owl-carousel .owl-nav button.owl-prev:hover{
  opacity:1;
}
section.recommend-properties .owl-carousel .owl-nav button.owl-next{
right:10px;
}
section.recommend-properties .owl-carousel .owl-nav button.owl-prev{
 left:10px; 
}
.back-stars {
    color: #ffb200;
    display:flex;
}
.back-stars i{
    font-size:14px;
}

section.filter-sec {
    padding-top: 20px;
    padding-bottom: 25px;
    background: #f5f5f5a1;
}
.filter-info {
    padding-left: 16px;
    padding-right: 16px;
}
.filter-infos {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.filter-info.filter-btn a{
     border: 0.1rem solid var(--secondary-color);
     border-radius: .2rem;
     color: var(--secondary-color);
     cursor: pointer;
     display: inline-block;
     font-size: 0.9rem;
     font-weight: 700;
     height: 2.5rem;
     letter-spacing: .1rem;
     line-height: 2.5rem;
     padding: 0 3.0rem;
     text-align: center;
     text-decoration: none;
     text-transform: uppercase !important;
     white-space: nowrap;
     width: 100%;
     background: #fff;
}
.filter-info.filter-btn a:hover{
color:var(--para-color);
  border-color:var(--para-color);
}
.filter-info input, .filter-info select{
  -webkit-appearance: none;
    background-color: transparent;
    border: 0.1rem solid var(--secondary-color);
    border-radius: .2rem;
    box-shadow: none;
    box-sizing: inherit;
    height: 2.5rem;
    padding: .6rem 1.0rem .7rem;
    width: 100%;
    background-color: #fff;
    font-size: 14px;
    color: #4e4e4e;
}
.filter-info select{
  background:url("../images/download.svg") center right no-repeat;
      padding-right: 3.0rem;
    background-color: #fff;
}
.filter-info.filter-form input::placeholder{
  color: #4e4e4e;
}
.filter-info.filter-search button{
      background-color: var(--secondary-color);
    border: 0.1rem solid var(--secondary-color);
    border-radius: .2rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    height: 2.5rem;
    letter-spacing: .1rem;
    line-height: 2.5rem;
    padding: 0 3.0rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase !important;
    white-space: nowrap;
    width: 100%;
}
.filter-info.filter-search button:hover{
  background-color:var(--para-color);
  border-color: var(--para-color);
}
.filter-info.filter-clear button{
        border: 0.1rem solid var(--secondary-color);
    border-radius: .2rem;
    color: var(--secondary-color);
    cursor: pointer;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    height: 2.5rem;
    letter-spacing: .1rem;
    line-height: 2.5rem;
    padding: 0 3.0rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase !important;
    white-space: nowrap;
    width: 100%;
    background: #fff;
}
.filter-info.filter-clear button:hover{
 color:var(--para-color);
 border-color: var(--para-color) !important;
}
.filter-model {
    position: absolute;
    flex-direction: column;
    top: 50px;
    background: #fff;
    z-index: 9;
    padding: 20px;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 3px 3px #2525251a;
    margin-top: 0px;
    border-radius: 0.4rem;
    display: none;
}
section.filter-sec form {
    position: relative;
}
section.filter-sec p.abe-filter-close {
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
    color: var(--para-color);
  cursor:pointer;
}
section.filter-sec .filter-model-search {
    display: flex;
    width: 100%;
}
section.filter-sec .filter-model-search .filter-info{
 width:25%; 
}
section.filter-sec .filter-model-search .filter-info:first-child{
 padding-left:0; 
}
section.filter-sec .filter-model-search .filter-info:last-child{
 padding-right:0; 
}
section.filter-sec .filter-model-search{
 margin-bottom:24px; 
}
label.abe-filter-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: .5rem;
    border-bottom: 1px dashed #14264B;
    color: var(--para-color);
}
.amenities-modal .abe-column{
 width:25%;
  padding-left:16px;
  padding-right:16px;
}
.amenities-modal .abe-column:first-child{
  padding-left:0;
}
.amenities-modal .abe-column:last-child{
  padding-right:0;
}
.amenities-modal .abe-row {
    display: flex;
}
.amenities-modal .abe-row label {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--para-color);
}
.amenities-modal .abe-row input{
  margin-bottom:24px;
}
.pro-filters select.abe-unit-links.select2-hidden-accessible {
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 0px 10px;
    height: 40px;
    font-size: 16px;
    background-color: #ffffff;
    width: 340px;
    padding-left: 45px;
    /* text-align: center; */
}
.pro-filters {
    width: 340px;
    position: relative;
    margin: auto;
}
.pro-filters i{
 position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%); 
}