.counter{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 130px;
    min-height: 190px;
    padding: 25px 0 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.counter:after{
    content: '';
    background: linear-gradient(to right, #eefdff, #fefefe);
    height: 106px;
    width: 106px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 5px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    top: 25px;
    left: 50%;
    z-index: -1;
}
.counter .counter-value{
    background:#fe8c00;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    width: 100%;
    padding: 10px 0 6px;
    border-radius: 50px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.6),0 0 0 2px #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.counter .counter-icon{
    background: linear-gradient(to right,#fe8c00,#f83600);
    font-size: 21px;
    line-height: 42px;
    width: 42px;
    height: 42px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 2.5px 2.5px 2.5px rgba(0,0,0,0.4);
}
.counter h3{
    color: #f83600;
    font-size: 12px;
    font-weight: 900;
    text-transform: capitalize;
    line-height: 22px;
    padding: 0 30px;
    margin: 0 0 15px;
}
.counter.green .counter-value{ background: #7462c2; }
.counter.green .counter-icon{ background: linear-gradient(to right,#ad9aff,#7462c2); }
.counter.green h3{ color: #7462c2; }
.counter.blue .counter-value{ background: #28a9e2; }
.counter.blue .counter-icon{ background: linear-gradient(to right,#28a9e2,#0057c5); }
.counter.blue h3{ color: #0057c5; }
.counter.gray .counter-value{ background: #019b01; }
.counter.gray .counter-icon{ background: linear-gradient(to right,#01c700,#019b01); }
.counter.gray h3{ color: #019b01; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
}   

@media (max-width: 575px) {
    .counter{
        color: #fff;
        font-family: 'Poppins', sans-serif;
        text-align: center;
        width: 100%;
        min-height: 130px;
        padding: 20px 0 0;
        margin: 10px auto;
        position: relative;
        z-index: 1;
    }
    .counter:after{
        content: '';
        background: linear-gradient(to right, #eff0f2, #fefefe);
        height: 80px;
        width: 80px;
        border-radius: 15px;
        border: 3px solid #fff;
        box-shadow: 5px 0 8px rgba(0, 0, 0, 0.2);
        transform: translateX(-50%) rotate(45deg);
        position: absolute;
        top: 10px;
        left: 50%;
        z-index: -1;
    }
    .counter .counter-value{
        background:#fe8c00;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 2px;
        width: 100%;
        padding: 10px 0 6px;
        border-radius: 50px;
        box-shadow: inset 0 0 6px rgba(0,0,0,0.6),0 0 0 2px #fff;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
    }
    .counter .counter-icon{
        background: linear-gradient(to right,#fe8c00,#f83600);
        font-size: 15px;
        line-height: 30px;
        width: 30px;
        height: 30px;
        margin: -10px auto 0px;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 2.5px 2.5px 2.5px rgba(0,0,0,0.4);
    }
    .counter h3{
        color: #f83600;
        font-size: 12px;
        font-weight: 900;
        text-transform: capitalize;
        line-height: 22px;
        padding: 7px 30px;
        margin: 0 0 15px;
    }
  
  }
  
