.web_counter {
    color: #fff;
    background: linear-gradient(28deg, rgba(26, 60, 96, 1) 35%, rgba(149, 73, 73, 1) 100%);
    font-family: 'Dosis', sans-serif;
    text-align: center;
    width: 180px;
    height: 180px;
    padding: 40px 20px 20px;
    margin: 0 auto;
    border-radius: 10px 10px 100px 100px;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.web_counter:after {
    content: '';
    background: linear-gradient(28deg, rgba(26, 60, 96, 1) 35%, rgba(149, 73, 73, 1) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.web_counter .web_counter-value {
    font-size: 55px;
    font-weight: 600;
    line-height: 40px;
    margin: 0 0 15px;
    display: block;
}

.web_counter h3 {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0px;
}

.web_counter.web_green {
    background: linear-gradient(to right bottom, #a9dd23, #52C242);
}

.web_counter.web_green:after {
    background: #52C242;
}

.web_counter.web_cgreen {
    background: linear-gradient(to right bottom, #01AD9F, #008888);
}

.web_counter.web_cgreen:after {
    background: #008888;
}

.web_counter.web_blue {
    background: linear-gradient(to right bottom, #00C5EF, #0092f4);
}

.web_counter.web_blue:after {
    background: #0092f4;
}

@media screen and (max-width:990px) {
    .web_counter {
        margin-bottom: 40px;
    }
}