.inner-banner {
    min-height: 465px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 201px 0 128px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 9;
}
.inner-banner::before{
    content: "";
    display: block;
    position: absolute;
    background: rgba(22, 23, 41, 0.50);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.inner-banner-row p {
    font-size: 21.42px;
    color: #FFFFFF;
    line-height: 28px;
    font-weight: 500;
}
.inner-mobile-img {
    display: none;
}
.inner-desktop-img,
.inner-mobile-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.inner-desktop-img img,
.inner-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-banner .container{
    position: relative;
    z-index: 1;
}
.inner-banner-row h1 {
    padding-bottom: 10px;
}
@media only screen and (max-width:767px){
    .inner-banner {
        min-height: 480px;
        padding: 160px 0 70px;
    }
    .inner-banner .container {
        padding: 0 36px;
    }
    .inner-banner-row h1 {
        font-weight: 700;
        padding-bottom: 20px;
        margin-bottom: 0;
    }
    .inner-banner-row p {
        font-size: 18px;
        line-height: 26px;
        font-weight: 500;
        max-width: 100%;
        width: 100%;
    }
    .inner-banner-row h1 > br {
        display: none;
    }
    .inner-mobile-img {
        display: block;
    }
    .inner-desktop-img{
        display: none;
    }
}
@media only screen and (max-width:374px){
    .inner-banner .container {
        padding: 0 22px;
    }
}