.page-title-new {
    display:flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 30px;
}

.page-title-new h3 {
    font-family: 'Montserrat',sans-serif;font-weight: 600;font-size: 1.3rem;
}

.page-title-new .start {

}

.page-title-new .end {
    margin-left: auto;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/** Mobile */
@media all and (max-width:767px)
{
    .page-title-new:not(.no-wrap) {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        align-items: start;
        flex-direction: column;
    }

    .page-title-new .start {
        margin: 10px 0;
    }

    .page-title-new:not(.no-wrap) .end {
        margin-left: auto;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .mobile-no-pb {
        padding-bottom: 0 !important;
    }
}