@media only screen and (min-width: 1025px) {
  .a-cards {
    display: grid;
    row-gap: 20px;
    margin: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-cards {
    row-gap: 40px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-cards_grid-2 {
    column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1280px) {
  .a-cards_grid-2 {
    column-gap: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-cards_grid-4 {
    justify-content: space-between;
    grid-template-columns: 22% 22% 22% 22%;
  }
}
@media only screen and (min-width: 1280px) {
  .a-cards_grid-4 {
    grid-template-columns: 20.4% 20.4% 20.4% 20.4%;
  }
}

.a-card {
  min-height: 190px;
  border: solid 3px #000000;
  padding: 22px 80px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.25rem;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin: 24px auto 0;
  max-width: 320px;
}
@media only screen and (min-width: 1025px) {
  .a-card {
    margin: 0;
    max-width: none;
    padding: 22px 40px;
  }
}
.a-card b,
.a-card strong {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
  color: #40b93c;
}
.a-card span:first-child {
  font-size: 3.8125rem;
  font-weight: 700;
  line-height: 4.5625rem;
}
.a-card__title {
  text-transform: uppercase;
}
.a-card__text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5625rem;
  color: #000000;
  text-transform: uppercase;
}
.a-card_decorated {
  position: relative;
}
.a-card_decorated:before, .a-card_decorated:after {
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  border: solid 3px;
}
.a-card_decorated:before {
  width: 102px;
  height: 102px;
}
.a-card_decorated:after {
  width: 62px;
  height: 62px;
}
.a-card_decorated-top:before {
  top: -60px;
  right: -60px;
}
.a-card_decorated-top:after {
  top: -40px;
  right: -40px;
}
.a-card_decorated-bottom:before {
  bottom: -60px;
  right: -60px;
}
.a-card_decorated-bottom:after {
  bottom: -40px;
  right: -40px;
}
.a-card_centered {
  text-align: center;
}
.a-card_big b {
  font-size: 5.625rem;
  line-height: 5rem;
}
.a-card_block .a-card__title {
  display: inline-flex;
  align-items: flex-end;
  font-size: 1.625rem;
  line-height: 1.9375rem;
}