#drawer{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* background: #0c1928; */
    background: rgb(0, 0, 135);
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-left: 1px solid rgb(255, 255, 255, 0.1);
}
#drawer.open{
    transform: translateX(50%);
}
.drawer_list{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    width: 100%;
    height: 100%;
    /* gap: 20px; */
    padding-top: 100px;
}
.drawer_link{
    color: #fff;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.drawer_link:hover{
    /* color: #b9007c; */
    background: rgb(0, 0, 100);
}
.drawer_link.active{
    color: #b9007c;
}
@media screen and (min-width: 568px) {
    #drawer {
        display: none;
    }
}
