@media screen and (min-width: 768px) {
  .list-card.four-columns .card__item {
    min-height: 31.125rem;
    width: calc(25% - 0.70313rem);
  }
}

.list-card__top {
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .list-card__top {
    margin-bottom: 6.25rem;
  }
}

@media screen and (max-width: 767px) {
  .list-card__top .tag {
    margin-bottom: 1.25rem;
  }
}

.list-card .list {
  row-gap: 0.625rem;
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 768px) {
  .list-card .list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9375rem;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .list-card .list .card__item {
    height: auto;
  }
}

.card__item {
  border-radius: 2.5rem;
  border: 0.0625rem solid #D5DADF;
  padding: 1.25rem;
  counter-increment: number;
}

@media screen and (min-width: 768px) {
  .card__item {
    border-radius: 3.75rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: calc(33.33% - 0.625rem);
  }
}

.card__item:nth-child(9) ~ .card__item .bottom .number:after {
  content: counter(number);
}

.card__item .title-small {
  margin-bottom: 1.25rem;
}

.card__item .description {
  margin-bottom: 1.25rem;
  max-width: 25.875rem;
}

@media screen and (min-width: 768px) {
  .card__item .description {
    margin-bottom: 2.8125rem;
  }
}

.card__item .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.card__item .bottom .icon {
  height: 4.375rem;
  width: 4.375rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E1F3E2;
}

@media screen and (min-width: 768px) {
  .card__item .bottom .icon {
    height: 5.625rem;
    width: 5.625rem;
  }
}

.card__item .bottom .icon img {
  width: 1.5rem;
  height: auto;
  min-height: 0;
}

@media screen and (min-width: 768px) {
  .card__item .bottom .icon img {
    width: 2.25rem;
  }
}

.card__item .bottom .number {
  padding: 0.75rem 1.25rem;
  border-radius: 2.5rem;
  background-color: rgba(213, 218, 223, 0.4);
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .card__item .bottom .number {
    padding: 0.5rem 0.9375rem;
  }
}

.card__item .bottom .number:before {
  content: '';
  height: 0.4375rem;
  width: 0.4375rem;
  border-radius: 0.1875rem;
  background-color: #55C96B;
  transform: rotate(45deg);
  margin-right: 0.625rem;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .card__item .bottom .number:before {
    height: 0.5rem;
    width: 0.5rem;
  }
}

.card__item .bottom .number:after {
  content: "0" counter(number);
}
/*# sourceMappingURL=list-card.css.map */