.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 355px;
  padding: 27px;
  justify-content: flex-end;
  border: 0;
  color: #fff;
  background-color: #173f58;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 28px rgba(12, 48, 70, .11);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 32, 52, .17) 0%, rgba(4, 32, 52, .21) 30%, rgba(4, 32, 52, .9) 100%);
}
.service-card:nth-child(1) { background-image: url("service-home.png"); }
.service-card:nth-child(2) { background-image: url("service-move.png"); }
.service-card:nth-child(3) { background-image: url("service-focus.png"); }
.service-card .service-icon {
  position: absolute;
  top: 27px;
  left: 27px;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.4rem;
}
.service-card h3 {
  margin: 0 0 8px;
  color: #fff;
}
.service-card p { color: #e2edf2; }
@media (max-width: 800px) {
  .service-card { min-height: 330px; padding: 24px; }
  .service-card .service-icon { top: 24px; left: 24px; }
}
@media (max-width: 600px) {
  .service-card { min-height: 285px; }
}
