header {
    box-shadow: 0 0 65px rgba(0,0,0,.09);
}

.middlebyNav {
    background-color: white;
    display: flex;
    justify-content: center;
}

.middlebyNavContainer {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#middlebyLogo {
    flex: 0 0 auto;
}

#navbarNavDropdown {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    padding: 0;
    margin: 0 18px;
}

.middlebyNavContainer ul {
    display: flex;
    flex: 3 1 auto;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.middlebyNavContainer ul li {
    display: block;
    list-style-type: none;
}

    .middlebyNavContainer ul li > a {
        font-family: 'Fira Sans', sans-serif;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #111;
        padding: .5rem;
        transition-duration: .3s;
    }

.middlebyNavContainer a:hover {
    color: #d21e2b;
    background: #fff;
}

#hamburgerToggle {
    display: none;
}

.subMenu {
    display: none;
    position: absolute;
    z-index: 3000;
    min-width: 8rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
}
    .subMenu a {
        font-size: 12px;
        font-weight: bolder;
        display: block;
        padding: .25rem 2rem;
        margin: .125rem 0 0;
        clear: both;
        color: #212529;
        text-align: inherit;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        transition-duration: .3s;
        text-decoration: none;
        width: 100%;
    }

    .subMenu .row .column a {
        font-size: 12px;
        font-weight: bolder;
        display: block;
        padding: .25rem 2rem;
        margin: .125rem 0 0;
        clear: both;
        color: #212529;
        text-align: inherit;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        transition-duration: .3s;
        text-decoration: none;
        width: 100%;
    }

    .subMenu .row .column a:hover {
        font-size: 12px;
        font-weight: bolder;
        display: block;
        padding: .25rem 2rem;
        margin: .125rem 0 0;
        clear: both;
        color: #d21e2b;
        text-align: inherit;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        transition-duration: .3s;
        text-decoration: none;
        width: 100%;
    }

@media screen and (max-width: 1300px) {
    #hamburgerToggle {
        display: inline-block;
        -webkit-appearance: button;
        cursor: pointer;
        padding: .25rem .75rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: transparent;
        border: 1px solid transparent;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
        border-radius: .25rem;
        overflow: visible;
    }

        #hamburgerToggle > span {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(204,27,50)' stroke-width='2.25' stroke-linecap='square' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
            display: inline-block;
            width: 1.5em;
            height: 1.5em;
            vertical-align: middle;
            content: "";
            background: no-repeat center center;
            background-size: auto;
            background-size: 100% 100%;
            cursor: pointer;
            color: rgba(0,0,0,.5);
            font-size: 1.25rem;
            line-height: 1;
        }

    #navbarNavDropdown {
        display: none;
        position: absolute;
        top: 100px;
        left: -20px;
        background-color: white;
        z-index: 3000;
        width: calc(100% + 20px);
        padding: 5px;
        padding-bottom: 0px;
        border-bottom: 1px solid #f1f1f1;
        box-shadow: 5px 10px 8px #888888
    }

    #navbarNavDropdown > ul {
        flex-direction: column;
        align-items: flex-start;
        margin: auto;
    }

    #navbarNavDropdown > ul > li {
        padding-top: 18px;
        padding-bottom: 18px;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 3%;
        margin-left: 3%;
        border-bottom: 1px solid #f1f1f1;
        width: 95%;
    }

    #navbarNavDropdown > ul > li > a {
        display: inline-block;
        width: 100%;
    }

    .middlebyNavContainer {
        justify-content: space-between;
    }

    .subMenu {
        position: relative;
    }
}