header {
    position: fixed;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    transition: all 300ms ease-out;
}

header.active {
    background-color: #030212;
    height: 60px;
    transition: all 300ms ease-out;
}

#weblogo-desktop {
    visibility: hidden;
}

#weblogo-mobile {
    visibility: unset;
}

.header-logo {
    margin: 20px;
    height: 20px;
}

.header-left a {
    display: block;
}

.navbar {
    display: none;
}

.side-nav {
    background-color: #030212;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.25s;
}

.side-nav a {
    padding: 1em 0 1em 1.5em;
    text-decoration: none;
    font-size: 1.1em;
    color: #ffffff;
    display: block;
    white-space: nowrap;
    transition: 0.25s;
}

.side-nav a:hover {
    color: #acacac;
    transition: 0.25s;
    border-left: 3px solid cyan;
}

.list1 {
    display: none;
    font-size: 0.9em;
}

.list1:hover {
    display: block;
}

.list1 a {
    margin-left: 15px;
}

.list1 a:hover {
    border-style: none;
}

a:hover + .list1 {
    display: block;
}

.menu-button {
    -webkit-tap-highlight-color: transparent;
    width: 65px;
    height: 58px; 
    position: fixed;
    top: 0;
    right: 0;
}

input#menu-button-checkbox {
    display: none;
}
 
.line {
    width: 25px; 
    height: 2px;
    position: absolute; 
    background: #fff;
    display: block; 
    transition: 0.5s; 
    transform-origin: center;
    margin-top: 20px;
    left: 20px;
}
 
.line:nth-child(1) { top: 0px; }
.line:nth-child(2) { top: 8px; }
.line:nth-child(3) { top: 16px; }
 
#menu-button-checkbox:checked + .menu-button .line:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
}

#menu-button-checkbox:checked + .menu-button .line:nth-child(2) {
    opacity: 0;
}
 
#menu-button-checkbox:checked + .menu-button .line:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
}

@media only screen and (min-width: 650px) {

    #weblogo-desktop {
        visibility: unset;
    }
    
    #weblogo-mobile {
        visibility: hidden;
    }

    .mobile-only {
        display: none;
    }

    header:hover {
        background-color: #030212;
    }

    header {
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        width: 100%;
    }

    header a {
        color: white;
        transition: 0.2s;
        text-decoration: none;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        width: 850px;
        margin: 0 auto;
    }

    .navbar {
        display: inline-flex;
        list-style-type: none;
        height: 60px;
    }

    .navbar .topelement {
        text-align: left;
        padding: 0;
        margin-top: 22px;
        margin-bottom: 22px;
        margin-left: 50px;
    }


    .navbar li:hover > ul, .navbar li ul:hover {
        display: block;
        opacity: 1;
    }

    .navbar li a:hover {
        color: #bdbdbd;
        transition: 0.2s;
    }

    .navbar li img {
        margin-bottom: 1px;
        margin-right: 20px;
    }

    .subnavbar {
        background-color: #030212;
        display: none;
        opacity: 0;
        font-size: 15px;
        text-align: left;
        list-style-type: none;
        padding-top: 35px;
        margin-top: -1em;
        margin-left: -30px;
        border-radius: 0 0 5px 5px;
    }

    .subnavbar li {
        padding: 20px 20px 20px 30px;
    }

    .header-left {
        text-align: left;
    }

    .header-right {
        text-align: right;
    }

    .header-left .header-right {
        flex: 0 0 250px;
    }

}

body{display:block !important}