.inner-banner::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.inner-banner {
    position: relative;
    min-height: 375px;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 110px 0 60px;
}
.banner-video video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.banner-content h1 {
    max-width: 896px;
    margin: 0 auto 10px;
}
.banner-content p {
    color: #fff;
    max-width: 1063px;
    margin: 10px auto 0;
    font-size: 20px;
    line-height: 30px;
}
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 767px){
    .banner-content p {
        font-size: 16px;
        line-height: 26px;
    }
    .inner-banner{
        padding: 60px 0 20px;
    }
}
