.page-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 60%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20px; */
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.25);
}

.banner-intro {
    max-width: 1450px;
    text-align:center ;
    margin-top: 50px;
}
.non-audit .banner-intro {
    max-width: 1200px;
}

h1 span.dash-bottom {
    position: relative;
}

h1 span.dash-bottom:after {
    content: "";
    width: 102%;
    height: 15px;
    background: url(/assets/svg/dashed-border.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -0.4em;
    right: 0;
}

h1.standard span.dash-bottom:after {
    content: "";
    width: 102%;
    height: 10px;
    background: url(/assets/svg/dashed-border.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -0.2em;
    right: -3px;
}

@media (min-width: 576px) {
    h1 span.dash-bottom:after {
        content: "";
        width: 102%;
        height: 15px;
        background: url(/assets/svg/dashed-border.svg) no-repeat;
        background-size: contain;
        position: absolute;
        bottom: -0.2em;
        right: 0;
    }
    h1.standard span.dash-bottom:after {
        content: "";
        width: 100%;
        height: 10px;
        background: url(/assets/svg/dashed-border.svg) no-repeat;
        background-size: contain;
        position: absolute;
        bottom: -0.1em;
        right: 0;
    }
}

@media (min-width: 992px) {
    .page-banner {
        height: 60vh;
        min-height: 500px;
    }
    .home .page-banner {
        height: 100%;
        min-height: 100vh;
    }
    h1 span.dash-bottom:after {
        content: "";
        width: 100%;
        height: 15px;
        background: url(/assets/svg/dashed-border.svg) no-repeat;
        background-size: contain;
        position: absolute;
        bottom: -0.1em;
        right: 0;
    }
}

@media (min-width: 1950px) {
    .banner-intro {
        max-width: 1750px;
    }
    .non-audit .banner-intro {
        max-width: 1200px;
    }
}