/* Counters */

ul.counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 22px;
}
ul.counters li {
    flex: 1;
    padding: 60px 30px;
    text-align: center;
    background: #eeeeee;
    text-align: center;
}
ul.counters li h2 {
    font-size: 42px;
    color: #3497da;
}
ul.counters li div {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 480px) {
    ul.counters li div {
        white-space: normal;
    }
}