.hero-sub {
  margin: 100px 0;
}
.hero-cards-row {
  position: relative;
  margin-top: 70px;
  width: 100%;
  max-width: 892px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 100px 10px;
}
.hero-card {
    /* flex: 0 1 26.5%; */
  position: relative;
  width: 30%;
  background: var(--bg-body);
  border: 0.25px solid var(--bg-decor-border);
  border-radius: 30px;
  padding: 6.5px 7.5px 13.5px 7.5px;
}
.price {
  text-align: center;
}
.price h1,
.price h2 {
  font-family: var(--font-play);
  font-weight: var(--font-weight-bold);
}
.price h1 {
  font-size: 40px;
}
.price h2 {
  font-size: 20px;
  margin-bottom: 7px;
}
.card-content {
  align-self: flex-start;
}
.card-content p {
  position: relative;
  color: var(--color-white);
  font-size: var(--font-size-little);
  font-family: var(--font-play);
  padding-left: 15px;
}
.card-content p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-10%);
  color: var(--color-full-white);
  font-size: 16px;
}
.hero-card:nth-child(1) .card-content .card-list-benefits p::before {
  color: var(--color-grey);
}
.card-list-info p {
  margin: 5px 0;
}
.card-list-info p > span {
  font-weight: bold;
}
.card-line {
  border: none;
  border-top: 0.25px solid var(--bg-decor-border);
  margin: 11px 0;
  width: calc(100% + 20px);
  transform: translateX(-10px);
}
.card-list-benefits p {
  color: var(--color-grey);
}
.card-list-benefits > .include-benefit {
  color: var(--color-white);
}

/* --- Cards decor boll */

.card-decor-boll {
  position: absolute;
  width: 100%;
  height: 823px;
  z-index: -1;
}
.boll-yellow {
  top: 0;
  background: var(--gradient-yellow);
}
.boll-blue {
  top: 33%;
  background: var(--gradient-blue);
}
.boll-red {
  top: 66%;
  background: var(--gradient-red);
}

/* --- Price font color --- */

.font-white {
  color: var(--color-white);
}
.font-green {
  color: var(--color-green);
}
.font-yellow {
  color: var(--color-yellow);
}
.font-blue {
  color: var(--color-blue);
}
.font-lightly-red {
  color: var(--color-lightly-red);
}
.font-dark-red {
  color: var(--color-dark-red);
}

/* Мобильная адаптация */

@media screen and (max-width: 800px) {
  .hero-cards-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }
  .hero-card {
    max-width: 304px;
    width: 100%;
  }
  .hero-card:nth-child(3n) {
    margin-bottom: 50px;
  }
  .card-decor-boll {
    width: 1197px;
  }
  .boll-yellow {
    top: 4%;
    height: 3000px;
  }
  .boll-blue {
    top: 50%;
    height: 1250px;
  }
  .boll-red {
    top: 70%;
    height: 2000px;
  }
}