.at-a-glance {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.few-items .center-flex {
    width: 80%;
    margin: 0 auto;
    margin-top: -50px;
}

.few-items .counter-item {
    flex: 0 1 32%;
}

.counter-item {
    height: 90px;
    background: linear-gradient(180deg, #00AFDB 0%, #0077B4 100%);
    color: #fff;
    padding: 100px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    -ms-flex: 1;
    flex: 0 1 18%;
}

.counter-elements-values {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: center;
    align-self: center;
    text-align: center;
}

.counter-elements {
    font-size: 48px;
    font-weight: 400;
    margin: 0px;
    text-align: center;
    -moz-osx-font-smoothing: auto;
    font-smoothing: auto;
    -webkit-font-smoothing: auto;
}

p.counter-elements + small:nth-last-of-type(1) {
    margin-top: 15px;
    position: relative;
    display: block;
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    .at-a-glance {
        justify-content: flex-start;
        margin-left: -15px;
        margin-right: -15px;
    }

    .counter-item {
        margin: 15px;
        flex-basis: calc(33.3% - 30px);
    }
}

@media screen and (max-width: 662px) {
    .counter-item {
        flex: 0 1 43.8%;
        box-shadow: none;
        margin: 15px;
    }

    .at-a-glance {
        /*		justify-content: center;
                background-color: #fff;
                box-shadow: 0 8px 20px 0 rgba(224,224,224,0.50);*/
        border-radius: 3px;
        max-width: 490px;
        margin: 0 auto;

    }
}

@media screen and (max-width: 513px) {
    .counter-item {
        flex: 0 1 100%;
        margin: 0;
        padding: 35px;
        height: auto;
        border-bottom: #f7f7f7 1px solid;
        margin-bottom: 15px;
    }
}