.counter{
    padding-top: 30px;
    text-align: center;
}
.counter .counter-value{
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    border-width: 3px;
    border-style: solid;
    border-color: #d51927 #000 #d51927 #000;
    margin-bottom: 40px;    
    font-size: 30px;
    font-weight: 600;
    color: #000;
    position: relative;
}
.counter .counter-value:before{
    content: "";
    border-top: 15px solid #000;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.counter .counter-value:after{
    content: "";
    border-radius: 50%;
    border-width: 5px;
    border-style: solid;
    border-color: #d51927 #000 #d51927 #000;
    position: absolute;
    top: -23px;
    left: -23px;
    bottom: -23px;
    right: -23px;
    transition: all 0.3s ease 0s;
}
.counter:hover .counter-value:after{ transform: rotate(360deg); }
.counter .title{
    font-size: 22px;
    font-weight: 473;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}
@media only screen and (max-width: 990px){
    .counter{ margin-bottom: 30px; }
}