main {
  /* height: 100dvh; */
  background-color: #070707;
  color: rgba(255, 255, 255, 1);
}

.breadcrumbs-page-title-filter__wrapper {
  padding: 147px 40px 60px;
  background-color: #070707;
  margin-bottom: 40px;
}

.breadcrumbs-page-title-filter__wrapper hr {
  border-color: rgba(176, 176, 176, 0.5);
}

.breadcrumbs-page-title__container {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  position: relative;
  align-items: center;
}

.breadcrumbs__container {
  display: flex;
  gap: 17px;
  align-items: center;
  position: absolute;
}

.breadcrumbs__container a {
  font-family: 'AvenirNextLTPro-Regular';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .16px;
  color: rgba(176, 176, 176, 0.5);
}

.breadcrumbs__container span {
  font-family: 'AvenirNextLTPro-Regular';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .16px;
}

.page-title {
  font-family: 'Satoshi-Black';
  font-weight: 900;
  font-size: 40px;

  letter-spacing: .40px;
  text-align: center;
  flex: 1;
}

.page-title span {
  font-family: 'Satoshi-Light';
  font-weight: 300;
  font-style: italic;
  font-size: 40px;

  letter-spacing: .40px;
  text-align: center;
}

.banner-filter-form-top {
  display: flex;
  gap: 20px;
}

.banner-filter-form-top-container {
  flex: 1;
}

.property-view-types {
  display: flex;
  align-items: center;
  gap: 15px;
}

.grid-view,
.list-view {
  border-radius: 10000px;
  border: 1px solid rgba(176, 176, 176, 1);
  overflow: hidden;
  height: 84px;
  width: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.grid-view img,
.list-view img {
  position: relative;
}

.grid-view::before,
.list-view::before {
  content: '';
  position: absolute;
  background-color: rgba(93, 93, 93, 1);
  inset: 0;
  opacity: 0;
  z-index: 0;
  margin: 5px;
  border-radius: 1000px;
  transition: opacity 0.5s ease-in-out;
}

.grid-view:hover::before,
.list-view:hover::before,
.grid-view.selected::before,
.list-view.selected::before {
  opacity: 1;
}

.property {
  padding-bottom: 40px;
}

.property-grid-view .property-list__wrapper {
  padding: 0 24px 19px;
  flex: 65%;
  margin-top: 40px;
  max-height: 1040px;
  overflow-y: scroll;
}

.property-list-view .property-list__wrapper {
  background: rgba(26, 26, 26, 1);
  padding: 50px 24px;
  flex: 65%;
}

.property-item__grid-view {
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-list-view .property-item-information-grid,
.property-grid-view .property-item__list-view,
.property-list-view .property-item__grid-view {
  display: none;
}

.property-list-view .property-item-information {
  display: flex;
  margin: 0;
  flex-direction: row;
  flex: 35%;
  padding: 0 38px 20px;
  gap: 21px;
}

.property-grid-view .property-list-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 15px;
  width: fit-content;
}

.property-list-view .property-list-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.property-item-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-grid-view .property-list__item {
  position: relative;
  width: 100%;
  /* height: 385px; */
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  /* border: 6px solid rgba(37, 37, 37, 1); */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  opacity: .5;
  transition: all 300ms ease-in;
  cursor: pointer;
}

.property-grid-view .property-list__item:hover,
.property-grid-view .property-list__item.property-active {
  opacity: 1;
  /* border: 6px solid #ffffff; */
}

.property-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.property-list__item-card {
  position: absolute;
  bottom: 0;
  width: 100%;
  backdrop-filter: blur(70px);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: all 400ms ease-in-out;
}

.property-list__item .property-list__item-card,
.property-list__item.property-active .property-list__item-card {
  opacity: 1;
}

.property-list__item-card .location,
.property-list__item-card .price,
.property-list__item-card .property-type,
.property-list__item-card .property-bedroom {
  display: flex;
  align-items: center;
  gap: 7px;
}

.property-list__item-card .location span,
.property-list__item-card .price span,
.property-list__item-card .property-type span,
.property-list__item-card .property-bedroom span {
  font-family: 'AvenirNextLTPro-Regular';
  font-weight: 700;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: .12px;
  text-transform: uppercase;
}

.property-list__item-card .location img,
.property-list__item-card .price img,
.property-list__item-card .property-type img,
.property-list__item-card .property-bedroom img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.property-list__wrapper::-webkit-scrollbar {
  width: 2px;
  border-radius: 5px;
}

/* Handle */
.property-list__wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 1);
}

