.header-hero {
    width: 100%;
    height: 45vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.header-hero h1 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 4vw;
    margin: 0;
}
