.hero-banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    text-align: left;
    position: relative;
    padding-left: 20px;
    min-height: 800px;
}

.landing_page-template-default .hero-banner,
.single-landing_page .hero-banner {
    height: 100%;
    min-height: 180px;
    padding-right: 20px;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.landing_page-template-default .content-hero-image,
.single-landing_page .content-hero-image {
    margin-left: 0;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content-hero-image {
    position: relative;
    z-index: 2;
    margin-left: 50px;
    width: 1000px;
}

@media (min-width: 768px) {
    .landing_page-template-default .content-hero-image,
    .single-landing_page .content-hero-image {
        margin-left: 50px;
    }
}

@media (min-width: 1200px) {
    .landing_page-template-default .hero-banner,
    .single-landing_page .hero-banner {
        min-height: 640px;
    }

    .landing_page-template-default .hero-banner,
    .single-landing_page .hero-banner {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}