.property-item-information-grid {
  display: flex;
  flex-direction: column;
  background: rgba(26, 26, 26, 1);
  margin-left: 12px;
  flex: 35%;
}

.property-item-image__container {
  position: relative;
  padding: 40px 38px 1rem 34px;
  /* height: 400px; */
  width: 100%;
}

.property-item-image__container img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.property-badge {
  font-family: 'Satoshi-Black';
  font-size: 16px;

  letter-spacing: 0;
  padding: 10px 20px;
  position: absolute;
  right: 0;
background: #54565a;
    color: white;
  border-radius: 10000px;
  top: 54px;
  right: 49px;
}

.property-item-details__container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 28px 0 26px;
}

.property-item-details-header {
  margin-bottom: 20px;
}

.property-item-details-header>span {
  font-family: 'AvenirNextLTPro-Regular';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .12px;
  text-transform: uppercase;
  color: rgba(84, 86, 90, 1);
}

.property-item-details-header h2 {
  font-family: 'AvenirNextLTPro-Regular';
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: .35px;
}

.property-item-attributes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: auto;
}

.property-item-attributes>div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-item-attributes>div p {
  font-family: 'AvenirNextLTPro-Bold';
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  color: rgba(84, 86, 90, 1);
}

.property-item-attributes>div span {
  font-family: 'AvenirNextLTPro-Regular';
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: .12px;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  gap: 7px; 
}

.property-item-attributes>div>img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}

.property-item-details-content {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.property-item-agent__container {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
  transition: 0.6s ease-in-out;
}

.property-item-agent-hr {
  width: 1px;
  height: 65px;
  background: #FFF;
}

.property-item-agent-details {
  display: flex;
  gap: 8px;
  align-items: center;
}

.property-item-agent-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  /* padding: 5px; */
  border: 1px solid #353535;
}

.property-item-agent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-item-agent-details h3 {
  font-family: 'Satoshi-Black', sans-serif;
  font-size: 16px;
  color: #FFF;
  font-weight: 400;
  padding-bottom: .1rem;
  text-transform: uppercase;
}

.property-item-agent-details h4 {
  font-family: 'Satoshi-Light', sans-serif;
  font-size: 14px;
  color: rgba(84, 86, 90, 1);
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: .12px;
}

.property-item-agent-contact p {
  font-family: 'Satoshi-Light', sans-serif;
  font-size: 14px;
  color: #FFF;
  font-weight: 400;
  text-transform: capitalize;
  padding-bottom: 6px;
}

.property-item-agent-contact-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-item-agent-contact-icons>a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #353535;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.property-item-agent-contact-icons img {
  transition: 0.3s ease-in-out;
}

.property-item-agent-contact-icons>a:hover {
  background: #FFF;
}

.property-item-agent-contact-icons>a:hover img {
  filter: invert(100%);
}

.property-item-btn {
  background: #000000;
  color: #ffffff;
  border: unset;
  border: 1px solid transparent;
  margin-bottom: 18px;
  text-align: center;
  padding: 10px 18px;
  font-size: 14px;
}

.property-item-btn:hover {
  background: #353535;
  border: 1px solid #ffffff;
}

.property-list-view .property-item-information-grid {
  margin: 0;
  padding: 57px 38px 26px;
  gap: 21px;
}

.property-list-view .property-item-image__container {
  flex: 22%;
  max-height: 282px;
  padding: 0;
  display: flex;
}

.property-item-information {
  max-height: 282px;
  display: flex;
}

.property-list-view .property-item-image__container img {
  border: 6px solid rgba(75, 75, 75, 1);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.property-list-view .property-badge,
.property-list-view .property-item-btn.grid-view-btn {
  display: none;
}

.property-grid-view [aria-label="Pagination Navigation"] p {
  display: none;
}

.property-grid-view [aria-label="Pagination Navigation"]>div {
  justify-content: center;
}

.property-list-view .property-item-details__container {
  flex-direction: row;
  flex: 65%;
  gap: 40px;
  padding: 0;
  display: flex;
  border-top: 1px solid rgba(75, 75, 75, 1);
}

.property-list-view .property-item-details-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin: 0;
  /* width: 100%; */
  max-width: 60%;
  padding-top: 22px;
  flex: 1;
}

.property-list-view .property-item-btn.list-view-btn {
  margin-top: auto;
  margin-bottom: 0;
}

