.better-info-box.style-1{
    .item-sm{

        h6{
            font-weight: 600;
            font-size: 18px;
        }

        .numb{
            font-size: 40px;
            font-weight: 400;
            color: $primary-color;
            padding-right: 70px;
            line-height: 1;
            position: relative;
            font-family: 'Teko', sans-serif;

            &:after{
                content: '';
                position: absolute;
                right: 10px;
                bottom: 10px;
                background: #ddd;
                width: 50px;
                height: 1px;
            }
        }
        p{
            color: #888;
            font-size: 15px;
            font-weight: 400;
            line-height: 2;
            margin: 0;
        }
    }
}
// Mobile size
@media screen and (max-width: 767px){
    .better-info-box.style-1 .item-sm .numb{
        padding-right: 30px;

        &:after{
            width: 15px;
        }
    }
}