header {
    z-index: 9999999;
    background: #020051;
    height: 51px;
}

.menu {
    display: flex;
    flex-direction: row;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    font-size: 13px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    align-items: center;
}

.menu>a,
.menu>.item {
    color: white;
}

.item,
.sub,
.subsub {
    text-decoration: none;
    display: block;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.subsub {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.sub>a {
    color: white;
}

.menu>.item:hover,
.menu>.sub:hover {
    background-color: blue;
}

.item:hover,
.sub:hover,
.subsub:hover {
    background-color: #ddd;
}

a {
    text-decoration: none;
    color: gray;
}

.sub>.item {
    color: white;
}

.sub-content {
    color: gray;
    position: absolute;
    background-color: #fff;
    top: 2.6em;
    display: none;
    flex-direction: column;

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    width: 300px;
}

.subsub-content {
    position: absolute;
    background-color: #fff;
    left: 250px;

    display: none;
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    width: 300px;
    max-width: 400px;

}

.sub:focus-within .sub-content,
.sub-content:focus-within .sub-content,
.item:focus-within .sub-content {
    display: flex;

}

.subsub:focus-within .subsub-content {
    display: flex;

}

.red {
    color: red !important;
}

@media (max-width: 767px) {
    .menu {
        display: flex;
        flex-direction: column;
        font-size: 4vw;
        font-weight: bold;
        color: black;
        cursor: pointer;
        align-items: flex-start;
        margin-left: 3vw;
    }

    .menu a {
        /* color: rgb(41, 41, 41) !important; */
        color: white;
    }

    .sub-content {
        color: gray;
        position: relative;
        display: none;
        flex-direction: column;
        width: 300px;
        left: 2vw;
        /* background: #f5f5f5; */
        background: black;
        top: 0;
        box-shadow: none;
    }

    .menu>.item:hover,
    .menu>.sub:hover,
    .subsub:hover {
        background-color: black;
    }

    .subsub-content {
        position: relative;
        /* background-color: #e9e9e9; */
        background: black;
        left: 6vw;
        display: none;
        flex-direction: column;
        box-shadow: none;
        width: auto;
        max-width: device-width;
    }

    .nav-mobile {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .navbtn {
        font-size: 8vw;
    }

    .oe-mobile-menu {
        width: 100vw;
        /* float: left; */
        position: relative;
        top: 0;
        text-align: left;
        overflow: hidden;
        z-index: 100;
        background: black;
    }

    .resp-nav {
        padding: 0;
    }

    .nav-btn-container {
        padding-left: 3vw;
        padding-right: 3vw;
    }
}