.table .cell {
  background-color: #FFFFFF;
  padding: 40px;
}
.table .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1px;
  background-color: #CFD2D2;
  border: 1px solid #CFD2D2;
  border-bottom: 0;
}
.table .row:last-child {
  border-bottom: 1px solid #CFD2D2;
  border-bottom-width: 1px;
}
.table .row:nth-child(even) .cell {
  background-color: #3C3A3B;
}
.table .row:nth-child(even) * {
  color: #FFFFFF;
}
.table .two-col .row {
  grid-template-columns: 1fr 1fr;
}
.table .four-col .row {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 1000px) {
  .table .four-col .row {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .table .cell {
    padding: 20px;
  }
  .table .row {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 550px) {
  .table .two-col .row, .table .four-col .row {
    grid-template-columns: 1fr;
  }
}
