.section-benefits {
  max-width: 100%;
  margin: 0 auto;
  background-color: #c8c8b9;
  position: relative;
  color:#111;
}

.section-benefits img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  min-width: none;
}

.section-benefits-list {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  gap: 1rem;
}
.section-benefits-list div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-benefits-list li {
  background-color: #9b9583;
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-benefits img {
    max-width: 800px;
  }
  .section-benefits-list {
    flex-direction: row;
    align-items: stretch;
  }

  .section-benefits-list div {
    flex: 1;
  }

  .section-benefits-list li {
    flex: 1;
    max-width: 400px;
  }
}

@media (min-width: 2560px) and (min-height: 1440px) {
  .section-benefits {
    max-width: 120rem;
  }

  .section-benefits-list li {
    font-size: 2rem;
  }
}
