.grid {
  display: -ms-grid;
  display: grid;
}

.termGrid {
  -ms-grid-columns: 200px 1fr;
  grid-template-columns: 200px 1fr;
  margin-top: 80px;
  margin-bottom: 80px;
}
.termGrid > div {
  padding: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.termGrid .heading {
  font-weight: bold;
  -ms-flex-line-pack: center;
      align-content: center;
}
.termGrid .content {
  line-height: 2;
}
@media only screen and (max-width: 1079px) {
  .termGrid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .termGrid .heading {
    padding-bottom: 10px;
    border: none;
  }
  .termGrid .content {
    padding-top: 0px;
  }
}

.ppGrid {
  margin-top: 80px;
  margin-bottom: 80px;
  grid-gap: 40px;
  line-height: 2;
}
.ppGrid .bold {
  margin-bottom: 10px;
}