#inner-page-wrapper {
  margin-bottom: 0;
}
#inner-page-wrapper > .container {
  width: 100%;
  padding: 0;
}

.ip-properties {
  position: relative;
  padding: 70px 0;
  font-size: 0;
}

.ip-properties-container {
  position: relative;
  max-width: 1480px;
  padding: 0 15px;
  margin: 0 auto;
}

.ip-properties-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.ip-properties-holder .custom-pagination{
  font-size: 15px;
  text-align: center;
  margin-top: 30px;
} 

.ip-properties-item {
  width: 50%;
  padding: 5px;
}
.ip-properties-item a {
  display: block;
  position: relative;
}
.ip-properties-item.status-sold a::before {
  content: "Sold";
  display: block;
  position: absolute;
  width: 217px;
  right: -50px;
  top: 25px;
  background: #00224b;
  font-family: sans-serif;
  font-size: 29px;
  color: #ffffff;
  padding: 9px 10px 4px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 10;
}

.ip-properties-image {
  z-index: 1;
}
.ip-properties-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.ip-properties-image img {
  transition: all 0.3s ease-in-out;
}

.ip-properties-item a:hover .ip-properties-image img {
  transform: scale(1.1) translateZ(0);
  filter: blur(2px);
}

.ip-properties-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 65px 50px;
  z-index: 2;
}

.ip-properties-address {
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ip-properties-address span {
  display: block;
  font-size: 20px;
  margin-top: 8px;
}

.ip-properties-price {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.ip-properties-view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 45px;
  background: #c5c5c5;
  font-size: 11px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (max-width: 1366px) {
  .ip-properties-text {
    padding: 50px 35px;
  }
}
@media only screen and (max-width: 1199px) {
  .ip-properties-text {
    padding: 40px 25px;
  }
}
@media only screen and (max-width: 991px) {
  .ip-properties-text {
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .ip-properties-holder {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .ip-properties-item {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .ip-properties-image canvas {
    min-height: 280px;
  }
  .ip-properties-address {
    font-size: 22px;
  }
  .ip-properties-address span {
    font-size: 18px;
  }
  .ip-properties-price {
    font-size: 18px;
  }
}