.inspection_list {
  width: 100%;
  margin-bottom: 80px;
}

.inspection_list__item {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.inspection_list__img {
  width: 40%;
}

.inspection_list__content {
  width: 55%;
}

.inspection_list__tag {
  font-size: 13px;
  width: max-content;
  padding: 0.5em 1em;
  border-radius: 4px;
  color: #fff;
}

.inspection_list__tag--bmw {
  background-color: #2968d4;
}

.inspection_list__tag--mini {
  background-color: #215e36;
}

.inspection_list__title {
  font-size: 24px;
  line-height: 1.4;
  margin-top: 0.5em;
}

.inspection_list__detail {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 1em;
}

.inspection_feature {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #000;
}

.inspection_feature__item {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 5px;
  padding-left: 28px;
  position: relative;
}

.inspection_feature__item::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  content: "\f058";
  margin-right: 6px;
  position: absolute;
  left: 0;
  top: -5px;
}

.inspection_feature__item--bmw::before {
  color: #2968d4;
}

.inspection_feature__item--mini::before {
  color: #215e36;
}

@media (max-width: 800px) {

  .inspection_list__img {
    width: 100%;
  }

  .inspection_list__content {
    width: 100%;
    margin-top: 20px;
  }

}