.table .cell {
  background-color: #FFFFFF;
  padding: 20px;
}
.table .row, .table .column {
  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, .table .column:last-child {
  border-bottom: 1px solid #CFD2D2;
  border-bottom-width: 1px;
}
.table .column {
  grid-template-columns: 1fr;
  margin-bottom: 40px;
  border-bottom: 1px solid #CFD2D2;
  border-bottom-width: 1px;
}
.table .two .row {
  grid-template-columns: 1fr 1fr;
}
.table .four .row {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.table .five .row {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.table .text-light * {
  color: #FFFFFF !important;
}
.table *:last-child {
  margin-bottom: 0;
}
.table li {
  margin-bottom: 0;
}
.table .mobile {
  display: none;
}

@media only screen and (max-width: 1050px) {
  .table .desktop.five {
    display: none;
  }
  .table .mobile.five {
    display: block;
  }
}
@media only screen and (max-width: 900px) {
  .table .desktop.four {
    display: none;
  }
  .table .mobile.four {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .table .cell {
    padding: 20px;
  }
  .table .desktop.three {
    display: none;
  }
  .table .mobile.three {
    display: block;
  }
}
@media only screen and (max-width: 550px) {
  .table .desktop.two {
    display: none;
  }
  .table .mobile.two {
    display: block;
  }
}
