.about-why-us-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.about-why-us-list > div {
  flex: 1;
  min-height: 500px;
}
.about-why-us-list-item-upper,
.about-why-us-list-item-bottom {
  background-size: cover;
  background-position: bottom;
  position: relative;
  padding: 43px 40px;
  border-radius: 40px;
  overflow: hidden;
}
.about-why-us-list-item-bottom {
  display: flex;
  align-items: flex-end;
}
.about-why-us-list-item-upper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    356deg,
    rgba(250, 243, 233, 0.2) 13.75%,
    rgba(250, 243, 233, 0.35) 42.55%,
    #faf3e9 62.89%
  );
}
.about-why-us-list-item-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(250, 243, 233, 0.2) 13.75%,
    rgba(250, 243, 233, 0.35) 42.55%,
    #faf3e9 62.89%
  );
}
.about-why-us-list-item h3 {
  position: relative;
  z-index: 3;
  color: #69745d;
  font-weight: 600;
}
.about-why-us-heading .paragraph__20 p:not(:last-of-type) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1480px) {
  .about-why-us-list > div {
    min-height: 350px;
  }
  .about-why-us-list-item-upper,
  .about-why-us-list-item-bottom {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .about-why-us-list {
    flex-direction: column;
  }
}
