.counter {
    padding: 50px 0;
}

.counter-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.counter-item-number {
    color: #f07e14;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.counter-item-label {
    color: #a4a4a4;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

@media screen and (min-width: 575px) {
    .counter-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 767px) {
    .counter-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .counter-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }
}