.mobile-menu-bar {
    display: flex;
    color: white;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
    width: 100%;
    padding: 30px 20px 30px 15px;
    background-color: #0a1327;
    position: fixed;
    z-index: 999;
}

.topbar-mobile {
    max-height: 100%;
    height: calc(100% - 60px);
    margin-top: 60px;
    width: 100%;
    background-color: #0a1327;
    color: white;
    display: none;
    position: fixed;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 999;
}

.main-menu {
    list-style-type: none;
    padding: 0px 40px 0px 20px;
    font-size: 1.4em;
}

.main-menu li {
    padding-top: 10px;
}

.main-menu li:hover {
    color: #ffcc00;
}

.active {
    color: #ffcc00;
}

.sidebar {
    display: none;
}

.middle-menu {
    padding-top: 10px;
}

.sub-menu {
    list-style-type: none;
    padding: 35px 40px 20px 20px;
    font-size: 1.2em;
}

.sub-menu li:hover {
    color: #ffcc00;
}

.footer-menu {
    margin-top: auto;
    background-color: #0a0c13;
    width: 100%;
    color: darkgray;
}

a {
    text-decoration: inherit;
    color: inherit;
}

@media only screen and (min-width: 1200px) {
    .mobile-menu-bar {
        display: none;
    }

    .sidebar {
        height: 100%;
        width: 225px;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #0a1327;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .topbar-mobile {
        display: none;
    }

    .main-menu {
        list-style-type: none;
        padding: 60px 0px 0px 25px;
        font-size: 1.1em;
    }

    .main-menu li {
        padding-top: 10px;
    }

    .main-menu li:hover {
        color: #ffcc00;
    }

    .active {
        color: #ffcc00;
    }

    .sub-menu {
        list-style-type: none;
        padding: 35px 0px 20px 25px;
        font-size: 1.0em;
    }

    .sub-menu li:hover {
        color: #ffcc00;
    }

    .footer-menu {
        margin-top: auto;
        background-color: #0a0c13;
        width: 100%;
        color: darkgray;
    }

    a {
        text-decoration: inherit;
        color: inherit;
    }
}