.row > div:nth-child(1) .feature-card {
  background: #e4f9f9;
  transition: 0.3s;
  border: 1px solid transparent;
}

.row > div:nth-child(2) .feature-card {
  background: #fcf2fa;
  transition: 0.3s;
  border: 1px solid transparent;
}

.row > div:nth-child(3) .feature-card {
  background: #e3f0ff;
  transition: 0.3s;
  border: 1px solid transparent;
}

.row > div:nth-child(4) .feature-card {
  background: #f6f3fc;
  transition: 0.3s;
  border: 1px solid transparent;
}

.feature-card:hover {
  background: #fff;
  border-color: #e0e6ff;
  transform: translateY(-5px);
}

.icon-wrap {
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learn-link span {
  transition: 0.2s;
  color: #000000;
}

.learn-link {
  color: #000000;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.learn-link:hover span {
  margin-left: 4px;
}

.property-img {
  width: 160px;
  height: 200px;
  border-radius: 110px;
  overflow: hidden;
  margin: auto;
}
.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
  color: #046973;
}

@media (max-width: 765px) {
  .property-img {
    width: 90% !important;
    aspect-ratio:1 / 1;  
    height: auto;
    border-radius: 110px;
    overflow: hidden;
    margin: auto;
  }

  .property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

