.onCounter.outerWrap {
    background-color: #222244;
}

.onCounter .innerWrap {
    max-width: 1200px;
    padding: 3.5em 2em 1.5em;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.onCounterItem {
    width: 22%;
	padding-bottom: 2em;
}

.onCounterItem .count {
    color: white;
    font-size: 2.5em;
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
}

.onCounterItem .countUnit {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 0.8em;
    padding-bottom: 0.8em;
    text-align: center;
}

.onCounterItem .countText {
    color: white;
    text-align: center;
    font-size: 0.98em;
}

.onCounterItem .countTextSmall {
    color: white;
    font-size: 0.725em;
    text-align: center;
}

.onCounterItem:nth-child(3) .count:before {
    content: "mehr als ";
    font-size: 0.4em;
    display: block;
    margin-top: -1.1em;
}

html[lang="en"] .onCounterItem:nth-child(3) .count:before {
    content: "more than ";
    font-size: 0.4em;
    display: block;
    margin-top: -1.1em;
}

@media (max-width: 1000px) {
    .onCounterItem {
        width: 46%;
    }
}

@media (max-width: 500px) {
    .onCounterItem {
        width: 100%;
    }
}