ul {
  list-style: none;
  padding-left: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.w-fitcontent {
  width: fit-content;
}

.bg-blue {
  background-color: #164b93;
  border: #164b93 solid 1px;
}

.button-nonactive {
  background-color: #fff;
  border: #164b93 solid 2px;
  color: #164b93;
}

.button-nonactive a {
  color: #164b93;
}

.button-nonactive button {
  color: #164b93;
}

.button-active {
  background-color: #164b93;
  border: #164b93 solid 1px;
  color: #ffffff;
}

.button-active a {
  color: #ffffff;
}

.button-active button {
  color: #ffffff;
}

.bg-orange {
  background-color: #F2994A;
}

.rounded-50 {
  border-radius: 50px;
}

.rounded-10-50 {
  border-radius: 3px;
}

@media screen and (min-width: 768px) {
  .rounded-10-50 {
    border-radius: 50px;
  }
}

.fs16px-20px {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .fs16px-20px {
    font-size: 20px;
  }
}

.fs12px-16px {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .fs12px-16px {
    font-size: 16px;
  }
}

.fs8px-16px {
  font-size: 11px;
}

@media screen and (min-width: 768px) {
  .fs8px-16px {
    font-size: 16px;
  }
}

.px-1 {
  padding-right: .05rem !important;
  padding-left: .05rem !important;
}

.w-36px {
  width: 36px;
}

.h-36px {
  height: 36px;
}

.border-black {
  border: solid 1px #242424;
}

.pagenation a.active {
  background-color: #242424 !important;
  color: #fff !important;
}

section>h2 {
  position: relative;
}

section>h2::after {
  width: 106px;
  height: 92px;
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/archive-property/icon_house.webp) no-repeat center center;
  background-size: 100% auto;
}

@media screen and (min-width: 768px) {
  section>h2::after {
    width: 212px;
    height: 183px;
  }
}

@media screen and (min-width: 1200px) {
  .property-list>ul>li:nth-child(4) {
    position: relative;
  }

  .property-list>ul li:nth-child(4)::after {
    content: '';
    width: 196px;
    height: 169px;
    position: absolute;
    top: 33%;
    left: -100px;
    transform: translateY(-50%);
    background: url(../img/archive-property/icon_hello01.webp) no-repeat center center;
    background-size: 100% auto;
    z-index: -1;
  }

  .property-list>ul>li:last-child {
    position: relative;
  }

  .property-list>ul>li:last-child::after {
    content: '';
    width: 196px;
    height: 169px;
    position: absolute;
    top: 33%;
    right: -100px;
    transform: translateY(-50%);
    background: url(../img/archive-property/icon_hello02.webp) no-repeat center center;
    background-size: 100% auto;
    z-index: -1;
  }
}