.inner-hero{
    position:relative;
    min-height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.inner-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.inner-hero .container{
    position:relative;
    z-index:2;
}

.inner-hero-content{
    max-width:850px;
    margin:auto;
    color:#fff;
}

.inner-hero-content h1{
    font-size:56px;
    font-weight:700;
    margin-bottom:20px;
}

.inner-hero-content p{
    font-size:20px;
    line-height:1.7;
    margin:0;
}

@media(max-width:991px){

    .inner-hero{
        min-height:200px;
    }

    .inner-hero-content h1{
        font-size:38px;
    }

    .inner-hero-content p{
        font-size:16px;
    }

}