.dont-take-this-class {
  font-family: "Roboto", Arial, sans-serif;

  /* Vars */
  --green: #a3ab9e;
}

.dont-take-this-class h2 {
  display: inline-block;
  font-size: 28px;
  margin: 20px 0;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #4c545b;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.benefits-list__item {
  padding: 20px 15px 40px 20px;
  margin-bottom: 30px;
  width: 48.5%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ededed;
  border-left: 5px solid #a3ab9e;
  background: center / cover no-repeat url("../img/mr-bg.png");
}
.benefits-list__item-img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
.benefits-list__item-img img {
  max-width: 100%;
  display: block;
}
.benefits-list__item-body {
  width: 78%;
}
.benefits-list__item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefits-list__item-desc {
  font-size: 15px;
}

.recommend {
  margin-top: 60px;
  counter-reset: recommend;
}
.recommend-list {
  position: relative;
}
.recommend-list::before {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: #e6b174;
  z-index: -1;
  position: absolute;
  left: 39px;
  top: 0;
}
.recommend-list__item {
  padding-left: 100px;
  position: relative;
  counter-increment: recommend;
  margin-bottom: 20px;
  min-height: 80px;
}
.recommend-list__item::before {
  content: "0" counter(recommend);
  display: block;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: center / contain no-repeat url("../img/rli-b.png");
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.recommend-list__item-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.recommend-list__item-desc {
  font-size: 15px;
}

.about-us {
  margin: 70px 0;
  color: #4c545b;
  padding: 125px 50px 50px;
  background: center / cover no-repeat url("../img/3b-bg.png");
}
.au__container {
  background: rgba(255, 255, 255, 0.7);
  padding: 0 30px 50px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
.au__logo {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  transform: translateY(-75px);
}
.au__logo img {
  max-width: 100%;
  display: block;
}
.au__body {
  margin-top: -50px;
  font-size: 20px;
  text-align: center;
}

.au__body .underline {
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.au__body .underline::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #d7e0d5;
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: -1;
}

/* Medias */
@media (max-width: 967px) {
  .benefits-list__item-body {
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .benefits-list__item {
    width: 100%;
  }

  .recommend-list::before {
    left: 25px;
  }
  .recommend-list__item {
    padding-left: 60px;
    min-height: 50px;
  }
  .recommend-list__item::before {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .recommend-list__item-title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .about-us {
    padding-left: 20px;
    padding-right: 20px;
  }
  .au__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .au__body {
    font-size: 16px;
  }
  .au__body br {
    display: none;
  }
}

@media (max-width: 420px) {
  .au__body {
    font-size: 14px;
  }
}
