.page-hero {
    padding: 55px 0px 61px 0px;
    position: relative;
    overflow: hidden;
    background: var(--blue)
}

.page-hero:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../../../library/images/need-help-bg.png') left / cover no-repeat;
    z-index: 0;
}

.page-hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 42px;
    letter-spacing: -1.68px;
    line-height: 42px;
    margin-bottom: 13px;
}

.page-hero .container-fluid {
    z-index: 1;
    position: relative;
}

.page-hero p {
    max-width: 932px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.8px;
}

@media(max-width:992px) {

    .page-hero {
        padding: 70px 10px 200px 10px;
    }

    .page-hero:before {
        background: url('../../../library/images/need-help-bg-mobo.png') bottom / cover no-repeat;
    }

    .page-hero p {
        line-height: 21px;
        letter-spacing: -0.64px;
        font-size: 16px;
    }

}