@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
*{
    padding: 0;
    margin: 0; 
   }
/**********ul.toogle*********/
.wrap ul.toggle{
    position: fixed;
    z-index: 5;
    top: 5%;  right: 5%;
    width: 50px;   height: 50px;
    cursor: pointer;
}
.wrap ul.toggle li{
    position: absolute;
    left: 5%;
    transform: translateY(-50%);
    height: 5px;  width: 90%;
    list-style: none;
    background: #455852;
    transition: .7s;
}
.wrap ul.toggle li:nth-of-type(1){
    top: 20%;
}
.wrap ul.toggle li:nth-of-type(2){
    top: 50%;
}
.wrap ul.toggle li:nth-of-type(3){
    top: 80%;
}
.wrap ul.toggle.active li:nth-of-type(1){
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.wrap ul.toggle.active li:nth-of-type(2){
    left: -100%;
    opacity: 0;
}
.wrap ul.toggle.active li:nth-of-type(3){
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/******Sidebar******/
.wrap .sidebar{
    position: fixed;
    top: 0;  left: -100vw;
    background: rgba(255,255,255,0.8);
    width: 100vw;   height: 100vh;
    box-sizing: border-box;
    padding: 50px 40px;
    text-align: center;
    transition: .3s;
    z-index: 4;
}
.wrap .sidebar.active{
    left: 0;
}
.wrap .sidebar img{
    position: relative;
    width: 150px;  height: 150px;
    border-radius: 50%;
    background: #fff;    
}
.wrap .sidebar img:hover{
    background:#ff5722;
}
.wrap .sidebar ul.menu{
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
.wrap .sidebar ul.menu li{
    list-style: none;
}
.wrap .sidebar ul.menu li a{
    display: inline-block;
    position: relative;
    text-decoration: none;  text-transform: uppercase;
    color: #455852;
    width: 100%;  padding: 2vh;
    box-sizing: border-box;
    font-size: 24px;
	font-weight: 900;
}
.wrap .sidebar ul.menu li:hover a{
    background: #455852;
    color: #fff;
}