:root{ --main-color: #A2C439; }
.counter{
    color: var(--main-color);
    background: var(--main-color);
    font-family: 'Mochiy Pop One', sans-serif;
    text-align: center;
    width: 200px;
    padding: 35px 15px 25px 5px;
    margin: 0 auto;
    box-shadow: 5px 5px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.counter:before{
    content: '';
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 80px;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: -1;
}
.counter h3{
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    text-transform: capitalize;
    margin: 0 0 11px;
}
.counter .counter-icon{
    font-size: 35px;
    line-height: 35px;
    margin: 0 auto 10px;
}
.counter .counter-value{
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
}
.counter.pink{ --main-color: #FC405D; }
.counter.green{ --main-color: #07BB7E; }
.counter.blue{ --main-color: #057491; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
}   

