#menu-container {
    margin-left: auto;
    align-self: center;
    display: flex;
    align-items: center;
    /* position: fixed;
    right:2%;
    top:4%; */
    float:right;
}

#burger-menu {
    position:absolute;
    right:-20px;
    top:30px;
    cursor: pointer;
}
#menu-container.opened #burger-menu {
    margin-top: 5px
}

#burger-menu>div {
    width: 28px;
    height: 2px;
    background: #fff;
    margin-top: 8px;
    border-radius: 10px;
    transition: all .5s
}

#burger-menu>div:first-child {
    margin-top: 0
}

#menu {
    position: absolute;
    right: -3000px;
    top: 60px;
    width: 300px;
    height: 100%;
    transition: all .5s;
    text-align: right
}

#menu-container.opened #menu {
    right: -10px;
}

@media (max-width:786px){
    #menu-container.opened #menu {
        right: 10px;
    }
    #burger-menu {
        position:absolute;
        right:10px;
        top:30px;
        cursor: pointer;
    }
}

#menu-container.opened #burger-menu>div:nth-of-type(1) {
    display: none
}

#menu-container.opened #burger-menu>div:nth-of-type(2) {
    transform: rotate(45deg);
    transition: all .5s
}

#menu-container.opened #burger-menu>div:nth-of-type(3) {
    transform: rotate(-45deg);
    margin-top: -3px;
    transition: all .5s
}

#menu>ul>li {
    list-style: none;
    margin-top: 10px
}

#menu>ul>li a {
    /* font-family: pp_telegrafultrabold; */
    font-size: 18px;
    color: #fff;
    text-decoration: none
}

#menu>ul>li a.active,#menu>ul>li a:hover {
    text-shadow: 0 0 20px #fff
}

#menu-bg {
    display: none
}

#menu-container.opened #menu-bg {
    display: block;
    background: rgba(84 81 85 / 50%);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1
}