*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.box{
    position:fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    margin: 20px ;

    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: rgb(65, 64, 64);
    padding: 10px;
    z-index: 1;
}
body{
    height: 100Vh;
    width: 100%;
    background-color: rgb(94, 94, 94);
    z-index: -1000;
}
.t1,.t2,.t3{
    position: relative;
    transition: all .5s;
    height: 5px;
    width: 30px;
    background-color: rgb(255, 255, 255);
    margin: 0 ;
    border-radius: 2.5px;

}
.onclick .t1{
    transform:  rotate(45deg);
    margin-top: 0px;
}
.onclick .t2{
    margin-top: -30px;
    transform:  rotate(-45deg);
}
.onclick .t3{
    transform:  rotate(45deg);
    margin-top: -30px;
}

.list{
    position:fixed;
    width: 0px;
    height: 0px;
    top: 0px;
    left: 0px;
    transition: all 0.7s; 
    overflow: hidden;
}
.show{
    transition: all 0s; 
    width: 300px;
    height: 100vh;
    /* box-shadow: 0 0 30px rgb(51, 51, 51); */
}
.back{
    position:absolute;
    transition: all 0.3s;
    background-color: rgb(51, 51, 51);
    border-radius: 2em;
    width: 45px;
    height: 45px;
    top: 25px;
    left: 25px;
    z-index: -100;
}
.show .back{
    transition: all 1s; 
    transform: scale(110);

}
.onclick .t1,.onclick .t2,.onclick .t3{
    background-color: rgb(255, 0, 0);
}
.list .cont{
    width: 100%;
    transition: all 0s;
     position:absolute;
     left: -200px;

    color: transparent;
    
}
 .show .cont{
    transition: all 0.3s;
    top: 100px;
    left: 0px;
    color: #ffffff;
}
h1{
    padding-left: 20px;
    margin-bottom: 20px;
}
.muneitem{
    padding-left: 20px;
    width: 100%;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
}
.muneitem h3{
    position:relative;
    z-index: 10;
    display: flex;
top: 10px;
left: 20px;
}

.ainm{
    height: 2px;
    width: 2px;
    background-color: rgb(34, 34, 34);
    transition: all 0s;
    border-radius: 2em;
    display: block;
    margin: 0 auto;

}

/* transform: translateX(10px)  translateY(5px); */


.ainmaf{
    transition: all 1s;
    position: relative;
    transform: scale(200);
    background-color: rgba(43, 43, 43, 0);
}

.user{
        position: fixed;
    left: 230px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: rgb(65, 64, 64);
    color: #ffffff;
    display: flex;
    font-size: 25px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    top:-100px;
}
.show .user{
    top:20px;
    transition: all .3s ease-in;
}
.boxv{
    position: fixed;
    width: 300px;
    height: 50px;
    color: #ffffff;
    display: flex;
    font-size: 30px;
    font-weight: 600;
    align-items: center;
    justify-content: space-around;
    bottom:-100px;
}
.boxv i{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(65, 64, 64);
}

i:hover{

    background-color: #ffffff;
    color: rgb(65, 64, 64);
}
.show .boxv{
    bottom:28px;
    transition: all .3s ease-in;
}

.show .boxv i{
    transition: all .3s ease-in;
}