.value-toc {
  padding: 84px 110px 65px;
  margin: 0 20px;
  background-color: var(--pale-green);
  border-radius: 10px;
}

.value-toc__title {
  padding: 0;
  margin-bottom: 24px;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 36.4px */
  color: var(--deep-green);
  text-align: center;
}

.value-toc__description {
  margin-bottom: 50px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  text-align: center;
}

.value-toc__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 72px 60px 56px;
  background-color: #fff;
  border-radius: 10px;
}

@media (hover: hover) {
  .value-toc__item:hover .value-toc__item-icon {
    transform: translateY(-8px);
  }
}

.value-toc__item:not(:last-child) {
  border-right: 1px solid var(--pale-gray);
}

.value-toc__item-number {
  margin-bottom: 10px;
  font-family: Figtree, sans-serif;
  font-size: 38.571px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 38.571px */
  color: var(--green);
  text-align: center;
}

.value-toc__item-title {
  padding: 0;
  margin: 0 -6px 20px 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  color: var(--black);
  text-align: center;
  border: initial;
}

.value-toc__item-title strong {
  font-size: 23px;
  font-weight: 600;
  color: var(--deep-green);
}

.value-toc__item-icon {
  margin: 0 auto;
  transition: transform var(--transition-hover);
}

@media (width <= 1240px) {
  .value-toc {
    padding: 80px 18px 160px;
  }
}

@media (width <= 1024px) {
  .value-toc {
    padding: 60px 18px;
  }

  .value-toc__description {
    font-size: 16px;
    line-height: 170%; /* 27.2px */
  }

  .value-toc__container {
    padding: 30px 0;
  }

  .value-toc__item {
    padding: 0 4px;
  }

  .value-toc__item-title {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 170%; /* 27.2px */
  }

  .value-toc__item-title strong {
    font-size: 16px;
  }
}

@media (width < 768px) {
  .value-toc {
    padding: 56px 18px 40px;
  }

  .value-toc__title {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 150%; /* 30px */
    white-space: wrap;
  }

  .value-toc__description {
    margin-bottom: 48px;
    text-align: left;
  }

  .value-toc__container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 46px;
  }

  .value-toc__item:not(:last-child) {
    padding-bottom: 8px;
    border-right: initial;
    border-bottom: 1px solid var(--pale-gray);
  }

  .value-toc__item:nth-child(2) {
    margin: 0 -16px;
  }

  .value-toc__item-number {
    margin-bottom: 8px;
    font-size: 35px;
  }

  .value-toc__item-title {
    margin-bottom: 0;
    font-size: 16px;
  }

  .value-toc__item-title strong {
    font-size: 18px;
  }
}
