.hero-banner {
    position: relative;
    min-height: 775px;
    display: flex;
    align-items: center;
    z-index: 1;
}
.hero-banner::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #00000025;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.banner-video video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner-content {
    text-align: center;
}
.banner-content p {
    color: #fff;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 100%;
}
.banner-content p {
    color: #fff;
    margin-bottom: 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: 991px){
    .hero-banner {
        min-height: 600px;
    }
}

@media only screen and (max-width: 767px){
    .hero-banner {
        min-height: 500px;
    }
}