.pill-cards--section {
  position: relative;
  background: var(--background-color);
  color: var(--text-color);
  padding: 50px 0;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .pill-cards--section {
    padding: 25px 0;
  }
}
.pill-cards--section .heading--container {
  margin-bottom: 25px;
}
.pill-cards--section .heading--container .heading {
  font-size: 58px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .pill-cards--section .heading--container .heading {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .pill-cards--section .heading--container .heading {
    font-size: 28px;
  }
}
.pill-cards--section .cards--container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .pill-cards--section .cards--container {
    flex-direction: column;
    gap: 15px;
  }
}
.pill-cards--section .cards--container .card {
  align-self: stretch;
  background: var(--text-color);
  color: var(--background-color);
  max-width: 250px;
  text-align: center;
  border-radius: var(--border-radius);
  padding: 10px 15px;
}
@media screen and (max-width: 768px) {
  .pill-cards--section .cards--container .card {
    max-width: 100%;
  }
}
.pill-cards--section .cards--container .card .card--content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.pill-cards--section .cards--container .card .card--content .heading {
  font-size: 22px;
  line-height: 1.5;
}

/*# sourceMappingURL=pill-cards.css.map */
