header {
    position: relative;
    width: 100%;
    /*height: calc(10vh + 50px);*/
}

#banner {
    width: 100%;
    height: 10vh;
    text-align: center;
    display: table;
    background-color: #fff;
    position: relative;
    z-index: 3;
}

#banner h1 {
    display: table-cell;
    vertical-align: middle;
    font-size: 3em;
    font-weight: bold;
    overflow: hidden;
}

#menu-toggle {
    cursor: pointer;
    background-color: #fff;
    outline: none;
    display: none;
}

#menu-toggle:active {
    background-color: #e0e0e0;
}

#menu-toggle>i {
    width: 48px;
    height: 48px;
    display: block;
    background-image: url('../icons/menu.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

nav#menu {
    width: 100%;
    height: 50px;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    background-color: rgb(164, 38, 44);
    box-shadow: 0 28px 79px 0 rgba(66, 129, 121, .27);
}

a.menu-item {
    width: 15vw;
    color: #000;
    font-size: 1em;
    z-index: 10;
    display: inline-block;
    float: left;
}

button.menu-item {
    cursor: pointer;
    font-size: 1.5em;
    width: 100%;
    height: 50px;
    outline: none;
    color: #fff;
    background-color: transparent;
    border: none;
}

button.menu-item:hover {
    color: #E0E0E0;
}

button.menu-item:active {
    font-size: 1.4em;
    color: #BDBDBD;
}

#dome:before {
    position: absolute;
    width: 100%;
    height: 40vh;
    min-height: 280px;
    top: 0vh;
    content: '';
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-filter: blur(10px);
    filter: blur(10px);
    z-index: -1;
}

#dome {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 280px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.6);
}

#dome:after {
    position: absolute;
    width: 100%;
    height: 40vh;
    min-height: 280px;
    top: 0vh;
    content: '';
    display: block;
    background-color: #010318;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: 7.5vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}