#menu-btn {
    position: fixed;
    top: 40px;
    right: 30px;
    z-index: 2010;
}

#menu-btn .menu-bar {
    background: #1E2A85;
    position: absolute;
    color: #FFF;
    height: 50px;
    right: 0;
    top: 0;
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 70px;
    z-index: 2020;
    transition: .25s ease-in-out;
}

#menu-btn .menu-bar span {
    line-height: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
}

#menu-btn .menu-circle {
    background: var(--vgs-rood);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 10px;
    right: 0;
    top: 0;
    z-index: 2030;
    position: absolute;
}

#nav-icon3 {
    width: 25px;
    height: 25px;
    position: relative;
    margin: 5px auto;
    margin-left: 2px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFF;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

/* Icon 3 */

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
    top: 8px;
}

#nav-icon3 span:nth-child(4) {
    top: 16px;
}

#menu-btn.open .menu-bar {
    background: #FFF;
    color: #1E2A85;
}

#menu-btn.open #nav-icon3 span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

#menu-btn.open #nav-icon3 span:nth-child(2) {
    transform: rotate(45deg);
}

#menu-btn.open #nav-icon3 span:nth-child(3) {
    transform: rotate(-45deg);
}

#menu-btn.open #nav-icon3 span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

#menu-side-bar {
    position: fixed;
    z-index: 2008;
    right: 0;
    top: 0;
    margin-left: -340px;
    bottom: 0;
    width: 343px;
    background: #121B59;
    visibility: hidden;
    opacity: 0;
    transition: .5s ease-in-out;
}

#menu-side-bar.open {
    visibility: visible;
    opacity: 1;
}

#menu-side-bar ul {
    list-style-type: none;
    text-align: right;
    margin-top: 130px;
    padding: 0;
}

#menu-side-bar ul li {
    color: #FFF;
    padding: 0;
    masrgin-bottom: 2px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: .1s ease-in-out;
}

#menu-side-bar ul li a {
    display: block;
    padding: 10px;
    padding-right: 35px;
    color: #FFF;
}

#menu-side-bar ul li:hover {
    background: var(--vgs-rood);
}

#menu-side-bar ul li:hover a {
    color: #FFF;
    text-decoration: none;
}

#menu-side-bar ul li.active {
    background: #2F81E5;
    color: #FFF;
}

#menu-side-bar ul li.active a {
    color: #FFF;
}

.current-page {
    position: fixed;
    top: 40px;
    line-height: 50px;
    right: 200px;
    font-weight: 400;
    z-index: 2000;
}

@media (max-width: 768px) {
    .current-page {
        right: inherit;
        left: 24px;
    }
}

.current-page span {
    color: silver;
}