@charset "UTF-8";
/* Poppins */
.poppins-100 { /*Thin*/
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-200 { /*ExtraLight*/
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-300 { /*Light*/
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-400 { /*Regular*/
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-500 { /*Medium*/
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-600 { /*SemiBold*/
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-700 { /*Bold*/
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-800 { /*ExtraBold*/
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-900 { /*Black*/
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgb(0, 0, 0);
  overflow-x: hidden;
}

.bg-primary {
  background-color: rgb(0, 121, 255) !important;
}

.bg-secondary {
  background-color: rgb(0, 50, 157) !important;
}

.bg-primary-light {
  background-color: rgba(0, 121, 255, 0.08);
}

.bg-secondary-light {
  background-color: rgba(0, 50, 157, 0.08);
}

.section-space {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1199.98px) {
  .section-space {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .section-space {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .section-space {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

h1 {
  font-weight: 700;
  font-size: clamp(26px, 4vw, 54px);
  line-height: clamp(34px, 4vw, 80px);
}

h2 {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 46px);
  line-height: clamp(32px, 4vw, 68px);
}

h3 {
  font-weight: 700;
  font-size: clamp(22px, 4vw, 40px);
  line-height: clamp(30px, 4vw, 60px);
}

h4 {
  font-weight: 700;
  font-size: clamp(20px, 3vw, 34px);
  line-height: clamp(28px, 5vw, 50px);
}

h5 {
  font-weight: 700;
  font-size: clamp(18px, 4vw, 28px);
  line-height: clamp(26px, 4vw, 42px);
}

h6 {
  font-weight: 700;
  font-size: clamp(16px, 4vw, 22px);
  line-height: clamp(24px, 4vw, 32px);
}

.subtitle {
  font-weight: 500;
  font-size: clamp(16px, 4vw, 20px);
  line-height: clamp(24px, 4vw, 24px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.cursor-pointer {
  cursor: pointer !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.w-18 {
  width: 18px !important;
}

.w-20 {
  width: 20px !important;
}

@media (min-width: 992px) {
  .border-top-lg-none {
    border-top: none !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-16 {
    font-size: 16px !important;
  }
  .w-sm-24 {
    width: 24px !important;
  }
}
.text-primary {
  color: rgb(0, 121, 255) !important;
}

.text-primary-dark {
  color: rgb(0, 50, 157) !important;
}

.text-black,
.text-dark {
  color: rgb(0, 0, 0) !important;
}

.text-gray {
  color: rgb(83, 83, 100) !important;
}

.btn {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 100px;
}

.btn:disabled {
  cursor: not-allowed;
  border: 1px solid rgb(83, 83, 100) !important;
  color: rgb(83, 83, 100) !important;
  opacity: 1;
  background: rgba(83, 83, 100, 0.1) !important;
}
.btn:disabled img {
  filter: brightness(0) invert(0.3);
}

.btn-primary {
  background-color: rgb(0, 121, 255) !important;
  color: rgb(255, 255, 255) !important;
  border: 1px solid rgb(0, 121, 255) !important;
  font-weight: 500;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: rgb(0, 50, 157) !important;
  border-color: rgb(0, 50, 157) !important;
}

.btn-outline-primary {
  border: 1px solid rgb(0, 121, 255) !important;
  color: rgb(0, 121, 255) !important;
  background-color: rgba(0, 121, 255, 0.1);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: rgb(0, 50, 157) !important;
  border-color: rgb(0, 50, 157) !important;
  color: rgb(255, 255, 255) !important;
}
.btn-outline-primary:hover img, .btn-outline-primary:focus img, .btn-outline-primary:active img {
  filter: brightness(0) invert(1);
}

.whatsapp-btn {
  background: linear-gradient(180deg, #62FA7F 0%, #22CC40 70%, #05B723 100%);
  color: rgb(255, 255, 255) !important;
  padding: 1rem 2rem;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-btn:hover, .whatsapp-btn:focus, .whatsapp-btn:active {
  background: linear-gradient(180deg, #62FA7F 0%, #22CC40 70%, #05B723 100%);
  color: rgb(255, 255, 255) !important;
  border: 0;
}
@media (max-width: 575.98px) {
  .whatsapp-btn {
    padding: 0.7rem 1rem;
    font-size: 14px;
  }
}

.line-btn {
  background: rgb(90, 207, 54);
  color: rgb(255, 255, 255) !important;
  padding: 1rem 2rem;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-btn:hover, .line-btn:focus, .line-btn:active {
  background: rgb(90, 207, 54);
  color: rgb(255, 255, 255) !important;
  border: 0;
}
@media (max-width: 575.98px) {
  .line-btn {
    padding: 0.7rem 1rem;
    font-size: 14px;
  }
}

.max-detail-1-line,
.max-detail-2-line,
.max-detail-3-line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-detail-1-line {
  -webkit-line-clamp: 1;
}

.max-detail-2-line {
  -webkit-line-clamp: 2;
}

.max-detail-3-line {
  -webkit-line-clamp: 3;
}

.blinking-text {
  animation: blinker 2s linear infinite;
}
@keyframes blinker {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.rotate-none {
  transform: rotate(0deg);
  transition: 0.3s;
}

.rotate-180 {
  transform: rotate(180deg);
  transition: 0.3s;
}

.form-control {
  border-color: rgba(83, 83, 100, 0.5);
}
.form-control:hover, .form-control:focus, .form-control:active {
  border-color: rgba(83, 83, 100, 0.5);
  box-shadow: none;
  outline: none;
  box-shadow: none;
}

.input-group-text {
  border-color: rgba(83, 83, 100, 0.5);
}

input:-moz-placeholder {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

input:placeholder-shown {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
@media (max-width: 575.98px) {
  input:-moz-placeholder {
    font-size: 14px;
  }
  input:placeholder-shown {
    font-size: 14px;
  }
}

.custom-border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.min-w-100 {
  min-width: 100% !important;
}

.header-section {
  position: relative;
  z-index: 200;
}
.header-section .decoration-line-end {
  position: relative;
  padding-right: 1rem;
}
.header-section .decoration-line-end::after {
  content: "";
  height: 36px;
  width: 1px;
  background-color: rgba(83, 83, 100, 0.5);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 1600px) {
  .header-section .decoration-line-end {
    padding-right: 5px;
    margin-right: 5px;
  }
}
@media (max-width: 1600px) {
  .header-section .navbar .navbar-nav .nav-link {
    font-size: 14px;
  }
  .header-section .navbar .navbar-nav .nav-link .btn {
    padding: 5px 10px !important;
    font-weight: 400;
    font-size: 14px;
  }
}
@media (max-width: 1399.98px) {
  .header-section .navbar .navbar-collapse {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 6px rgba(22, 22, 26, 0.05);
    z-index: 10;
  }
  .header-section .navbar .navbar-collapse .row {
    margin: 0;
  }
  .header-section .navbar .navbar-collapse .dropdown {
    position: relative;
  }
  .header-section .navbar .navbar-collapse .dropdown .dropdown-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 575.98px) {
  .header-section .navbar .responsive-logo {
    width: 150px;
  }
  .header-section .navbar .responsive-btn .btn {
    padding: 5px 10px !important;
    font-weight: 400;
    font-size: 14px;
  }
}

.language-currency-modal .modal-header button {
  font-size: 12px;
  opacity: 0.8;
}
.language-currency-modal .nav-tabs .nav-link {
  border: 1px solid transparent;
  color: rgb(0, 0, 0);
}
.language-currency-modal .nav-tabs .nav-link:hover, .language-currency-modal .nav-tabs .nav-link:focus, .language-currency-modal .nav-tabs .nav-link:active {
  border: 1px solid transparent;
  box-shadow: none;
}
.language-currency-modal .nav-tabs .nav-link.active {
  border: 0;
  border-bottom: 2px solid rgb(0, 50, 157);
  font-weight: 500;
}
.language-currency-modal .tab-content {
  margin-top: 20px;
}
.language-currency-modal .tab-content .custom-row {
  margin-left: -5px;
  margin-right: -5px;
}
.language-currency-modal .tab-content .custom-row .custom-col {
  padding-left: 5px;
  padding-right: 5px;
}
.language-currency-modal .tab-content .item {
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
  border: 1px solid transparent;
}
.language-currency-modal .tab-content .item.active {
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.language-currency-modal .tab-content .item:hover {
  background-color: #f7f7f7;
}
.language-currency-modal .tab-content .item p {
  margin-bottom: 0px;
}

.hero-section {
  position: relative;
  height: 450px;
  z-index: 0;
}
.hero-section.tips-guides {
  height: 650px;
}
.hero-section .image-section {
  height: 100%;
}
.hero-section .image-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .content-section {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 80px;
  color: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero-section .content-section.gradient-bottom-to-top {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767.98px) {
  .hero-section {
    height: 350px;
  }
  .hero-section.tips-guides {
    height: 350px;
  }
  .hero-section .content-section {
    padding-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 350px;
  }
  .hero-section.advertise-hero {
    min-height: unset;
  }
}

.floating-filter-section {
  position: relative;
  z-index: 10;
  margin-top: -130px;
}
@media (max-width: 575.98px) {
  .floating-filter-section {
    margin-top: -180px;
    margin-bottom: 110px;
  }
}
.floating-filter-section .nav {
  gap: 1px;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  display: inline-flex;
  flex-wrap: nowrap;
}
.floating-filter-section .nav .nav-item .nav-link {
  font-weight: 500;
  padding: 18px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgb(255, 255, 255);
  color: rgb(83, 83, 100);
  border-radius: 0;
}
.floating-filter-section .nav .nav-item .nav-link.active {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
@media (max-width: 767.98px) {
  .floating-filter-section .nav .nav-item .nav-link {
    padding: 10px 20px;
  }
}
@media (max-width: 575.98px) {
  .floating-filter-section .nav .nav-item .nav-link {
    padding: 8px 10px;
    font-size: 14px;
    white-space: nowrap;
  }
}
@media (max-width: 320px) {
  .floating-filter-section .nav .nav-item .nav-link {
    font-size: 12px;
  }
}
@media (max-width: 575.98px) {
  .floating-filter-section .nav {
    width: 100%;
  }
  .floating-filter-section .nav .nav-item {
    width: 100%;
  }
  .floating-filter-section .nav .nav-item .nav-link {
    width: 100%;
  }
}
.floating-filter-section .tab-content {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
  padding: 20px;
  border-radius: 0px 10px 10px 10px;
}
.floating-filter-section .tab-content .filter-list .filter {
  display: flex;
  align-items: center;
  color: rgb(83, 83, 100);
}
.floating-filter-section .tab-content .filter-list .filter .icon {
  margin-right: 12px;
}
.floating-filter-section .tab-content .filter-list .filter .form-control {
  border: 0;
  width: 100%;
  padding: 0;
}
.floating-filter-section .tab-content .filter-list .filter .form-control:hover, .floating-filter-section .tab-content .filter-list .filter .form-control:focus, .floating-filter-section .tab-content .filter-list .filter .form-control:active {
  box-shadow: none;
}
.floating-filter-section .tab-content .filter-list .filter.decoration-line-end {
  position: relative;
  padding-right: 12px;
}
.floating-filter-section .tab-content .filter-list .filter.decoration-line-end::after {
  content: "";
  height: 100%;
  width: 2px;
  background-color: rgba(83, 83, 100, 0.2);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 1199.98px) {
  .floating-filter-section .tab-content .filter-list .filter.decoration-line-end {
    padding-right: 0;
  }
  .floating-filter-section .tab-content .filter-list .filter.decoration-line-end::after {
    display: none;
  }
}
.floating-filter-section .tab-content .filter-list .filter .dropdown-item {
  padding: 10px 20px;
}
.floating-filter-section .tab-content .filter-list .filter .dropdown-item:hover {
  background-color: rgba(0, 121, 255, 0.1);
}
.floating-filter-section .tab-content .filter-list .filter .filter-location {
  position: relative;
}
.floating-filter-section .tab-content .filter-list .filter .filter-location .filter-location-hidden {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  position: absolute;
  top: calc(100% + 20px);
  z-index: 1;
  width: 100%;
  cursor: pointer;
}
.floating-filter-section .tab-content .filter-list .filter .filter-location .filter-location-hidden p {
  margin-bottom: 0;
  margin-left: 12px;
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths {
  position: relative;
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths .beds-baths-hidden {
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  z-index: 1;
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths .beds-baths-hidden .top-section {
  padding: 20px;
  border-bottom: 1px solid rgba(83, 83, 100, 0.5);
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths .beds-baths-hidden .top-section .item-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths .beds-baths-hidden .top-section .item-list .item {
  background: rgba(83, 83, 100, 0.1);
  border-radius: 10px;
  border: 1px solid rgb(83, 83, 100);
  min-width: 44px;
  min-height: 44px;
  padding: 10px 16px;
  cursor: pointer;
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths .beds-baths-hidden .top-section .item-list .item.active {
  border: 1px solid rgb(0, 121, 255);
  background-color: rgba(0, 121, 255, 0.1);
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths .beds-baths-hidden .top-section .item-list .item p {
  margin-bottom: 0px;
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths .beds-baths-hidden .bottom-section {
  padding: 20px;
}
.floating-filter-section .tab-content .filter-list .filter .beds-baths .beds-baths-hidden .bottom-section button {
  color: rgb(0, 50, 157);
  font-weight: 600;
  margin-bottom: 0;
  display: inline-block;
  text-decoration: none;
  padding: 0;
}
@media (max-width: 575.98px) {
  .floating-filter-section .tab-content .filter-list .navigate-property-list {
    padding: 0.5rem 1rem;
  }
  .floating-filter-section .tab-content .filter-list .navigate-property-list img {
    width: 18px;
  }
}
@media (max-width: 575.98px) {
  .floating-filter-section .tab-content {
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
  }
  .floating-filter-section .tab-content .filter-list .filter .icon {
    display: none;
  }
}
.floating-filter-section.find-agent-broker {
  margin-top: -120px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .floating-filter-section.find-agent-broker {
    margin-bottom: 0px;
  }
}
@media (max-width: 575.98px) {
  .floating-filter-section.find-agent-broker .tab-content {
    border-radius: 10px;
  }
}
.floating-filter-section.new-project {
  margin-top: -55px;
  margin-bottom: 20px;
}
.floating-filter-section.tips-guides {
  margin-top: -65px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .floating-filter-section.tips-guides {
    margin-top: -55px;
  }
}

.card-multi-slider {
  max-width: 100%;
  overflow: hidden;
}
.card-multi-slider .slider-arrows {
  display: flex;
  align-items: center;
}
.card-multi-slider .slider-arrows .arrow {
  padding: 8px;
  border-radius: 5px;
  background-color: rgba(19, 19, 19, 0.4);
}
@media (max-width: 767.98px) {
  .card-multi-slider .slider-arrows .arrow {
    display: none;
  }
}
.card-multi-slider .slider-section {
  margin-top: 30px;
}
.card-multi-slider .slider-section .swiper {
  width: calc(100% + 2rem);
  margin-left: -1rem;
  padding: 0 1rem 1rem;
}
.card-multi-slider .slider-section .swiper-slide {
  width: calc(25% - 18px) !important;
  min-width: 280px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
}
.card-multi-slider .slider-section .swiper-slide.w-100 {
  width: 100% !important;
}
.card-multi-slider .slider-section .swiper-slide .image-section {
  position: relative;
}
.card-multi-slider .slider-section .swiper-slide .image-section .video-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper {
  padding: 0;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .swiper-slide {
  width: 100% !important;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .pagination {
  position: absolute;
  z-index: 100;
  bottom: 0px;
  padding: 10px;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .pagination .swiper-pagination-bullet {
  background-color: rgb(213, 213, 213);
  opacity: 1;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(255, 255, 255);
  opacity: 1;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  height: 30px;
  width: 30px;
  border-radius: 12px;
  background-color: rgba(19, 19, 19, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .arrow img {
  width: 20px;
  height: auto;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .innerHighDemandPrev,
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .innerNearbyApartmentPrev,
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .innerSimilarApartmentPrev {
  left: -30px;
  transition: 0.3s;
}
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .innerHighDemandNext,
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .innerNearbyApartmentNext,
.card-multi-slider .slider-section .swiper-slide .image-section .slider-image .swiper .inner-slider-arrows .innerSimilarApartmentNext {
  right: -30px;
  transition: 0.3s;
}
.card-multi-slider .slider-section .swiper-slide .image-section:hover .swiper .inner-slider-arrows .innerHighDemandPrev,
.card-multi-slider .slider-section .swiper-slide .image-section:hover .swiper .inner-slider-arrows .innerNearbyApartmentPrev,
.card-multi-slider .slider-section .swiper-slide .image-section:hover .swiper .inner-slider-arrows .innerSimilarApartmentPrev {
  left: 30px;
}
.card-multi-slider .slider-section .swiper-slide .image-section:hover .swiper .inner-slider-arrows .innerHighDemandNext,
.card-multi-slider .slider-section .swiper-slide .image-section:hover .swiper .inner-slider-arrows .innerNearbyApartmentNext,
.card-multi-slider .slider-section .swiper-slide .image-section:hover .swiper .inner-slider-arrows .innerSimilarApartmentNext {
  right: 30px;
}
.card-multi-slider .slider-section .swiper-slide .content-section {
  padding: 10px;
  background-color: rgb(255, 255, 255);
}
.card-multi-slider .slider-section .swiper-slide.last-slide {
  background: rgb(0, 50, 157);
  transition: 0.2s;
  height: auto;
  padding: 50px 30px 30px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-multi-slider .slider-section .swiper-slide.last-slide a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.card-multi-slider .slider-section .swiper-slide.last-slide:hover {
  background-color: rgb(0, 121, 255);
}

.like-share-report {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.like-share-report .icon {
  height: 40px;
  width: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.type-badge.right-0 {
  left: unset;
  right: 10px;
}
.type-badge p {
  white-space: nowrap;
  color: rgb(255, 255, 255);
  z-index: 9;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  background-color: rgb(0, 121, 255);
}
.type-badge img {
  margin-left: 5px;
}

.like-unlike {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
}
.like-unlike img {
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.36));
}

.property-image {
  position: relative;
}
@media (max-width: 767.98px) {
  .property-image img {
    width: 100%;
  }
}
.property-image .company-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
}

.recent-activity-section .recent-activity {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0);
  border: 1px solid rgba(83, 83, 100, 0.5);
  border-radius: 10px;
  padding: 20px;
}
.recent-activity-section .recent-activity .image-section img {
  height: 50px;
  width: 50px;
  min-height: 50px;
  min-width: 50px;
  max-height: 50px;
  max-width: 50px;
  border-radius: 6px;
  border: 1px solid rgb(255, 255, 255);
}
.recent-activity-section .recent-activity .image-section img:not(:first-child) {
  margin-left: -15px;
}

.get-application-section {
  background-color: rgba(0, 121, 255, 0.1);
  padding-top: 50px;
}
@media (max-width: 991.98px) {
  .get-application-section {
    padding-top: 40px;
  }
}
@media (max-width: 575.98px) {
  .get-application-section {
    padding-top: 30px;
  }
}
.get-application-section .left-section {
  padding-bottom: 50px;
}
@media (max-width: 991.98px) {
  .get-application-section .left-section {
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .get-application-section .left-section {
    padding-bottom: 30px;
  }
}

.what-you-need-section {
  background-color: rgba(83, 83, 100, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 1199.98px) {
  .what-you-need-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .what-you-need-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .what-you-need-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.what-you-need-section .card {
  border-radius: 10px;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
  height: 100%;
}
.what-you-need-section .card .card-body {
  padding: 30px;
}
@media (max-width: 767.98px) {
  .what-you-need-section .card .card-body {
    padding: 20px;
  }
}
.what-you-need-section .card .card-body .content {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .what-you-need-section .card .card-body .content {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .what-you-need-section .card .card-body .content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .what-you-need-section .card .card-body .content {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.article-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(0, 121, 255, 0.1);
}
@media (max-width: 1199.98px) {
  .article-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .article-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .article-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.article-section .articlePagination {
  margin-top: 30px;
  text-align: center;
}
.article-section .articlePagination .swiper-pagination-bullet {
  transition: 0.3s;
  width: 20px;
  height: 6px;
  background-color: rgba(83, 83, 100, 0.2);
  border-radius: 20px;
  opacity: 1;
}
.article-section .articlePagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(0, 50, 157);
  width: 44px;
}
@media (max-width: 575.98px) {
  .article-section .articlePagination {
    margin-top: 20px;
  }
}

.footer-section .top-section {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 991.98px) {
  .footer-section .top-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .footer-section .top-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer-section .top-section .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-section .top-section .page-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
  gap: 20px;
}
.footer-section .top-section .page-links li {
  list-style: none;
}
.footer-section .top-section .page-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  color: rgb(0, 0, 0);
}
@media (max-width: 991.98px) {
  .footer-section .top-section .page-links {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .footer-section .top-section .page-links {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .footer-section .top-section .page-links {
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    padding-left: 0;
    gap: 10px;
  }
}
.footer-section .copyright-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 991.98px) {
  .footer-section .copyright-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .footer-section .copyright-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.top-filter-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  background-color: rgb(255, 255, 255);
  position: relative;
}
.top-filter-section .search-input {
  width: auto;
  min-width: 400px;
}
@media (max-width: 575.98px) {
  .top-filter-section .search-input {
    min-width: unset;
  }
}
.top-filter-section .search-input .form-control {
  padding: 8px 10px;
  border-radius: 6px;
}
.top-filter-section .search-dropdown-menu {
  padding: 1rem;
  border-radius: 8px;
  position: absolute;
  top: calc(100% + 10px);
  border: 1px solid rgba(83, 83, 100, 0.5);
  min-width: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 10;
}
@media (max-width: 575.98px) {
  .top-filter-section .custom-switch p {
    padding: 2px 16px !important;
    font-size: 14px;
  }
}
.top-filter-section .custom-dropdown {
  position: relative;
}
@media (max-width: 991.98px) {
  .top-filter-section .custom-dropdown {
    position: static;
  }
}
.top-filter-section .custom-dropdown .filter-btn {
  border: 1px solid rgba(83, 83, 100, 0.5);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
}
.top-filter-section .custom-dropdown .filter-btn:hover {
  border: 1px solid rgb(0, 50, 157);
  color: rgb(0, 50, 157);
  background-color: rgba(0, 50, 157, 0.08);
}
@media (max-width: 575.98px) {
  .top-filter-section .custom-dropdown .filter-btn {
    padding: 4px 10px;
  }
}
.top-filter-section .custom-dropdown .custom-dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  padding: 1rem 1.5rem;
  background-color: rgb(255, 255, 255);
  width: -moz-max-content;
  width: max-content;
  border: 1px solid rgba(83, 83, 100, 0.5);
  border-radius: 6px;
  min-width: 300px;
}
@media (max-width: 991.98px) {
  .top-filter-section .custom-dropdown .custom-dropdown-menu {
    top: 100%;
  }
  .top-filter-section .custom-dropdown .custom-dropdown-menu.lg-center {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 575.98px) {
  .top-filter-section .custom-dropdown .custom-dropdown-menu {
    padding: 0.5rem 1rem 1rem;
  }
  .top-filter-section .custom-dropdown .custom-dropdown-menu.sm-center {
    left: 50%;
    transform: translateX(-50%);
  }
  .top-filter-section .custom-dropdown .custom-dropdown-menu.property-type-menu {
    width: 320px;
    padding: 0.5rem;
  }
  .top-filter-section .custom-dropdown .custom-dropdown-menu.property-type-menu p {
    font-size: 12px !important;
  }
  .top-filter-section .custom-dropdown .custom-dropdown-menu.beds-baths-dropdown {
    width: 320px;
  }
  .top-filter-section .custom-dropdown .custom-dropdown-menu.price-dropdown {
    width: 320px;
  }
}
.top-filter-section .custom-dropdown .accordion-button.arrow-none::after {
  display: none;
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-header {
  line-height: normal;
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-header button {
  padding: 15px 0px;
  box-shadow: none;
  font-weight: 500;
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-header button.accordion-button:not(.collapsed) {
  background-color: rgb(255, 255, 255);
  box-shadow: none;
}
@media (max-width: 575.98px) {
  .top-filter-section .custom-dropdown .accordion .accordion-item .accordion-header button {
    padding: 10px 0px;
  }
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-body {
  padding: 0px 0px 15px;
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-body ul {
  padding: 0;
  margin: 0;
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-body ul li {
  padding: 2px 5px;
  list-style-type: none;
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-body ul li.active {
  background-color: rgba(0, 121, 255, 0.2);
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-body ul li:not(:last-child) {
  margin-bottom: 5px;
}
.top-filter-section .custom-dropdown .accordion .accordion-item .accordion-body ul li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 14px;
}
.top-filter-section .custom-dropdown .property-type-menu .custom-row {
  margin-left: -5px;
  margin-right: -5px;
}
.top-filter-section .custom-dropdown .property-type-menu .custom-row .custom-col {
  padding-left: 5px;
  padding-right: 5px;
}
.top-filter-section .custom-dropdown .property-type-menu .item {
  border: 1px solid rgba(83, 83, 100, 0.5);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.top-filter-section .custom-dropdown .property-type-menu .item.active {
  border-color: rgb(0, 50, 157);
  color: rgb(0, 50, 157);
  background-color: rgba(0, 50, 157, 0.08);
}
.top-filter-section .custom-dropdown .property-type-menu .item .icon {
  width: 35px;
}
.top-filter-section .custom-dropdown .property-type-menu .item p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 575.98px) {
  .top-filter-section .custom-dropdown .property-type-menu .item {
    padding: 0.5rem;
  }
}
.top-filter-section .custom-dropdown .beds-bath-list {
  padding: 0;
  display: flex;
  align-items: center;
  overflow-y: hidden;
  gap: 0.8rem;
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .top-filter-section .custom-dropdown .beds-bath-list {
    gap: 0.4rem;
  }
}
.top-filter-section .custom-dropdown .beds-bath-list li {
  list-style: none;
  padding: 6px 15px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #f7f7f7;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
}
.top-filter-section .custom-dropdown .beds-bath-list li.active {
  border-color: rgb(0, 50, 157);
  color: rgb(0, 50, 157);
  background-color: rgba(0, 50, 157, 0.08);
}
.top-filter-section .select2-selection {
  height: 44px;
  display: flex;
  align-items: center;
  width: 100%;
}
.top-filter-section .select2-selection .select2-selection__arrow {
  height: 100%;
}
.top-filter-section .select2-selection .select2-selection__arrow b {
  border: 0;
  background-image: url(../images/icon-dropdown-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  transform: translate(-50%, -50%);
}
.top-filter-section .custom-switch {
  border: 1px solid rgba(83, 83, 100, 0.5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 2px;
}
.top-filter-section .custom-switch p {
  margin-bottom: 0;
  padding: 8px 20px;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255);
}
.top-filter-section .custom-switch p.active {
  border: 1px solid rgb(0, 121, 255);
  background: rgba(0, 121, 255, 0.1);
  border-radius: 8px;
}
.top-filter-section .smart-filter-switch {
  border: 1px solid rgba(83, 83, 100, 0.5);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
}
.top-filter-section .custom-responsive-filtter-row .custom-dropdown {
  padding: 4px 10px;
}
.top-filter-section .custom-range-slider .range-slider-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.top-filter-section .custom-range-slider .histogram {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  margin-bottom: 5px;
  position: relative;
}
.top-filter-section .custom-range-slider .bar {
  width: 15px;
  background-color: #ccc;
  transition: background-color 0.2s, height 0.2s;
  border-radius: 2px;
}
@media (max-width: 575.98px) {
  .top-filter-section .custom-range-slider .bar {
    display: none;
  }
}
.top-filter-section .custom-range-slider .bar.active {
  background-color: rgb(0, 121, 255);
}
.top-filter-section .custom-range-slider .range-track {
  position: absolute;
  bottom: 35px;
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  font-size: 16px;
}
.top-filter-section .custom-range-slider .range-highlight {
  position: absolute;
  bottom: 35px;
  height: 4px;
  background-color: rgb(0, 121, 255);
  border-radius: 2px;
}
.top-filter-section .custom-range-slider input[type=range] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
  width: 100%;
  height: 30px;
  background: none;
  pointer-events: none;
}
.top-filter-section .custom-range-slider input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  background: #fff;
  border: 2px solid rgb(0, 121, 255);
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
  margin-top: 6px;
}
.top-filter-section .custom-range-slider .labels {
  display: flex;
  justify-content: space-between;
  color: #555;
}
.top-filter-section .custom-range-slider .labels span {
  display: block;
  padding-top: 30px;
}

.smart-remaining-filters {
  position: fixed;
  width: 600px;
  max-width: 100%;
  right: 0;
  top: 0px;
  bottom: 0;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  z-index: 1100;
  box-shadow: 0px 0px 0px 100vw rgba(0, 0, 0, 0.5);
}
.smart-remaining-filters .filter-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px;
}
.smart-remaining-filters .filter-body {
  padding: 15px;
  height: calc(100vh - 130px);
  overflow: hidden auto;
}
.smart-remaining-filters .filter-body .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0.5rem;
}
.smart-remaining-filters .filter-body .remaining-filter-list .item:last-child {
  border-bottom: 0;
}
.smart-remaining-filters .filter-footer {
  border-top: 1px solid rgba(14, 13, 13, 0.2);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 991.98px) {
  .smart-remaining-filters {
    width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
    top: unset;
    bottom: 0;
    border-radius: 15px 15px 0px 0px;
  }
  .smart-remaining-filters .filter-body {
    height: auto;
    max-height: calc(100vh - 250px);
  }
  .smart-remaining-filters .filter-body .item {
    padding: 1rem 0rem;
  }
  .smart-remaining-filters .filter-body .item:first-child {
    padding-top: 0.5rem;
  }
  .smart-remaining-filters .filter-body .item:last-child {
    padding-bottom: 0.5rem;
  }
  .smart-remaining-filters .filter-body .smart-filter-list .item:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .smart-remaining-filters .filter-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
}

.listing-section {
  display: flex;
}
.listing-section .map-column {
  overflow: hidden;
}
.listing-section .map-column iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .listing-section .map-column iframe {
    height: calc(100vh - 139px) !important;
  }
}
@media (max-width: 575.98px) {
  .listing-section .map-column iframe {
    height: calc(100vh - 190px) !important;
    padding: 10px 12px;
  }
}
.listing-section.split-view .map-column {
  width: 50%;
}
@media (max-width: 991.98px) {
  .listing-section.split-view .map-column {
    width: 100%;
  }
}
.listing-section.split-view .list-column {
  width: 50%;
}
@media (max-width: 991.98px) {
  .listing-section.split-view .list-column {
    width: 0%;
    display: none;
  }
}
.listing-section .right-section {
  box-shadow: -4px 0px 14px 0px rgba(0, 0, 0, 0.2);
  height: calc(100vh - 141px);
  overflow-x: hidden;
  padding: 20px 24px;
}
@media (max-width: 1399.98px) {
  .listing-section .right-section {
    height: calc(100vh - 125px) !important;
  }
}
@media (max-width: 1199.98px) {
  .listing-section .right-section {
    height: calc(100vh - 134px) !important;
  }
}
@media (max-width: 991.98px) {
  .listing-section .right-section {
    height: calc(100vh - 132px) !important;
  }
}
@media (max-width: 575.98px) {
  .listing-section .right-section {
    height: calc(100vh - 125px) !important;
    padding: 10px 12px;
  }
}
.listing-section .right-section.h-100 {
  height: 100% !important;
}
.listing-section .right-section .property-list .property {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 25px;
  position: relative;
}
.listing-section .right-section .property-list .property .image-section {
  position: relative;
}
.listing-section .right-section .property-list .property .image-section .slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper {
  padding: 0;
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .swiper-slide {
  width: 100% !important;
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .inner-slider-arrows {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .inner-slider-arrows .pagination {
  position: absolute;
  z-index: 100;
  bottom: 0px;
  padding: 10px;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .inner-slider-arrows .pagination .swiper-pagination-bullet {
  background-color: rgb(213, 213, 213);
  opacity: 1;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .inner-slider-arrows .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(255, 255, 255);
  opacity: 1;
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .inner-slider-arrows .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  height: 30px;
  width: 30px;
  border-radius: 12px;
  background-color: rgba(19, 19, 19, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .inner-slider-arrows .arrow img {
  width: 20px;
  height: auto;
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .inner-slider-arrows .innerHighDemandPrev {
  left: -30px;
  transition: 0.3s;
}
.listing-section .right-section .property-list .property .image-section .slider-image .swiper .inner-slider-arrows .innerHighDemandNext {
  right: -30px;
  transition: 0.3s;
}
.listing-section .right-section .property-list .property .image-section:hover .swiper .inner-slider-arrows .innerHighDemandPrev {
  left: 30px;
}
.listing-section .right-section .property-list .property .image-section:hover .swiper .inner-slider-arrows .innerHighDemandNext {
  right: 30px;
}
.listing-section .right-section .property-list .property .image-section .type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
}
.listing-section .right-section .property-list .property .image-section .type-badge.yellow {
  background-color: rgb(255, 244, 214);
}
.listing-section .right-section .property-list .property .image-section .type-badge.green {
  background-color: rgb(217, 247, 233);
}
.listing-section .right-section .property-list .property .image-section .type-badge.blue {
  background-color: rgb(214, 233, 255);
}
.listing-section .right-section .property-list .property .image-section .type-badge.blue-dark {
  background-color: rgb(0, 50, 157);
  color: rgb(255, 255, 255);
  padding: 4px 12px;
}
.listing-section .right-section .property-list .property .image-section .type-badge.purple {
  background-color: rgb(242, 227, 249);
}
.listing-section .right-section .property-list .property .image-section .type-badge.white {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.listing-section .right-section .property-list .property .image-section .type-badge img {
  margin-left: 5px;
}
.listing-section .right-section .property-list .property .image-section .like-unlike {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.listing-section .right-section .property-list .property .image-section .like-unlike img {
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.36));
}
.listing-section .right-section .property-list .property .content-section {
  padding: 10px;
  background-color: rgb(255, 255, 255);
}
.listing-section .right-section .property-list .property .content-section .quick-action-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}
.listing-section .right-section .property-list .property .content-section .quick-action-btns .btn {
  justify-content: center;
  font-size: 14px;
  padding: 6px;
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 1399.98px) {
  .listing-section .right-section .property-list .property .content-section .quick-action-btns .btn {
    font-size: 12px;
  }
}
.listing-section .right-section .property-list .property.last-slide {
  background: rgb(0, 50, 157);
  transition: 0.2s;
  height: auto;
  padding: 50px 30px 30px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.listing-section .right-section .property-list .property.last-slide a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.listing-section .right-section .property-list .property.last-slide:hover {
  background-color: rgb(0, 121, 255);
}
.listing-section.list-view .right-section {
  height: unset;
}

.sticky-switch {
  position: fixed;
  z-index: 10;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgb(0, 0, 0);
  border-radius: 100px;
  color: rgb(0, 50, 157);
  background-color: rgb(0, 0, 0);
  cursor: pointer;
}
.sticky-switch p {
  padding: 0.5rem 1.7rem;
  margin-bottom: 0;
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .property-detail-body .header-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 575.98px) {
  .property-detail-body .responsive-reqest-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0.75rem;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3);
  }
  .property-detail-body .responsive-reqest-btn .btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5px;
  }
  .property-detail-body .responsive-reqest-btn .btn span {
    font-size: 14px;
    font-weight: 600;
  }
  .property-detail-body .responsive-reqest-btn .btn p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
  }
}
@media (max-width: 575.98px) {
  .property-detail-body .footer-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 991.98px) {
  .images-gallary-section.property-detail .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .images-gallary-section.property-detail .container-fluid .card-multi-slider .slider-section .swiper-slide {
    border-radius: 0;
  }
}

.top-quick-link-section {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  top: 0;
  z-index: 99;
}
@media (max-width: 575.98px) {
  .top-quick-link-section {
    padding: 20px;
  }
}
.top-quick-link-section .left-section {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .top-quick-link-section .left-section {
    width: 100%;
    justify-content: space-between;
  }
}
.top-quick-link-section .left-section .back-arrow {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: 50px;
}
.top-quick-link-section .left-section .back-arrow p {
  margin-bottom: 0;
  font-weight: 600;
  color: rgb(0, 50, 157);
  margin-left: 5px;
}
@media (max-width: 575.98px) {
  .top-quick-link-section .left-section .quick-links {
    margin-left: 0;
  }
}
.top-quick-link-section .left-section .quick-links ul {
  display: flex;
  margin-bottom: 0px;
  padding: 0;
}
.top-quick-link-section .left-section .quick-links ul li {
  list-style-type: none;
  white-space: nowrap;
}
.top-quick-link-section .left-section .quick-links ul li:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 575.98px) {
  .top-quick-link-section .left-section .quick-links ul li:not(:last-child) {
    margin-right: 1rem;
  }
}
.top-quick-link-section .left-section .quick-links ul li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
.top-quick-link-section .left-section .quick-links ul li.active a {
  color: rgb(0, 121, 255);
}
.top-quick-link-section .right-section .btn-action {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
@media (max-width: 575.98px) {
  .top-quick-link-section .right-section .btn-action {
    width: 46px;
    height: 46px;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(83, 83, 100, 0.2);
    padding: 0 !important;
  }
  .top-quick-link-section .right-section .btn-action img {
    margin: 0 !important;
  }
}
@media (max-width: 991.98px) {
  .top-quick-link-section .right-section {
    margin-top: 1rem;
    width: 100%;
    justify-content: flex-end;
  }
}
@media (max-width: 575.98px) {
  .top-quick-link-section .right-section p {
    display: none;
  }
  .top-quick-link-section .right-section img {
    margin-right: 0;
  }
}

.right-sidebar-reponsive .sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  visibility: hidden;
}
.right-sidebar-reponsive .sidebar .sidebar-inner {
  width: 80%;
  transform: translateX(200%);
  background-color: rgb(255, 255, 255);
  height: 100%;
  margin-left: auto;
  transition: 0.3s;
  padding: 0 1rem;
}
.right-sidebar-reponsive .sidebar .sidebar-inner .top {
  padding: 1rem 0;
  display: flex;
  justify-content: end;
  border-bottom: 1px solid rgba(83, 83, 100, 0.5);
}
.right-sidebar-reponsive .sidebar .sidebar-inner .middle {
  padding: 1rem 0;
}
.right-sidebar-reponsive .sidebar .sidebar-inner .middle .list {
  padding-left: 0;
  margin-bottom: 0;
}
.right-sidebar-reponsive .sidebar .sidebar-inner .middle .list:not(:last-child) {
  border-bottom: 1px solid rgba(83, 83, 100, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.right-sidebar-reponsive .sidebar .sidebar-inner .middle .list li {
  list-style: none;
}
.right-sidebar-reponsive .sidebar .sidebar-inner .middle .list li:not(:last-child) {
  margin-bottom: 5px;
}
.right-sidebar-reponsive .sidebar .sidebar-inner .middle .list li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.right-sidebar-reponsive .sidebar.active {
  visibility: visible;
}
.right-sidebar-reponsive .sidebar.active .sidebar-inner {
  transform: translateX(0);
}

.sticky-top-links {
  height: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10020;
  border-bottom: 1px solid rgba(83, 83, 100, 0.5);
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-120%);
  transition: 0.3s;
}
.sticky-top-links.active {
  transform: translateY(0);
}

.event-wrapper {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1rem;
  grid-auto-flow: dense;
}
@media (max-width: 991.98px) {
  .event-wrapper {
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: 1fr;
    grid-gap: 2;
    grid-auto-flow: dense;
  }
}
@media (max-width: 767.98px) {
  .event-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }
}
@media (max-width: 767.98px) {
  .event-wrapper {
    gap: 1rem;
  }
}
.event-wrapper .event-item {
  width: 100%;
  height: 100%;
  position: relative;
  background: #D9D9D9;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.event-wrapper .event-item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.event-wrapper .event-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transition: all 400ms ease-in;
  transform: scale(1);
}
.event-wrapper .event-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transition: all 400ms ease-in;
  transform: scale(1);
}
.event-wrapper .event-item .plan-and-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
  padding: 40px 20px 20px;
}
.event-wrapper .event-item .plan-and-view .item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgb(83, 83, 100);
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}
.event-wrapper .event-item .plan-and-view .item p {
  margin-bottom: 0;
  margin-left: 10px;
}
.event-wrapper .event-item .plan-and-view .item:not(:last-child) {
  margin-right: 10px;
}
.event-wrapper .event-item .more-images {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.event-wrapper .event-item .more-images .number {
  color: rgb(255, 255, 255);
  margin-bottom: 0;
}
.event-wrapper .event-container.w-1 {
  grid-column: span 1;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-1 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-2 {
  grid-column: span 2;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-2 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-3 {
  grid-column: span 3;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-3 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-4 {
  grid-column: span 4;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-4 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-5 {
  grid-column: span 5;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-5 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-6 {
  grid-column: span 6;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-6 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-7 {
  grid-column: span 7;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-7 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-8 {
  grid-column: span 8;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-8 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-9 {
  grid-column: span 9;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-9 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-10 {
  grid-column: span 10;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-10 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-11 {
  grid-column: span 11;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-11 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.w-12 {
  grid-column: span 12;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.w-12 {
    grid-column: span 1;
  }
}
.event-wrapper .event-container.h-1 {
  grid-row: span 1;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-1 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-2 {
  grid-row: span 2;
  max-height: 265px;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-2 {
    grid-row: span 1;
  }
}
@media (max-width: 767.98px) {
  .event-wrapper .event-container.h-2 {
    max-height: unset;
  }
}
.event-wrapper .event-container.h-3 {
  grid-row: span 3;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-3 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-4 {
  grid-row: span 4;
  max-height: calc(530px + 1rem);
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-4 {
    grid-row: span 1;
    max-height: 265px;
  }
}
@media (max-width: 767.98px) {
  .event-wrapper .event-container.h-4 {
    max-height: unset;
  }
}
.event-wrapper .event-container.h-5 {
  grid-row: span 5;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-5 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-6 {
  grid-row: span 6;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-6 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-7 {
  grid-row: span 7;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-7 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-8 {
  grid-row: span 8;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-8 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-9 {
  grid-row: span 9;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-9 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-10 {
  grid-row: span 10;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-10 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-11 {
  grid-row: span 11;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-11 {
    grid-row: span 1;
  }
}
.event-wrapper .event-container.h-12 {
  grid-row: span 12;
}
@media (max-width: 991.98px) {
  .event-wrapper .event-container.h-12 {
    grid-row: span 1;
  }
}

.plan-and-view.responsive {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
  padding: 40px 10px 20px;
}
.plan-and-view.responsive .item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgb(83, 83, 100);
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}
.plan-and-view.responsive .item p {
  margin-bottom: 0;
  margin-left: 5px;
  font-size: 12px;
}
.plan-and-view.responsive .item img {
  width: 20px;
}
.plan-and-view.responsive .item:not(:last-child) {
  margin-right: 5px;
}

.main-content-section {
  margin-top: 20px;
}
.main-content-section .section-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0);
  border: 1px solid rgba(83, 83, 100, 0.5);
}
@media (max-width: 575.98px) {
  .main-content-section .section-card {
    padding: 1rem;
  }
}
.main-content-section .section-card:not(:last-child) {
  margin-bottom: 20px;
}
.main-content-section .section-card .seller-detail .active-dot {
  height: 10px;
  width: 10px;
  background-color: rgb(8, 140, 41);
  border-radius: 50%;
}
.main-content-section .section-card .seller-detail .property-quick-detail {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.main-content-section .section-card .seller-detail .property-quick-detail .detail h6 {
  margin-bottom: 5px;
}
.main-content-section .section-card .seller-detail .property-quick-detail .detail p {
  margin-bottom: 0;
  color: rgb(83, 83, 100);
}
.main-content-section .section-card .seller-detail .property-quick-detail .detail:not(:last-child) {
  margin-right: 40px;
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .seller-detail .property-quick-detail {
    justify-content: space-between;
  }
  .main-content-section .section-card .seller-detail .property-quick-detail .detail:not(:last-child) {
    margin-right: 10px;
  }
}
.main-content-section .section-card .seller-detail .responsive-details h6 {
  font-size: 20px;
}
.main-content-section .section-card .seller-detail .responsive-details .details {
  display: flex;
  margin-bottom: 8px;
}
.main-content-section .section-card .seller-detail .responsive-details .details p {
  margin-bottom: 0;
  font-weight: 600;
}
.main-content-section .section-card .seller-detail .responsive-details .details span {
  position: relative;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.main-content-section .section-card .seller-detail .responsive-details .details span::after {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main-content-section .section-card .seller-detail .seller-profile {
  border-left: 1px solid rgba(83, 83, 100, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767.98px) {
  .main-content-section .section-card .seller-detail .seller-profile {
    border-left: none;
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .seller-detail .seller-profile {
    flex-direction: row;
    justify-content: center;
  }
}
.main-content-section .section-card .seller-detail .seller-profile .imgage .user {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-content-section .section-card .seller-detail .seller-profile .imgage .verified {
  margin-top: -10px;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  padding: 0px 5px;
  font-size: 12px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
.main-content-section .section-card .seller-detail .seller-profile .imgage .verified .badge {
  padding: 0;
}
.main-content-section .section-card .seller-detail .seller-profile .imgage .verified .badge img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
}
.main-content-section .section-card .seller-detail .seller-profile .imgage .verified p {
  margin-bottom: 0px;
  font-weight: 600;
}
.main-content-section .section-card .seller-detail .seller-profile .name h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  color: rgb(83, 83, 100);
}
.main-content-section .section-card .key-highlights .box-list .box {
  background-color: rgba(83, 83, 100, 0.14);
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 10px;
  height: 100%;
}
.main-content-section .section-card .key-highlights .box-list .box p {
  margin-bottom: 6px;
  font-weight: 600;
}
.main-content-section .section-card .key-highlights .box-list .box span {
  color: rgb(83, 83, 100);
}
.main-content-section .section-card .key-highlights .box-list .box.more {
  background-color: rgb(0, 121, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.main-content-section .section-card .key-highlights .box-list .box.more p {
  margin-bottom: 0;
  color: rgb(255, 255, 255);
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .key-highlights .box-list .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .main-content-section .section-card .key-highlights .box-list .col-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .main-content-section .section-card .key-highlights .box-list .box {
    background-color: transparent;
    padding: 0;
  }
  .main-content-section .section-card .key-highlights .box-list .box.more {
    padding: 12px;
    border-radius: 8px;
  }
  .main-content-section .section-card .key-highlights .box-list .box p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }
  .main-content-section .section-card .key-highlights .box-list .box span {
    font-size: 12px;
  }
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .key-information .custom-row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .main-content-section .section-card .key-information .custom-row .custom-col {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.main-content-section .section-card .key-information .box {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0);
  border: 1px solid rgba(83, 83, 100, 0.5);
  height: 100%;
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .key-information .box {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .main-content-section .section-card .key-information .box span {
    font-size: 14px;
    line-height: 20px;
    display: block;
  }
  .main-content-section .section-card .key-information .box p {
    font-size: 12px;
  }
}
.main-content-section .section-card .explore-the-neighbor nav .nav-tabs {
  flex-wrap: nowrap;
  border: 0;
}
.main-content-section .section-card .explore-the-neighbor nav .nav-tabs .nav-link {
  width: 100%;
  color: rgb(0, 0, 0);
  border: 0;
  border-bottom: 1px solid rgba(83, 83, 100, 0.5);
  padding: 10px 10px 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .explore-the-neighbor nav .nav-tabs .nav-link {
    flex-direction: column;
  }
}
.main-content-section .section-card .explore-the-neighbor nav .nav-tabs .nav-link.active {
  color: rgb(0, 121, 255);
  position: relative;
}
.main-content-section .section-card .explore-the-neighbor nav .nav-tabs .nav-link.active::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: rgb(0, 121, 255);
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .school-list .school {
  display: flex;
  align-items: center;
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .school-list .school:not(:last-child) {
  border-bottom: 1px solid rgba(83, 83, 100, 0.5);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .school-list .school:not(:last-child) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .places-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 0;
  margin: 0;
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .places-list li.nav-item .nav-link {
  border: 1px solid rgba(83, 83, 100, 0.5);
  padding: 5px 20px;
  border-radius: 20px;
  color: rgb(0, 0, 0);
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .places-list li.nav-item .nav-link.active {
  background-color: rgb(0, 121, 255);
  border-color: rgb(0, 121, 255);
  color: rgb(255, 255, 255);
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .places-list .nav-pills {
    flex-wrap: nowrap;
    overflow-y: hidden;
    padding-bottom: 8px;
  }
  .main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .places-list .nav-pills li {
    white-space: nowrap;
  }
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .detail-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0);
  border: 1px solid rgba(83, 83, 100, 0.5);
  height: 100%;
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .detail-card {
    padding: 15px;
  }
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .detail-card label {
  color: rgb(0, 0, 0);
  width: 100%;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .detail-card p {
  display: inline-block;
  position: relative;
  padding-right: 1rem;
  color: rgb(83, 83, 100);
  margin-bottom: 0;
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .detail-card p::after {
  content: "•";
  position: absolute;
  right: 2px;
  top: 0;
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .detail-card p:last-child {
  padding-right: 0;
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .detail-card p:last-child::after {
  display: none;
}
.main-content-section .section-card .explore-the-neighbor .tab-content .tab-pane .detail-card p.no-separator::after {
  display: none;
}
.main-content-section .section-card .payment-plan .box {
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 121, 255, 0.1);
  display: flex;
  align-items: center;
  height: 100%;
}
.main-content-section .section-card .payment-plan .box .left h4 {
  color: rgb(83, 83, 100);
}
.main-content-section .section-card .payment-plan .box .right {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgb(83, 83, 100);
}
.main-content-section .section-card .payment-plan .box .right span {
  color: rgb(0, 121, 255);
  font-weight: 600;
}
.main-content-section .section-card .payment-plan .box .right p {
  margin-bottom: 0;
  margin-top: 5px;
}
.main-content-section .section-card .project-timeline .box-list {
  position: relative;
}
.main-content-section .section-card .project-timeline .box-list .box-main {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  position: relative;
}
.main-content-section .section-card .project-timeline .box-list .box-main .box {
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 123, 255, 0.1);
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .project-timeline .box-list .box-main .box {
    margin-left: 10px;
  }
}
.main-content-section .section-card .project-timeline .box-list .box-main .box .title {
  font-weight: 600;
}
.main-content-section .section-card .project-timeline .box-list .box-main .box .custom-progress {
  height: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  position: relative;
  margin-top: 10px;
}
.main-content-section .section-card .project-timeline .box-list .box-main .box .custom-progress .progress-bar {
  background-color: rgb(0, 121, 255);
  height: 10px;
  border-radius: 10px;
  width: 60%;
}
.main-content-section .section-card .project-timeline .box-list .line {
  position: absolute;
  height: 2px;
  transform-origin: top left;
  z-index: -1;
}
.main-content-section .section-card .project-timeline .box-list .line.full {
  background-color: rgba(0, 0, 0, 0.2);
}
.main-content-section .section-card .project-timeline .box-list .line.done {
  background-color: #007bff;
}
@media (max-width: 575.98px) {
  .main-content-section .section-card .accordion.property-details .inner-list li {
    font-size: 14px;
  }
}
.main-content-section .section-card .verified-agent-badge {
  background-color: rgb(0, 50, 157);
  color: rgb(255, 255, 255);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(0, 121, 255, 0.1);
}
@media (max-width: 1199.98px) {
  .faq-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .faq-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.property-details .accordion-item {
  border: 0;
  border-bottom: 1px solid rgb(83, 83, 100);
  border-radius: 0;
}
.property-details .accordion-item .accordion-header {
  line-height: normal;
}
.property-details .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
  color: rgb(0, 0, 0);
}
.property-details .accordion-item .accordion-body {
  padding-left: 2rem;
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .property-details .accordion-item .accordion-body {
    padding-left: 1rem;
  }
}

.request-tour {
  border: 1px solid rgb(83, 83, 100);
  display: flex;
  border-radius: 12px;
  padding: 2px;
}
.request-tour .nav-item {
  flex: 1;
}
.request-tour .nav-item .nav-link {
  border: 1px solid transparent;
  width: 100%;
  background-color: transparent;
  padding: 0.8rem;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  box-shadow: none;
  margin: 0;
}
.request-tour .nav-item .nav-link.active {
  color: rgb(0, 121, 255);
  border-color: rgb(0, 121, 255);
  background-color: rgba(0, 121, 255, 0.1);
}

.date-selection .section-card {
  text-align: center;
  width: 100%;
  background: rgb(255, 255, 255);
}
.date-selection .section-card p,
.date-selection .section-card h3 {
  margin: 0;
}
.date-selection .section-card.active {
  border-color: rgb(0, 121, 255);
  background-color: rgba(0, 121, 255, 0.1);
}
.date-selection .swiper-button-next,
.date-selection .swiper-button-prev {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(83, 83, 100, 0.5);
  width: 28px;
  height: 28px;
  border-radius: 50px;
  color: rgb(0, 0, 0);
}
.date-selection .swiper-button-next::after,
.date-selection .swiper-button-prev::after {
  font-size: 1rem;
}

.section-divider {
  text-align: center;
  margin: 1rem 0;
  position: relative;
}
.section-divider p {
  margin: 0;
  padding: 0 1rem;
  background-color: rgb(255, 255, 255);
  width: auto;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.section-divider::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgb(83, 83, 100);
}

.nearby-apartment-section {
  background-color: rgba(83, 83, 100, 0.1);
  padding: 50px 0px;
}
@media (max-width: 575.98px) {
  .nearby-apartment-section {
    padding: 20px 0px;
  }
}

.agent-company-card .card {
  padding: 0.5rem;
  border: 0;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.agent-company-card .card .card-image {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .agent-company-card .card .card-image {
    max-height: 250px;
  }
}
.agent-company-card .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.agent-company-card .card .card-body {
  padding: 0;
}
.agent-company-card .card .card-body p.card-title {
  color: rgb(0, 0, 0);
}
.agent-company-card .card .card-body p.card-text {
  margin-bottom: 0.5rem;
}
.agent-company-card .card .agent-company {
  position: absolute;
  inset: 0 0 auto auto;
}
.agent-company-card .card .agent-company img {
  width: 70px;
}
@media (max-width: 575.98px) {
  .agent-company-card .card {
    padding-top: 0;
  }
  .agent-company-card .card .card-image-main {
    padding-left: 0;
    padding-right: 0;
  }
  .agent-company-card .card .card-image-main .card-image {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

.badge {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  border-radius: 5px;
}
.badge img {
  width: 20px;
  margin-right: 0.2rem;
}
.badge.bg-primary {
  background-color: rgba(0, 121, 255, 0.1) !important;
  color: rgb(0, 121, 255);
}
.badge.bg-secondary {
  background-color: rgba(0, 50, 157, 0.1) !important;
  color: rgb(0, 50, 157);
}
.badge.bg-gray {
  background-color: rgba(83, 83, 100, 0.1) !important;
  color: rgb(83, 83, 100);
}
.badge.bg-secondary-dark {
  background-color: rgb(0, 50, 157) !important;
  color: rgb(255, 255, 255);
}
.badge.bg-secondary-dark img {
  filter: brightness(0) invert(1);
}

.agent-profile-page .left-section {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .agent-profile-page .left-section {
    width: 100%;
    justify-content: space;
  }
}
.agent-profile-page .left-section .back-arrow {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: 50px;
}
.agent-profile-page .left-section .back-arrow p {
  margin-bottom: 0;
  font-weight: 600;
  color: rgb(0, 50, 157);
  margin-left: 5px;
}
.agent-profile-page .left-section .back-arrow.dark img {
  filter: grayscale(1);
}
.agent-profile-page .left-section .back-arrow.dark p {
  color: rgb(0, 0, 0);
}
.agent-profile-page .profile-section-card {
  background-color: rgba(0, 121, 255, 0.08);
  padding: 1rem;
  border-radius: 12px;
}
.agent-profile-page .profile-section-card .card {
  background: transparent;
  border: none;
  border-radius: 0;
}
.agent-profile-page .profile-section-card .card .profile-pic {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
}
.agent-profile-page .profile-section-card .card .profile-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.agent-profile-page .profile-section-card .card .company-pic {
  width: 250px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.agent-profile-page .profile-section-card .card .company-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.agent-profile-page .profile-section-card hr {
  border-color: rgb(0, 121, 255);
}
.agent-profile-page .profile-section-card .profile-company-image {
  width: 120px;
  margin-bottom: 1rem;
}
.agent-profile-page .star-rating .checked {
  color: #FFCC00;
}
.agent-profile-page .box-list .box {
  background-color: rgba(0, 50, 157, 0.08);
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 10px;
  height: 100%;
}
.agent-profile-page .box-list .box p {
  margin-bottom: 6px;
  font-weight: 600;
}
.agent-profile-page .box-list .box span {
  color: rgb(83, 83, 100);
  text-align: center;
}
.agent-profile-page .box-list .box.more {
  background-color: rgb(0, 121, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.agent-profile-page .box-list .box.more p {
  margin-bottom: 0;
  color: rgb(255, 255, 255);
}
@media (max-width: 575.98px) {
  .agent-profile-page .box-list {
    margin-left: -5px;
    margin-right: -5px;
  }
  .agent-profile-page .box-list .custom-col {
    padding-left: 5px;
    padding-right: 5px;
  }
  .agent-profile-page .box-list .custom-col .box {
    padding: 12px 10px;
  }
}
.agent-profile-page .property-table .table.table-bordered {
  border-color: #E7E7E9;
}
.agent-profile-page .property-table .table thead.table-light tr {
  border-color: #E7E7E9;
}
.agent-profile-page .property-table .table thead.table-light tr th {
  background-color: rgba(0, 50, 157, 0.08);
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
@media (max-width: 767.98px) {
  .agent-profile-page .property-table .table tr,
  .agent-profile-page .property-table .table td {
    white-space: nowrap;
  }
}
.agent-profile-page .property-card {
  border: 0;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border-radius: 10px;
}
.agent-profile-page .property-card .property-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.agent-profile-page .property-card .property-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .agent-profile-page .property-card .border-top-lg-none {
    border: 0 !important;
  }
}

.custom-pagination-list {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 575.98px) {
  .custom-pagination-list {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.custom-pagination-list .page-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.custom-pagination-list .page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(83, 83, 100, 0.5);
  border-radius: 5px;
  margin: 10px;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .custom-pagination-list .page {
    margin: 5px;
    height: 30px;
    width: 30px;
    border-radius: 3px;
    font-size: 14px;
  }
}
.custom-pagination-list .page.active {
  border-color: rgb(0, 121, 255);
  background-color: rgba(0, 121, 255, 0.1);
}

.custom-switch {
  border: 1px solid rgba(83, 83, 100, 0.5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 2px;
}
.custom-switch p {
  margin-bottom: 0;
  padding: 8px 20px;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255);
}
.custom-switch p.active {
  border: 1px solid rgb(0, 121, 255);
  background: rgba(0, 121, 255, 0.1);
  border-radius: 8px;
}

.form-field .btn-outline-white {
  border: 1px solid rgb(255, 255, 255) !important;
  color: rgb(255, 255, 255) !important;
  background-color: rgba(255, 255, 255, 0.4);
}
.form-field .btn-check + .btn-outline-white:hover, .form-field .btn-check + .btn-outline-white:focus, .form-field .btn-check + .btn-outline-white:active {
  background-color: white !important;
  border-color: rgb(255, 255, 255) !important;
  color: rgb(0, 121, 255) !important;
}
.form-field .btn-check + .btn-outline-white:hover img, .form-field .btn-check + .btn-outline-white:focus img, .form-field .btn-check + .btn-outline-white:active img {
  filter: brightness(0) invert(1);
}
.form-field .btn-check:checked + .btn-outline-white,
.form-field .btn-outline-white.active,
.form-field .btn-outline-white.show,
.form-field .btn-outline-white:first-child:active,
.form-field :not(.btn-check) + .btn-outline-white:active {
  background-color: white !important;
  border-color: rgb(255, 255, 255) !important;
  color: rgb(0, 121, 255) !important;
}
.form-field .btn-check:checked + .btn-outline-white img,
.form-field .btn-outline-white.active img,
.form-field .btn-outline-white.show img,
.form-field .btn-outline-white:first-child:active img,
.form-field :not(.btn-check) + .btn-outline-white:active img {
  filter: brightness(0) invert(1);
}
.form-field .btn-gray {
  border: 1px solid rgb(83, 83, 100) !important;
  color: rgb(0, 0, 0) !important;
  background-color: rgba(83, 83, 100, 0.1);
}
.form-field .btn-check + .btn-gray:hover, .form-field .btn-check + .btn-gray:focus, .form-field .btn-check + .btn-gray:active {
  background-color: rgba(0, 121, 255, 0.1) !important;
  border-color: rgb(0, 121, 255) !important;
  color: rgb(0, 121, 255) !important;
}
.form-field .btn-check + .btn-gray:hover img, .form-field .btn-check + .btn-gray:focus img, .form-field .btn-check + .btn-gray:active img {
  filter: brightness(0) invert(1);
}
.form-field .btn-check:checked + .btn-gray,
.form-field .btn-gray.active,
.form-field .btn-gray.show,
.form-field .btn-gray:first-child:active,
.form-field :not(.btn-check) + .btn-gray:active {
  background-color: rgba(0, 121, 255, 0.1) !important;
  border-color: rgb(0, 121, 255) !important;
  color: rgb(0, 121, 255) !important;
}
.form-field .btn-check:checked + .btn-gray img,
.form-field .btn-gray.active img,
.form-field .btn-gray.show img,
.form-field .btn-gray:first-child:active img,
.form-field :not(.btn-check) + .btn-gray:active img {
  filter: brightness(0) invert(1);
}

.new-project-swiper {
  height: 100%;
}

.content-card {
  background: rgb(255, 255, 255);
  padding: 1rem;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.beds-baths-dropdown {
  position: relative;
}
.beds-baths-dropdown .beds-baths-hidden {
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1;
}
.beds-baths-dropdown .beds-baths-hidden .top-section {
  padding: 20px;
  border-bottom: 1px solid rgba(83, 83, 100, 0.5);
}
.beds-baths-dropdown .beds-baths-hidden .top-section .item-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.beds-baths-dropdown .beds-baths-hidden .top-section .item-list .item {
  background: rgba(83, 83, 100, 0.1);
  border-radius: 10px;
  border: 1px solid rgb(83, 83, 100);
  min-width: 44px;
  min-height: 44px;
  padding: 10px 16px;
  cursor: pointer;
}
.beds-baths-dropdown .beds-baths-hidden .top-section .item-list .item.active {
  border: 1px solid rgb(0, 121, 255);
  background-color: rgba(0, 121, 255, 0.1);
}
.beds-baths-dropdown .beds-baths-hidden .top-section .item-list .item p {
  margin-bottom: 0px;
}
.beds-baths-dropdown .beds-baths-hidden .bottom-section {
  padding: 20px;
}
.beds-baths-dropdown .beds-baths-hidden .bottom-section button {
  color: rgb(0, 50, 157);
  font-weight: 600;
  margin-bottom: 0;
  display: inline-block;
  text-decoration: none;
  padding: 0;
}

.price-dropdown {
  position: relative;
}
.price-dropdown .price-hidden {
  width: 500px;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.12);
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1;
  padding: 20px;
}
.price-dropdown .price-hidden #price-range-slider.noUi-target {
  background-color: rgba(0, 121, 255, 0.1);
  height: 0.5rem;
  border: none;
  border-radius: 10px;
}
.price-dropdown .price-hidden #price-range-slider .noUi-base .noUi-connect {
  background-color: rgb(0, 121, 255);
}
.price-dropdown .price-hidden #price-range-slider .noUi-base .noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgb(0, 121, 255);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
}
.price-dropdown .price-hidden #price-range-slider .noUi-base .noUi-handle::after, .price-dropdown .price-hidden #price-range-slider .noUi-base .noUi-handle::before {
  display: none;
}

@media (max-width: 575.98px) {
  .new-projects .top-filter-section * {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .new-projects .top-filter-section * {
    font-size: 14px;
  }
}
.new-projects .top-filter-section .search-input {
  width: auto;
  min-width: 400px;
}
@media screen and (max-width: 1600px) {
  .new-projects .top-filter-section .search-input {
    min-width: 320px;
  }
}
@media (max-width: 1399.98px) {
  .new-projects .top-filter-section .search-input {
    min-width: unset;
  }
}
.new-projects .top-filter-section .search-input .form-control {
  padding: 9px;
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  .new-projects .w-sm-100 {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .new-projects .w-lg-up-100 {
    width: 100%;
  }
}

.map-section .card {
  position: sticky;
  top: 1rem;
  height: calc(100vh - 2rem);
}

@media (max-width: 575.98px) {
  .cities-list .btn {
    padding: 5px 10px;
  }
}

.projects-by-developers-section .list .item {
  padding: 16px;
  border-radius: 10px;
  height: 100%;
  background-color: rgba(0, 50, 157, 0.08);
  display: flex;
  align-items: center;
}
.projects-by-developers-section .list .item p {
  margin-bottom: 0;
  color: rgb(83, 83, 100);
}

/************************************ Header Section ************************************/
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header-section .nav-quick-links {
  display: flex;
  gap: 36px;
  justify-content: flex-end;
  width: 100%;
  padding-right: 4.6rem;
}
.header-section .nav-quick-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-section .nav-quick-links a:hover, .header-section .nav-quick-links a.active {
  color: rgb(0, 50, 157);
}
.header-section .navbar-nav .nav-link {
  color: rgb(0, 0, 0);
  padding-left: 0;
  padding-right: 0;
}
.header-section .navbar-nav .nav-link.language-btn {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.5rem 1.8rem;
  border-radius: 100px;
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.header-section .navbar-nav .nav-link:hover, .header-section .navbar-nav .nav-link.active {
  color: rgb(0, 50, 157);
}
@media (min-width: 992px) {
  .header-section .navbar-nav .nav-item:not(:first-child) {
    padding-left: 1rem;
  }
}
.header-section .header-search {
  max-width: 295px;
  width: 100%;
}
.header-section .header-search .form-control {
  padding: 12px 16px;
}
@media (max-width: 575.98px) {
  .header-section .navbar .container-fluid {
    display: flex;
    justify-content: center;
  }
  .header-section .navbar .container-fluid .row {
    margin: auto;
    margin-left: -10px;
    margin-right: -10px;
  }
  .header-section .navbar .container-fluid .row .custom-col {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-section .navbar .responsive-header .burger {
    margin-left: 0;
    margin-left: 0;
  }
  .header-section .navbar-brand img {
    width: 150px;
  }
}

/************************************ Header Section ************************************/
/*********************************** Responsive Navigation - Starts  ***********************************/
.responsive-header ul {
  padding-left: 0;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.responsive-header .section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}
.responsive-header .language-btn {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.5rem 1.8rem;
  border-radius: 100px;
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.responsive-header .centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}
.responsive-header .brand {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(0, 121, 255);
  text-transform: uppercase;
  order: 1;
}
.responsive-header .navbar {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.responsive-header .navbar-left {
  display: flex;
  align-items: center;
  flex: 0 0 17%;
}
.responsive-header .navbar-center {
  display: flex;
}
.responsive-header .navbar-right {
  display: flex;
  flex: 0 0 17%;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.responsive-header .menu-header {
  display: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.responsive-header .menu-header.is-active {
  visibility: visible;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1101;
}
.responsive-header .menu-header.is-active > .menu-arrow {
  display: block;
}
.responsive-header .menu-header .menu-arrow {
  display: none;
  cursor: pointer;
  width: 3rem;
  height: 4rem;
  text-align: center;
}
.responsive-header .menu-header .menu-arrow > i {
  font-size: 1.5rem;
  line-height: 4rem;
  color: hsl(210, 21%, 6%);
  transition: all 0.25s ease;
}
.responsive-header .menu-header .menu-title {
  font-weight: 500;
  line-height: inherit;
  text-transform: capitalize;
  color: hsl(210, 21%, 6%);
}
.responsive-header .menu-inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.responsive-header .menu-item {
  display: inline-block;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .responsive-header .menu-item {
    display: block;
    line-height: 1;
    padding-inline: 0;
  }
}
.responsive-header .menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(0, 0, 0);
  text-transform: capitalize;
  transition: all 0.25s ease;
  text-decoration: none;
  padding: 1.5rem 1.25rem 1.5rem 0;
}
@media (max-width: 1399.98px) {
  .responsive-header .menu-link {
    padding: 1rem 1rem 1rem 0;
  }
}
.responsive-header .menu-link:hover {
  color: rgb(0, 50, 157);
}
.responsive-header .menu-link.active {
  color: rgb(0, 50, 157);
}
.responsive-header .menu-link > i {
  font-size: 1rem;
  margin-left: 0.25rem;
  transform: rotate(90deg);
  display: none;
}
@media (max-width: 1199px) {
  .responsive-header .menu-link > i {
    display: block;
    margin-left: 0.5rem;
    transform: rotate(0deg);
  }
}
@media (max-width: 1199px) {
  .responsive-header .menu-link {
    justify-content: space-between;
    line-height: normal;
    padding-inline: 1.25rem;
  }
}
.responsive-header .darkmode .menu-link {
  color: rgb(255, 255, 255);
}
.responsive-header .menu.is-active {
  transform: translate(0%);
}
.responsive-header .submenu {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease-in-out;
}
.responsive-header .submenu.is-active {
  display: block;
}
.responsive-header .submenu-inner {
  flex: 0 0 25%;
  padding: 0 1rem;
}
@media (max-width: 1199px) {
  .responsive-header .submenu-inner {
    flex: 0 0 100%;
    padding: 0;
  }
}
.responsive-header .submenu-title {
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  margin-bottom: 0.8rem;
  font-size: clamp(16px, 4vw, 18px);
  line-height: clamp(22px, 4vw, 24px);
  font-weight: 500;
  color: rgb(0, 121, 255);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.responsive-header .submenu-item {
  display: block;
  line-height: 1;
  margin: 0 auto;
}
.responsive-header .submenu-link {
  display: inline-block;
  padding: 0.65rem 0;
  text-transform: capitalize;
  color: rgb(0, 0, 0);
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  font-size: 1rem;
  line-height: normal;
}
.responsive-header .submenu-link:hover {
  color: rgb(0, 121, 255);
}
@media (max-width: 1199px) {
  .responsive-header .submenu-link {
    display: block;
  }
}
.responsive-header .submenu-image {
  display: block;
  width: 100%;
  height: auto;
  margin-block: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199px) {
  .responsive-header .submenu-image {
    margin-top: 0;
  }
}
@media (max-width: 1199px) {
  .responsive-header .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    box-shadow: none;
    transform: translateX(0%);
  }
}
.responsive-header .megamenu {
  left: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
@media (max-width: 1199px) {
  .responsive-header .megamenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 5rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
    box-shadow: none;
  }
}
@media (max-width: 992px) {
  .responsive-header .megamenu {
    padding-top: 4rem;
  }
}
.responsive-header .switch {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-right: 0.5rem;
}
.responsive-header .switch-light, .responsive-header .switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}
.responsive-header .switch-light {
  font-size: 1.3rem;
  visibility: visible;
  color: hsl(210, 21%, 6%);
}
.responsive-header .switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: rgb(255, 255, 255);
}
.responsive-header .overlay {
  position: fixed;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
}
.responsive-header .overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.responsive-header .burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 1.8rem;
  height: 1.8rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  border-radius: 4px;
}
@media (max-width: 1199px) {
  .responsive-header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.responsive-header .burger-line {
  position: absolute;
  display: block;
  left: 5%;
  width: 90%;
  height: 2px;
  opacity: 1;
  border-radius: 3px;
  background-color: rgb(0, 0, 0);
  transition: 0.5s;
}
.responsive-header .burger-line:nth-child(1) {
  top: 5px;
}
.responsive-header .burger-line:nth-child(2) {
  top: calc(50% - 1px);
  width: 70%;
}
.responsive-header .burger-line:nth-child(3) {
  bottom: 5px;
}
.responsive-header .burger.close .burger-line:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
  width: 70%;
  left: 4px;
}
.responsive-header .burger.close .burger-line:nth-child(2) {
  top: calc(50% - 1px);
  width: 0;
}
.responsive-header .burger.close .burger-line:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
  width: 70%;
  left: 4px;
}
@media (min-width: 1024px) {
  .responsive-header .menu-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  .responsive-header .navbar-left,
  .responsive-header .navbar-right {
    flex: 0 0 auto;
    align-items: center;
  }
  .responsive-header .navbar-center {
    align-items: center;
    height: 40px;
  }
  .responsive-header .menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 75%;
    height: calc(100% - 65px);
    z-index: 1100;
    overflow: hidden;
    transform: translate(-100%);
    background-color: rgb(255, 255, 255);
    transition: all 0.4s ease-in-out;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }
  .responsive-header .overlay {
    height: calc(100% - 65px);
  }
}
@media (max-width: 991px) {
  .responsive-header .overlay,
  .responsive-header .menu {
    height: calc(100% - 65px);
  }
}

@media (min-width: 992px) {
  .position-md-unset {
    position: unset;
  }
}
/*********************************** Responsive Navigation - Ends  ***********************************/
.clamp-text {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  /* Show 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-text.expanded {
  line-clamp: unset;
  -webkit-line-clamp: unset;
}

.tips-filter-section .top-quick-link-section {
  margin-bottom: 1rem;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
}
.tips-filter-section .top-quick-link-section .left-section {
  overflow: auto;
  margin-right: 10px;
}
.tips-filter-section .top-quick-link-section .left-section .quick-links {
  padding: 0 0 1rem;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .tips-filter-section .top-quick-link-section .left-section .quick-links ul li {
    border: 1px solid rgba(83, 83, 100, 0.5);
    padding: 5px 20px;
    border-radius: 20px;
    color: rgb(0, 0, 0);
    margin-right: 0.3rem;
    font-size: 14px;
  }
  .tips-filter-section .top-quick-link-section .left-section .quick-links ul li.active {
    border: 1px solid rgb(0, 121, 255);
    background-color: rgba(0, 121, 255, 0.1);
    color: rgb(0, 121, 255);
  }
}
.tips-filter-section .top-quick-link-section .right-section {
  width: auto;
}
.tips-filter-section .top-quick-link-section .right-section .search-filter {
  display: inline-flex;
  justify-content: end;
}
.tips-filter-section .top-quick-link-section .right-section .search-filter .other-filter-btn {
  display: flex;
  align-items: center;
  margin-left: 10px;
  gap: 5px;
  cursor: pointer;
}
.tips-filter-section .second-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 0;
  margin: 0;
}
.tips-filter-section .second-list li.nav-item .nav-link {
  border: 1px solid rgba(83, 83, 100, 0.5);
  padding: 5px 20px;
  border-radius: 20px;
  color: rgb(0, 0, 0);
}
.tips-filter-section .second-list li.nav-item .nav-link.active {
  border: 1px solid rgb(0, 121, 255);
  background-color: rgba(0, 121, 255, 0.1);
  color: rgb(0, 121, 255);
}
@media (max-width: 575.98px) {
  .tips-filter-section .second-list .nav-pills {
    padding-bottom: 8px;
  }
  .tips-filter-section .second-list .nav-pills li {
    white-space: nowrap;
  }
}

.editors-pics-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(83, 83, 100, 0.1);
}
@media (max-width: 1199.98px) {
  .editors-pics-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .editors-pics-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .editors-pics-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.quick-start-pdf-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(0, 121, 255, 0.1);
}
@media (max-width: 1199.98px) {
  .quick-start-pdf-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .quick-start-pdf-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .quick-start-pdf-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.quick-start-pdf-section .item {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  border: 1px solid rgb(0, 121, 255);
  cursor: pointer;
}
.quick-start-pdf-section .item p {
  margin-bottom: 0;
  margin-left: 10px;
}

.tips-guides-cta-section .left-section {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.tips-guides-cta-section .left-section .content-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(0, 121, 255);
  padding: 30px;
}
.tips-guides-cta-section .right-section {
  background-color: rgba(0, 121, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  margin-left: 1rem;
}
.tips-guides-cta-section .right-section h6 {
  margin-bottom: 20px;
}
.tips-guides-cta-section .right-section .email {
  margin-bottom: 30px;
}
.tips-guides-cta-section .right-section .email .form-control {
  padding: 15px;
}
@media (max-width: 991.98px) {
  .tips-guides-cta-section .left-section {
    border-radius: 10px 10px 0px 0px;
  }
  .tips-guides-cta-section .right-section {
    border-radius: 0px 0px 10px 10px;
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .tips-guides-cta-section .left-section {
    flex-direction: column;
  }
  .tips-guides-cta-section .left-section .content-section {
    padding: 20px;
  }
  .tips-guides-cta-section .left-section .image-section img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tips-guides-cta-section .right-section {
    padding: 20px;
  }
  .tips-guides-cta-section .right-section h6 {
    margin-bottom: 10px;
  }
  .tips-guides-cta-section .right-section .email {
    margin-bottom: 20px;
  }
}

.tips-guides-detail-main-section .left-section-sidebar {
  position: sticky;
  top: 70px;
}
.tips-guides-detail-main-section .step .title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.tips-guides-detail-main-section .step .title .number {
  height: 30px;
  width: 30px;
  min-height: 30px;
  min-width: 30px;
  max-height: 30px;
  max-width: 30px;
  border-radius: 50%;
  background-color: rgb(0, 121, 255);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-size: 14px;
  margin-right: 10px;
}
.tips-guides-detail-main-section .step .item {
  border: 1px solid rgb(0, 121, 255);
  background-color: rgba(0, 121, 255, 0.05);
  color: rgb(0, 121, 255);
  padding: 20px;
  border-radius: 15px;
}
.tips-guides-detail-main-section .step .item ul {
  margin-bottom: 0;
}
.tips-guides-detail-main-section .step .item ul li span {
  font-weight: 500;
}
.tips-guides-detail-main-section .step .item ul li:not(:last-child) {
  margin-bottom: 5px;
}
.tips-guides-detail-main-section .step .video {
  position: relative;
  cursor: pointer;
}
.tips-guides-detail-main-section .step .video img {
  border-radius: 1rem;
}
.tips-guides-detail-main-section .step .video .overlay {
  border-radius: 1rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  display: none;
}/*# sourceMappingURL=style.css.map */