.hero-banner {
    height: 80vh;
    width: 100%;
    background-image: var(--mobile-bg);
    background-position: center;
    background-size: cover;

}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.overlayout.active {
    --opacity: 0.5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: rgba(0, 0, 0, var(--opacity));
}

@media screen and (min-width: 768px) {
    .hero-banner {
        background-image: var(--desktop-bg);
    }
}