.counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.counter {
  text-align: center;
  width: 14rem;
  margin: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.1);
}

.counter .counter-top {
  padding: 2rem;
  min-height: 15rem;
  box-shadow: 0 2px 0 0 rgba(102, 102, 102, 0.2), inset 0 2px 0 0 rgba(102, 102, 102, 0.2), inset 0 -2px 2px 0 rgba(102, 102, 102, 0.2);
}

.counter .counter-bottom {
  padding: 2rem;
  min-height: 7rem;
  font-family: 'open_sans_semibold';
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .counters {
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 480px) {
  .counters {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .counter {
    margin: 1rem 0.5rem;
    width: 13.5rem;
  }
}
