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: #427BC9;
}

.button-active {
  background:#164b93;
}

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

.rounded-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;
  }
}

.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: 96px;
  height: 82px;
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/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/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/icon_hello02.webp) no-repeat center center;
    background-size: 100% auto;
    z-index: -1;
  }
}