.why-follow-us {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .why-follow-us {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid rgb(238, 238, 238);
    border-bottom: 1px solid rgb(238, 238, 238);
    margin-top: 1rem;
    padding-top: .3rem;
    padding-bottom: .3rem;
  }
}

.why-follow-us__card {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: var(--font-16);
  line-height: 1.3;
  border-top: 1px solid rgb(238, 238, 238);
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
    .why-follow-us__card {
        font-size: var(--font-lg-24);
        border: none;
    }
}

.why-follow-us__card:last-child {
  border-bottom: 1px solid rgb(238, 238, 238);
}
@media screen and (min-width: 768px) {
    .why-follow-us__card:last-child {
        border: none;
    }
}


.why-follow-us__image {
  width: 1.27rem;
  height: 1.27rem;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .why-follow-us__image {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.why-follow-us__image img {
  height: 100%;
}
