.counter{
    background-image: url(../images/counter.png);
    padding: 50px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: -1;
    }
    .counter_content{
         .counter_wrap{
            text-align: center;
              i{
                font-size: 35px;
                color: $black;
                height: 80px;
                width: 80px;
                text-align: center;
                line-height: 80px;
                border-radius: 50%;
                background-color: $white;
                border: 2px solid $primaryColor;
              }
              h4{
                font-size: 28px;
                font-weight: 500;
                color: $white;
                padding-top: 12px;
              }
              h6{
                font-size: 17px;
                font-weight: 500;
                color: $white;
              }

         }
    }
}