/* HEADER */

.header {
    width: 100%;
    height: calc(100vh - 8em);
    background: url("/assets/images/annezwagers.webp") center / cover no-repeat;
    display: flex;
    justify-content: center;
    margin-top: 4em;
    position: relative;
}

.header .menu {
    margin-top: 5em;
}

.header__text {
    background: var(--white);
    padding: .5em 4em 1em;
    position: absolute;
    bottom: 50%;
    transform: translate(0, 60%);
    right: 6em;
}

.header__title {
    display: inline-block;
    margin-bottom: 0;
    line-height: 1em;
    max-width: 600px;
}

.header__subtitle {
    margin-top: .5em;
    font-weight: 100;
}

.header__sticker {
    background: url("/assets/images/sticker.svg") center / contain no-repeat;
    width: 40em;
    height: 12em;
}

/* HEADER SMALL */

.header--small {
    height: 45vh;
    position: relative;
    background: url("/assets/images/background.webp") center 20% / cover no-repeat;
    margin-top: 3em;
}

.header--small::after{
    content: "test";
    background-color: var(--white);
    height: 4em;
    width: 100%;
}

/* Tablet */
@media only screen and (max-width: 960px) {

}

/* Mobile */
@media only screen and (max-width: 600px) {
    .header__text {
        margin: 0 1.5em;
        transform: unset;
        right: unset;
        bottom: 4em;
    }

    .header__sticker {
        display: none;
    }
}
