.advantages {
  padding: 24px 0;
  background: #ffffff;
  margin-top: 24px;
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 92px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(31, 44, 78, 0.08);
  border-radius: 12px;
}
.advantages__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 92px;
  padding: 18px 28px;
}
.advantages__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  width: 1px;
  height: calc(100% - 44px);
  background: #eef1f7;
}
.advantages__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
}
.advantages__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--blue-500);
}
.advantages__content {
  min-width: 0;
}
.advantages__value {
  margin-bottom: 4px;
  color: #090f3d;
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.advantages__label {
  color: var(--gray-500);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
}
@media (max-width: 1199.98px) {
  .advantages__item {
    gap: 14px;
    padding: 18px 20px;
  }
  .advantages__value {
    font-size: 2.2rem;
  }
}
@media (max-width: 991.98px) {
  .advantages__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .advantages__item {
    justify-content: flex-start;
  }
  .advantages__item:nth-child(2)::after {
    display: none;
  }
  .advantages__item:nth-child(-n+2) {
    border-bottom: 1px solid #eef1f7;
  }
}
@media (max-width: 575.98px) {
  .advantages {
    padding: 18px 0;
  }
  .advantages__list {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .advantages__item {
    min-height: 82px;
    padding: 16px 18px;
  }
  .advantages__item::after {
    display: none;
  }
  .advantages__item:not(:last-child) {
    border-bottom: 1px solid #eef1f7;
  }
  .advantages__value {
    font-size: 2.05rem;
  }
}

/*# sourceMappingURL=style.css.map */
