.value-2-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  margin: 72px auto;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
    padding: 24px 24px;
  }
}

.value-2-item {
  width: 240px;
  display: flex;
  flex-direction: column;

  @media (max-width: 768px) {
    width: 100%;

    flex-direction: row;
  }
}

.value-2-image {
  width: 72px;
  height: 72px;

  @media (max-width: 768px) {
    width: 40px;
    height: 40px;
    margin-right: 24px;
  }
}
