.menubar{
    margin-top: 10px;
    padding: 10px;
    background-color: transparent;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    transition: all .3s;
}

.menubar ul{
    margin-top: 15px;
}

.menubar ul li{
    display: inline;
    padding: 0 10px;
}

.menubar ul li a{
    color: black;
    transition: all .5s;
}

.menubar ul li a:hover{
    color: #5755d9;
}

.scrolled{
    margin-top: 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.911);
    box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.479);
    backdrop-filter: blur(5px);
    /*background-color: rgb(20, 19, 19);*/
}





#mobil-menu-area-bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #1a152569;
    z-index: 9999;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

#mobil-menu-area{
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.479);
    width: 300px;
    height: 100vh;
    z-index: 9999;
    border-radius: 0 20px 20px 0;
    border-right: 10px solid #5755d9;
    transition: all .5s;
    margin-left: -400px;
}

#mobil-menu-alt-close{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}


#mobil-menu-alt-close i{
    font-size: 25px;
    color: white;
    background-color: #5755d9;
    border: 3px solid #5755d9; border-right: 0;
    padding: 5px;
    border-radius: 50px 0 0 50px;
    transition: all .5s;
    cursor: pointer;
}

#mobil-menu-alt-close i:hover{
    padding-right: 15px;
}

.mobil-menu-area{
    margin-left: 30px;
    margin-top: 10px;
}

.mobil-menu-list{
    font-size: 20px;
    margin: 20px 0;
}

.mobil-menu-list i{
    color: #5755d9;
}