.cols {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 -20px;
}

.col {
  padding: 20px;
}

@media (min-width: 1000px) {
  .cols {
    flex-direction: row;
    align-items: flex-start;
  }

  .col {
    padding: 0 20px;
  }
}
