.counter{
    color: #fff;
    background: linear-gradient(to right bottom, #FFD81B, #f9b12a);
    font-family: 'Dosis', sans-serif;
    text-align: center;
    width: 120px;
    height: 120px;
    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;
}
.counter:after{
    content: '';
    background-color: #f9b12a;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.counter .counter-value{
    font-family: 'Encode Sans Condensed', sans-serif;
    font-size: 2.5em;
    font-weight: 600;
    line-height: 40px;
    margin: 0 0 15px;
    display: block;
}

.counter h3{
    font-size: 0.7em;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.counter.green{ background: linear-gradient(to right bottom, #a9dd23, #52C242); }
.counter.green:after{ background: #52C242; }
.counter.cgreen{ background: linear-gradient(to right bottom, #01AD9F, #008888); }
.counter.cgreen:after{ background: #008888; }
.counter.blue{ background: linear-gradient(to right bottom, #00C5EF, #0092f4); }
.counter.blue:after{ background: #0092f4; }
.counter.red{ background: linear-gradient(to right bottom, transparent, #D42340); }
.counter.red:after{ background: #D42340; }

.counter.red1{ background: linear-gradient(to right bottom, #35373F, #E60C36); }
.counter.red1:after{ background: #E60C36; }
.counter.red2{ background: linear-gradient(to right bottom, #FDFEFE, #921A1C); }
.counter.red2:after{ background: #921A1C; }
.counter.red3{ background: linear-gradient(to right bottom, #D6D9DF, #6D7681); }
.counter.red3:after{ background: #6D7681; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
}