.counter_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px 15px;
}

.counter_box .counter_icon {
    margin-right: 20px;
}

.counter_box .counter_content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.counter_box .counter_content p {
    margin: 0;
    font-size: 16px;
    color: #A3A3A3;
    line-height: 1.4;
    font-weight: 500;
}



@media(max-width:991px) {

    .counter_box {
        display: block;
        text-align: center;
        padding: 40px 0;
    }

    .counter_box .counter_icon {
        margin: 0 0 15px;
    }


}