#forShippers {
  /*Flex items*/
}
#forShippers .list {
  display: flex;
  flex-wrap: wrap;
}
#forShippers .list-item {
  display: flex;
  padding: 0.5em;
  width: 100%;
}
@media all and (min-width: 40em) {
  #forShippers .list-item {
    width: 50%;
  }
}
@media all and (min-width: 60em) {
  #forShippers .list-item {
    width: 33.33%;
  }
}
#forShippers .list-content {
  display: flex;
  flex-direction: column;
  padding: 1em;
  width: 100%;
}
#forShippers .list-content p {
  flex: 1 0 auto;
  font-size: 21px;
}
