.advertise-section .show-all {
  display: flex;
  align-items: center;
  gap: 10px;
}

.advertise-section .show-all h2 {
  font-weight: 700;
  font-size: 34px;
}

.advertise-section .show-all span {
  color: #000000a6;
  font-weight: 700;
  font-size: 30px;
}

.advertise-section p {
  color: #44494f9c;
  line-height: 2;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin: 10px;
}

.dropdown-btn {
  background-color: white;
  border: 1px solid var(--green-color);
  color: #44494f;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  width: 200px;
  text-align: right;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-left: 35px;
}

.dropdown-btn::after {
  content: "▼";
  font-size: 10px;
  color: white;
  background-color: var(--green-color);
  padding: 16px 20px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  overflow: hidden;
  animation: dropdownSlide 0.3s ease;
}

.dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-content li {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #979797;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content li:hover {
  background-color: var(--green-color);
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.real-estate-swiper .swiper-pagination {
  bottom: -5px;
}

.real-estate-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.real-estate-swiper .swiper-pagination-bullet-active {
  background: var(--green-color);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 2px solid var(--green-color);
}
