/* Assuming the icon is saved as 'house-icon.png' in the 'images' folder */
.icon-rent-to-own {
  width: 70px;
  height: 70px;
  background-image: url("../images/services/rentToOwnIcon.png");
  background-size: cover; /* Ensures the icon covers the entire element */
}

.icon-buy-as-is {
  width: 70px;
  height: 70px;
  background-image: url("../images/services/buyAsIs.png");
  background-size: cover; /* Ensures the icon covers the entire element */
}

.icon-multi-family {
  width: 70px;
  height: 70px;
  background-image: url("../images/services/multiFamily.png");
  background-size: cover; /* Ensures the icon covers the entire element */
}

.icon-joint-venture {
  width: 70px;
  height: 70px;
  background-image: url("../images/services/jointVenture.png");
  background-size: cover; /* Ensures the icon covers the entire element */
}

.icon-infills {
  width: 70px;
  height: 70px;
  background-image: url("../images/services/infill.png");
  background-size: cover; /* Ensures the icon covers the entire element */
}

.icon-wholesale {
  width: 70px;
  height: 70px;
  background-image: url("../images/services/wholeSale.png");
  background-size: cover; /* Ensures the icon covers the entire element */
}
