.ts-hero {
  background-image: url("../assets/images/hero-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-inline: 50px;
  padding-block: 150px;
  color: var(--color-white);
}
@media (max-width: 575px) {
  .ts-hero {
    padding-inline: 20px;
  }
}
.ts-hero__content {
  max-width: 767px;
}

.ts-card {
  text-align: center;
  background-color: var(--color-highlight-color);
  padding: 12px;
  /* card-shadow */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: calc((100% - 4.5rem) / 4);
  border-radius: 0.25rem;
}
.ts-card .btn {
  font-weight: 500;
  border-radius: 0.25rem;
}
.ts-card-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ts-card__header {
  margin-bottom: 1.25rem;
}
.ts-card__image {
  width: 100%;
  border-radius: 0.25rem;
}
@media (max-width: 991px) {
  .ts-card {
    width: calc((100% - 3rem) / 3);
  }
}
@media (max-width: 767px) {
  .ts-card {
    width: calc((100% - 0.5rem) / 2);
  }
  .ts-card-group {
    gap: 0.5rem;
  }
} /*# sourceMappingURL=index.css.map */
