.service-title {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.service-img-wrapper {
  height: 15rem;
}

.service-img-wrapper img {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.service-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  background-color: white;
}

.service-box:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom, #fbeaf2, #fbd6e6, #fceef2);
}

.service-box:hover .service-title {
  font-weight: 600;
}

.slc-btn {
  margin-top: 1rem;
}

.section-title{
  margin-top: 1.5rem;
  margin-bottom: 0.1rem !important;
}

@media screen and (max-width: 768px) {
  .section-title{
    margin-top: 1.5rem;
    margin-bottom: -3.5rem;
  }

  .service-img-wrapper {
    height: 7rem;
    width: 80%;
    max-width: 12rem;
    margin: auto;
  }
}