.privacy-points {
  display: flex;
  flex-wrap: wrap;

  .privacy-point {
    display: flex;
    max-width: 50%;
    padding: 24px;

    i.fa {
      align-self: center;
      text-align: center;
      margin-right: 24px;
      min-width: 80px;
    }

    span {
      align-self: center;
    }
  }
}

@media (max-width: 640px) {
  .privacy-points {
    flex-direction: column;
    width: 100%;

    .privacy-point {
      flex-direction: column;
      max-width: 100%;

      i.fa {
        margin-bottom: 8px;
      }
    }
  }
}
