/* These styles deal with my header */

.nav-master {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: darkgray;
    z-index: 10;
}

.nav {
    background-color: rgba(0,0,0,0);
    justify-content: center;
    align-items: center;
    padding: 10px 50px;
    display: flex;
}

.nav-wrap {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: relative;
}

.menu-logo {
    z-index: 1;
    border-color: white;
}

.logo-image {
    float: none;
    max-width: 90px;
    height: auto;
    max-height: 90px;
    display: block;
    border-color: white;
}

.menu {
    z-index: 0;
    border: 1px #000;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.navbar {
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
}

.navbar-item {
    clear: none;
    opacity: .6;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex: 0 auto;
    order: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
    color: #1a1b1f;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    position: relative;
}

.navbar-item:hover {
    opacity: 0.9;
}

.navbar-item:active {
    opacity: 0.8;
}

.navbar-item.current {
    color: #000;
    flex-flow: row;
    order: 0;
    justify-content: flex-start;
    align-self: auto;
    align-items: stretch;
    font-weight: 500;
    display: flex;
}

.menu-icon {
    background-color: darkgray;
    border-color: white;
    border-width: 0px;
    display: none;
    cursor: pointer;
    z-index: 1;
}

.navbar-small {
    display: none;
}

.navbar-item-small {
    display: none;
    align-items: center;
    justify-content: center;
}


@media (max-width: 1040px) {

    .menu-icon {
        display: block;
    }

    .navbar-item {
        display: none;
    }

    .navbar-item-small {
        display: flex;
    }


}

@media (max-width: 500px) {

    .menu-img {
        max-width: 40px;
    }

    .nav {
        padding: 10px 30px;
    }

    .logo-image {
        max-width: 60px;
        max-height: 60px;
    }

}