.counter-v2-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px 20px;
    padding: 20px 0;
}

.counter-v2-item{
    flex: 1;
    min-width: 180px;
    max-width: 25%;
}

.counter-v2-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.counter-v2-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uicolor);
    font-size: 44px;
    line-height: 1;
    margin-bottom: 4px;
}

.counter-v2-icon i,
.counter-v2-icon svg{
    color: inherit;
    font-size: inherit;
    line-height: 1;
}

.counter-v2-number {
    color: var(--primary-text);
    font-size: 45px;
    font-weight: 900;
    font-family: cursive;
}
.counter-v2-title {
    color: var(--secondarytext);
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
}
.counter-v2-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uicolor);
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}
@media (max-width: 1199px){
    .counter-v2-item{
        max-width: calc(50% - 10px);
    }

    .counter-v2-icon{
        font-size: 46px;
    }

    .counter-v2-number{
        font-size: 36px;
    }

    .counter-v2-title{
        font-size: 17px;
    }
}

@media (max-width: 767px){
    .counter-v2-wrap{
        gap: 24px 16px;
    }

    .counter-v2-item{
        min-width: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .counter-v2-icon{
        font-size: 38px;
    }

    .counter-v2-number{
        font-size: 30px;
    }

    .counter-v2-title{
        font-size: 16px;
    }
}

@media (max-width: 575px){
    .counter-v2-item{
        min-width: calc(45% - 8px);
        max-width: 100%;
    }

    .counter-v2-wrap{
        gap: 20px;
    }

    .counter-v2-icon{
        font-size: 34px;
    }

    .counter-v2-number{
        font-size: 28px;
    }

    .counter-v2-title{
        font-size: 15px;
    }
}