:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

@media only screen and (min-width: 768px) {
  .a-cards__list {
    display: flex;
    flex-wrap: wrap;
    margin: -48px 0 0 -48px;
  }
}

.a-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  margin: 48px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-card {
    flex: auto;
    width: calc(50% - 48px);
    margin: 48px 0 0 48px;
  }
}
@media only screen and (min-width: 1025px) {
  .a-card {
    width: calc(33.3333333333% - 48px);
  }
}
.a-card_shadow {
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.07);
}
.a-card_shadow.a-card_red {
  box-shadow: 0 16px 32px 0 rgba(145, 52, 52, 0.07);
}
.a-card__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 249px;
}
.a-card_red .a-card__image {
  background: #fdeeee;
}
.a-card_green .a-card__image {
  background: #effdee;
}
.a-card_blue .a-card__image {
  background: #eef8fd;
}
.a-card__img {
  max-width: 100%;
  display: block;
}
.a-card__body {
  padding: 24px 20px 36px;
  text-align: center;
}
.a-card__title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 150%;
  color: #000000;
}
.a-card__text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 162%;
  color: #363943;
  margin: 8px 0 0 0;
}
.a-card__platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 162%;
  letter-spacing: 0.02em;
  color: #696969;
  text-align: center;
}
.a-card__platform {
  opacity: 0.3;
}
.a-card__platform + .a-card__platform {
  margin: 0 0 0 18px;
}
.a-card .a-button {
  margin: 28px 0 0 0;
  width: 100%;
}