.stats_row h2 {
  color: #00B7D4;
  font-size: 80px;
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
  font-weight: 400;
}
.stats_row p {
  color: #FEFEFE;
  font-size: 24px;
}
.stats_row .stats {
  display: grid;
  grid-column-gap: 40px;
  grid-row-gap: 80px;
  background-color: #292927;
  padding: 65px 80px 90px;
  border-radius: 20px;
}
.stats_row .stats.one-col {
  grid-template-columns: 1fr;
}
.stats_row .stats.one-col h2 {
  margin-bottom: 0;
}
.stats_row .stats.one-col .stat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1320px;
  color: #00B7D4;
}
.stats_row .stats.one-col p {
  max-width: 730px;
  grid-column: span 2;
  margin-top: 0;
  color: #FEFEFE;
  display: flex;
  align-items: center;
}
.stats_row .stats.two-col {
  grid-template-columns: 1fr 1fr;
}
.stats_row .stats.three-col {
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
}
.stats_row .stats.four-col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

@media only screen and (max-width: 1000px) {
  .stats_row .stats {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding: 40px 20px 60px;
  }
  .stats_row .stats.four-col {
    grid-template-columns: 1fr 1fr;
  }
  .stats_row h2 {
    font-size: 60px;
  }
  .stats_row p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .stats_row .stats p {
    font-size: 18px;
  }
  .stats_row .stats.three-col {
    grid-template-columns: 1fr;
  }
  .stats_row .stats.four-col {
    grid-column-gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .stats_row .stats {
    grid-template-columns: 1fr;
  }
  .stats_row .stats.one-col .stat {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stats_row .stats.one-col h2 {
    margin-bottom: 10px;
  }
  .stats_row .stats.one-col p {
    max-width: 730px;
    grid-column: span 2;
    margin-top: 4px;
  }
  .stats_row .stats.two-col {
    grid-template-columns: 1fr;
  }
  .stats_row .stats.four-col {
    grid-template-columns: 1fr;
  }
  .stats_row .stats h2 {
    margin-bottom: 10px;
  }
  .stats_row .stats p {
    font-size: 18px;
  }
}
