.service-card {
  height: 380px;
  display: flex;
  flex-direction: column;
}
.service-card img {
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card .card-body .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3em;
}

.cursor-pointer {
  cursor: pointer !important;
}

.section-bg {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;
}

/* All modal text black */
.modal-content .form-label,
.modal-content .form-check-label,
.modal-content .modal-title {
  color: #000 !important;
}/*# sourceMappingURL=landing.css.map */