.demo{ background-color: #393939;
  
background-image: url('3.png');
height:390;
 }

.counter{
    font-family: 'Montserrat Alternates', sans-serif;
    text-align: center;
    position: relative;
    z-index: 1;
	
}  

.counter:before{
    content: '';
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 80px;
    z-index: -1;
}

.counter .counter-value{
    color: #fff;
    background-color: #FC9605;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 100px;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 20px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: block;
}

.counter h3{
    color: #fff;
    background-color: #FC9605;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 30px 12px;
    margin: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.3) inset;
}

.counter.red .counter-value,
.counter.red h3{
    background-color: #F7531A;
}

.counter.green .counter-value,
.counter.green h3{
    background-color: #2FAF38;
}

.counter.blue .counter-value,
.counter.blue h3{
    background-color: #16A8EE;
}

@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
}   