.counter-header-wrap h2 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

.counter-items {
    display: flex;
    margin: 0 -20px;
}

.counter-item {
    flex: 0 0 33.333%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}
.counter-item:not(:last-child) {
    border-right: 1px solid var(--bs-body-bg);
}

.counter-item-counter {
    font-size: 35px;
    flex: 1;
    display: flex;
    align-items: center;
}
.counter-item-counter span {
    font-weight: bold;
}

.counter-item-text {
    font-size: 18px;
}

@media (max-width: 768px) {
    .counter-items {
        display: block;
        margin: 0;
    }

    .counter-items .counter-item {
        padding: 0;
        border-right: 0;
    }
}