/* Header and Nav */

.main-header {
    width: 100%;
    padding: 30px 0 10px 0;
    display: flex;
    justify-content: center;
    background-color: var(--white);
    position: relative;
    z-index: 1000;
}

.main-header-logo {
    height: 100px;
}

.main-header-logo img {
    height: 100%;
}

.main-nav {
    width: 100%;
    height: 6rem;
    background-color: var(--white);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav ul {
    list-style: none;
}

.main-nav ul li {
    display: inline;
    float: left;
}

.main-nav ul li a {
    display: block;
    margin: 5px 10px;
    padding: 5px 10px;
    font-weight: 400;
}

.sticky {
    position: fixed;
    top: 0;
}

.sticky + .content {
    padding-top: 10rem;
}

.sticky + .main-wrapper {
    min-height: calc(100vh - 140px);
}

/* Burger Menu */

.burger-menu, .burger-menu-button {
    display: none;
}

/* Header and Nav - <992 */

@media only screen and (max-width: 992px) {
    
    .burger-menu-button {
        display: block;
        width: 50px;
        height: 50px;
        background-image: url(../icons/burgermenu.png), url(../icons/cross.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center, center left 50px;
    }

    .burger-menu {
        display: none;
        position: fixed;
        top: 0;
        padding-top: 92px;
        width: 100%;
        height: 100vh;
        z-index: 900;
        background-color: var(--white);
        overflow-y: scroll;
    }

    .burger-menu ul {
        width: 100%;
        height: calc(100vh-90px);
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .burger-menu ul li {
        flex-basis: 100%;
        border-top: solid 2px var(--red);
    }

    .burger-menu ul li:last-child {
        border-bottom: solid 2px var(--red);
    }

    .burger-menu ul li a {
        display: block;
        height: 100%;
        font-size: 3rem;
        padding: 30px 0;
        flex-basis: 100%;
        text-align: center;
    }

    .main-header {
        padding: 20px;
        justify-content: space-between;
    }

    .main-header-logo {
        height: 50px;
    }

    .main-nav {
        display: none;
    }
    
    .sticky {
        display: none;
    }

    .sticky + .content {
        padding-top: 0;
    }
}