.supportfeatures {
  padding: 8rem 0;
  background: #FAF0E6;
}
.supportfeatures h2 {
  margin-bottom: 2rem;
}
.supportfeatures-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 2rem 0;
}
.supportfeatures-item {
  position: relative;
  width: calc((100% - 4rem) / 3);
  margin-top: 7rem;
  padding: 10rem 1.5rem 3rem;
  border-left: 0.6rem solid #FDB516;
  background: #3A3024;
}
.supportfeatures-item img {
  position: absolute;
  top: -7rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.supportfeatures-item h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #FDB516;
  text-align: center;
}

.supportfeatures-item p {
  font-size: 1.5rem;
  text-align: left;
  color: #fff;
}



@media screen and (max-width: 768px) {
  .supportfeatures {
    padding: 8rem 0;
    background: #FAF0E6;
  }
  .supportfeatures h2 {
    margin-bottom: 2rem;
  }
  .supportfeatures-list {
    display: grid;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding: 2rem 0;
  }
  .supportfeatures-item {
    position: relative;
    width: 96vw;
    margin-top: 12rem;
    padding: 10rem 1.5rem 3rem;
    border-left: 0.6rem solid #FDB516;
    background: #3A3024;
  }
  .supportfeatures-item img {
    position: absolute;
    top: -7rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30vw;
  }
  .supportfeatures-item h3 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FDB516;
    text-align: center;
  }

  .supportfeatures-item p {
    font-size: 2rem;
    text-align: left;
    color: #fff;
  }


}