:root {
    --counterPrimary: #8592a3;
}

.counter {
    color: #555;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 180px;
    padding: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.counter:before,
.counter:after {
    content: '';
    background-color: #fff;
    height: 100px;
    width: 100%;
    border-radius: 50% 50% 10px 10px/80% 80% 10px 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.counter:after {
    height: 95px;
    border-radius: 10px 10px 50% 50%/10px 10px 80% 80%;
    top: auto;
    bottom: 0;
}

.counter .counter-icon {
    font-size: 25px;
}

.counter .counter-value {
    color: #fff;
    background-color: var(--counterPrimary);
    font-size: 22px;
    font-weight: 500;
    padding: 20px 10px 10px;
    margin: 0 0 15px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5) inset;
    border-radius: 50% 50% 0 0/80% 80% 0 0;
    display: block;
}

.counter.blue .counter-value {
    background-color: #1087F5;
}

.counter.green .counter-value {
    background-color: #5EB05C;
}

.counter.darkblue .counter-value {
    background-color: #0B697E;
}

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}