.property-list-view .property-item-details-content {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  width: 100%;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.property-list-view .property-item-attributes {
  margin-bottom: 10px;
}

.property-list-view .property-item-agent__container {
  margin: 0;
  gap: 24px;
}

.property-item__mobile {
  display: none;
}

.dropdown-option.active-dropdown {
  background-color: rgb(7 7 7 / var(--tw-bg-opacity, 1));
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  border-radius: 50px;
}

/* Pagination */
.properties-pagination-wrapper {
  font-family: 'AvenirNextLTPro-Bold';
  font-weight: 400;
  font-size: 14px;
}

.properties-pagination-wrapper span,
.properties-pagination-wrapper a {
  border-radius: 4px;
}

.properties-pagination-wrapper .shadow-sm.rounded-md {
  gap: 8px;
}

@media (max-width: 1280px) {

  .breadcrumbs-page-title-filter__wrapper {
    padding: 147px 20px 60px;
  }

  .property-grid-view .property-list__wrapper {
    max-height: 909px;
  }

  .property-item-details__container {
    padding: 0 26px 0 23px;
  }

  .property-grid-view .property-list-grid {
    grid-template-columns: auto auto;
  }

  .property-item-details-header h2 {
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: .30px;
  }

  .property-item-attributes>div p {
    font-size: 14px;
    line-height: 100%;
  }

  .property-item-attributes>div span {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: .16px;
  }

  .property-item-attributes {
    gap: 10px;
  }

  .property-item-image__container {
    padding: 21px 26px 1rem 23px;
  }

  .banner-filter-form-bottom {
    width: 100%;
  }

  .banner-filters {
    padding: 160px 20px 30px;
  }

  .property-view-types {
    order: 4;
  }

  /* .banner-listing-type, 
  .banner-price-range, 
  .property-view-types {
    max-width: calc(100% / 3);
  } */

  #locationDropdown.banner-tal-dropdown .dropdown-content {
    right: 0;
  }




  .property-grid-view .property-list__item {
    height: auto;

  }


}

@media (max-width: 768px) {
  .filter__container {
    display: none;
  }

  .breadcrumbs-page-title-filter__wrapper hr {
    display: none;
  }

  .breadcrumbs__container {
    position: unset;
  }

  .breadcrumbs-page-title__container {
    flex-direction: column;
    align-items: start;
    gap: 40px;
    padding: 40px 0 20px 0;
  }

  .breadcrumbs-page-title-filter__wrapper {
    padding: 50px 16px 0;
    margin-bottom: 0;
  }

  .page-title {
    width: 100%;
  }

  .property-item-information-grid {
    display: none;
  }

  .property-grid-view .property-list__wrapper,
  .property-list-view .property-list__wrapper {
    width: 100%;
    max-height: unset;
    padding: unset;
    overflow-y: unset;
  }

  .property-grid-view .property-list-grid {
    display: flex;
    flex-direction: column;
    width: 94%;
    margin: auto;
  }

  .property-grid-view .property-list__item,
  .property-grid-view .property-list__item:hover,
  .property-grid-view .property-list__item.property-active {
    background: #1E1E1E;
    border: none;
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  .property-item__grid-view,
  .property-item__list-view {
    display: none;
  }

  .property-item__mobile {
    display: block;
  }

  .property-item__mobile .property-item-image__container {
    padding: 20px 10px;
  }

  .property-item__mobile .property-item-image__container img {
    border-radius: 5px;
  }

  .property-item__mobile .property-item-agent__container {
    margin: 5px 0;
  }

  .property-item__mobile .property-item-btn {
    border-radius: 10px;
    background: unset;
    border: 1px solid rgba(84, 86, 90, 1);
  }






  .property-grid-view .property-list__item {
    height: auto;

  }


  .property-item-agent__container {
    gap: 8px;
  }

  .property-item-agent-details h3 {
    font-size: 12px;
  }



  .property-item-agent-details h4 {
    font-size: 12px ;
  }


  .property-item-agent-image {
    width: 60px;
    height: 60px;
  }




}

.footer-featured-properties {
  padding: 40px 0;
}

.footer-featured-properties .swiper {
  padding-bottom: 40px;
  /* Space for pagination */
}

.footer-featured-properties .swiper-slide {
  height: auto;
}

.footer-featured-properties .swiper-pagination {
  bottom: 0;
}

.footer-featured-properties .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

.footer-featured-properties .swiper-pagination-bullet-active {
  background: #000;
}