.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    display: none; /* hidden on desktop */
}
.menu-close {
    cursor: pointer;
    float: right;
}
/* Sidebar menu */
.ARside-menu {
    position: fixed;
    top: 0;
    left: -250px; /* hidden initially */
    width: 250px;
    height: 100%;
    background: #444;
    color: #fff;
    transition: left 0.3s ease;
    /*padding-top: 60px;*/
    z-index: 200;
    background: linear-gradient(to right, #0a1e3d 0%, #152d52 25%, #1f3c66 50%, #2a4b7a 75%, #355a8f 100%);
}

    .ARside-menu.active {
        left: 0; /* slide in */
    }

    .ARside-menu a {
        display: block;
        padding: 15px;
        color: #fff;
        text-decoration: none;
    }

        .ARside-menu a:hover {
            background: #555;
        }
/* Responsive */
@media (max-width: 1200px) {
    .nav-links {
        display: none !important; /* hide desktop links */
    }

    .menu-toggle {
        display: block !important; /* show hamburger */
        color: white !important;
        position: relative;
        z-index: 1000;
        padding: 5px 10px;
    }
}
@media (min-width: 1201px) {
    .ARside-menu {
        display: none !important;
    }
}