.soft-catalog-info {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  text-align: center;
  border: 1px solid #4cb7b2;
}

.top-sections {
  --border-color: #dcdcdc;
  --item-width: 50%;
  --name-fz: 16px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .top-sections {
    --item-width: calc(100% / 3);
    --name-fz: 18px;
  }
}
@media (min-width: 992px) {
  .top-sections {
    --item-width: 25%;
  }
}
.top-sections__item {
  width: var(--item-width);
  padding: 25px;
  display: flex;
  flex: 0 0 var(--item-width);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px 0;
  text-decoration: none;
  font-size: var(--name-fz);
  font-weight: 500;
  border: 1px solid var(--border-color);
}
.top-sections__item:hover {
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.04);
}
.top-sections__item + a {
  border-left: none;
}
.top-sections__item-image img {
  width: 100%;
  max-width: 220px;
}

.soft-section-blocks {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

.section-bottom-text {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section-plans__header {
  --fs-title: 20px;
  --fs-caption: 13px;
  --fs-price: 15px;
  --title-br-display: none;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .section-plans__header {
    --title-br-display: block;
  }
}
@media (min-width: 1200px) {
  .section-plans__header {
    --fs-title: 26px;
    --fs-caption: 14px;
    --fs-price: 18px;
  }
}
.section-plans__header-caption {
  line-height: 1.4;
  font-size: var(--fs-caption);
  font-weight: 400;
}
.section-plans__header-title {
  text-transform: uppercase;
  font-size: var(--fs-title);
  font-weight: 700;
}
.section-plans__header-title br {
  display: var(--title-br-display);
}
.section-plans__header-price {
  font-size: var(--fs-price);
}
.section-plans__header-type {
  width: 100%;
  background: #52C1BB;
}
.section-plans__header-type > div {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #fff;
}
@media (min-width: 992px) {
  .section-plans__header-type {
    --size: calc(100% - 30px);
    width: var(--size);
    padding-bottom: var(--size);
    position: relative;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .section-plans__header-type.type-rhombus_1 {
    background-image: url("img/plan-rhombus-1.svg");
  }
  .section-plans__header-type.type-circle {
    background-image: url("img/plan-circle.svg");
  }
  .section-plans__header-type.type-rhombus_2 {
    background-image: url("img/plan-rhombus-2.svg");
  }
  .section-plans__header-type > div {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.section-plans__text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 24px;
  font-size: 18px;
}
