section.header {
    position: relative;
    background-color: var(--scampi);
    color: var(--white);
    white-space: nowrap;
    mix-blend-mode: normal;
}

section.header .header-menu {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 152px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

section.header a.home {
    position: absolute;
    top: 0px;
    height: 152px;
    width: 342px;
    left: var(--header-logo-left);
}

section.header .header-text {
    position: absolute;
    bottom: 10%;
    left: var(--header-logo-left);
    width: 50%;
    display: block;
}

section.header h1 {
    font-family: var(--font-family-bunday_sans-boldup_italic);
    font-weight: 800;
    font-style: italic;
}

section.header p {
    font-family: var(--font-family-bunday_sans-regular);
}

.bwg-box-logo {
    width: var(--bwg-box-logo-width);
}

section.header .header-login {
    position: absolute;
    top: var(--header-login-top);
    right: var(--header-login-right);
    height: var(--header-login-height);
    width: var(--header-login-width);
}

section.header div.header-login .info {
    font-family: var(--font-family-bunday_sans-regular);
    float: right;
    color: var(--white);
    line-height: 2em;
    margin: 0;
    padding: 10% 1em;
}

section.header div.header-login .logo {
    float: right;
    width: var(--header-login-logo-width);
}

:root {
    --header-logo-left: 80px;
    --bwg-box-logo-width: 342px;

    --header-login-top: 60px;
    --header-login-right: var(--header-login-top);
    --header-login-height: 80px;
    --header-login-width: auto;
    --header-login-logo-width: var(--header-login-height);
}

@media screen and (min-width: 320px) {
    :root {
        --header-logo-left: 20px;
        --bwg-box-logo-width: 170px;
        --header-login-top: 20px;
        --header-login-height: 45px;
        --header-login-width: var(--header-login-height);
    }
    section.header div.header-login .info {
        display: none;
    }    
}

@media screen and (min-width: 640px) {
    :root {
        --bwg-box-logo-width: 250px;
        --header-login-top: 25px;
        --header-login-height: 60px;
    }
    
}

@media screen and (min-width: 800px) {
    :root {
        --header-logo-left: 80px;
        --header-login-width: auto;
    }

    section.header div.header-login .info {
        display: flex;
    }

    section.header .header-text {
        bottom: 10%;
    }
}

@media screen and (min-width: 1024px) {
    :root {
        --bwg-box-logo-width: 342px;
        --header-login-top: 35px;
        --header-login-height: 80px;
    }
}