.home-benefits {
  padding-top: 45px;
  margin-top: 85px;
  padding-bottom: clamp(30px, 7.2916666667vw, 140px);
  background: linear-gradient(
    0deg,
    rgba(105, 116, 93, 0.08) 0%,
    rgba(105, 116, 93, 0) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home-benefits .heading_wrapper {
  max-width: 643px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 75px;
}
.home-benefits-list {
  display: flex;
  gap: 50px;
}
.home-benefits-list__item h3 {
  padding: 15px 23px;
  border-radius: 20px 20px 0 0;
  background: #69745d;
  color: white;
}
.home-benefits-list__item .paragraph__16 {
  padding: 18px 23px;
  background: white;
  border-radius: 0px 0px 20px 20px;
}
.home-benefits-list__item:not(:last-of-type) {
  margin-bottom: 70px;
}
.home-benefits-list__left,
.home-benefits-list__right {
  flex: 1.3;
}
.home-benefits-list__center {
  flex: 1;
  display: flex;
  align-items: center;
}
.home-benefits-list__left > div:first-of-type,
.home-benefits-list__left > div:last-of-type {
  /* transform: translateX(clamp(30px, 6.4583333333vw, 124px)); */
  transform: translateX(10%);
}
.home-benefits-list__right > div:first-of-type,
.home-benefits-list__right > div:last-of-type {
  /* transform: translateX(clamp(-30px, -6.4583333333vw, -124px)); */
  transform: translateX(-10%);
}
@media only screen and (max-width: 1199px) {
  .home-benefits-list__item h3 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .home-benefits-list__center {
    display: none;
  }
  .home-benefits-list__left > div:first-of-type,
  .home-benefits-list__left > div:last-of-type,
  .home-benefits-list__right > div:first-of-type,
  .home-benefits-list__right > div:last-of-type {
    transform: unset;
  }
  .home-benefits-list__item h3 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .home-benefits .heading_wrapper {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .home-benefits-list {
    flex-direction: column;
    gap: 0px;
    /* gap: 20px; */
  }
  .home-benefits-list__item {
    margin-bottom: 20px !important;
  }
}
