div#identity {
    text-align: center;
}

header section ul {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    gap: 4em;
    padding: 30px 15px 0;
}

header {
    margin: 2em 0;
    position: relative;
    z-index: 2;
}

li.current-menu-item {
    font-weight: 700;
}

.banner.bg-image.not-home {
    height: 400px;
    margin: 0 auto;
}

.header-decoration.top {
    height: 68px;
    margin: 0 auto -1px;
}

.header-decoration.bottom {
    height: 37px;
}

.not-home .header-decoration.bottom {
    margin: 0 auto 2em;
}

.banner-container {
    position: relative;
    margin-top: -68px;
}

.bottom-banner-container {
    position: absolute;
    width: 100%;
}

@media(max-width: 980px) {

    header section ul {
        display: none;
    }

    #menu-toggle {
        display: flex;
        flex-flow: column;
        gap: 4px;
        position: absolute;
        right: 2em;
        top: 2em;
        z-index: 299;
    }

    .menu-bar {
        width: 30px;
        height: 3px;
        background: var(--black);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    body.open #menu-toggle .menu-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.open #menu-toggle .menu-bar:nth-child(2) {
        opacity: 0;
    }

    body.open #menu-toggle .menu-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    body.open {
        overflow: hidden;
    }

    body.open header a {
        font-weight: 500;
        display: block;
        height: auto;
        z-index: 3;
        position: relative;
    }
    
    body.open header picture {
        z-index: 999;
        position: relative;
    }

    body.open header .menu-main_menu-container {
        background-color: rgba(255, 255, 255);
        height: 100vh;
        width: 100%;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        display: grid;
        place-content: center;
        place-items: start center;
        padding-top: 0em;
    }

    body.open #menu-main_menu {
        display: flex;
        position: absolute;
        flex-flow: column;
        gap: 2em;
        padding: 10em 15px;
    }
    
    body.open header #logo-container a {
        position: relative;
        z-index: 9999;
    }

    body.open #menu-main_menu li {
        position: relative;
        z-index: 9999;
    }

}

