.block-stats h2 {
  padding-bottom: 20px;
}
.block-stats .d-grid {
  grid-template-columns: 57% 40%;
  gap: 20px;
}
.block-stats-table {
  display: flex;
  flex-flow: column;
  line-height: 20px;
}
.block-stats-table > div {
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  background-color: #fff;
  transition: background-color 0.15s;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.block-stats-table > div:first-child {
  border-top: 1px solid #e1e1e1;
}
.block-stats-table > div:last-child {
  border-bottom: 1px solid #e1e1e1;
}
.block-stats-table > div:nth-child(odd) {
  background-color: #f9f9f9;
}
.block-stats-table > div:hover {
  background-color: #e0e0e0;
}
.block-stats-table dt,
.block-stats-table dd {
  padding: 15px;
}
.block-stats-table dt {
  font-weight: 500;
  border-right: 1px solid #e1e1e1;
  width: 45%;
}
.block-stats-table dd {
  flex-grow: 1;
  text-align: center;
}
.block-stats-text {
  font-size: 16px;
  line-height: 20px;
}
/* RESPONSIVE */
@media screen and (min-width: 1300px) {

}
@media screen and (max-width: 1300px) {

}
@media screen and (max-width: 1023px) {
  .block-stats .d-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 800px) {

}
@media screen and (max-width: 600px) {

}