* {
    margin: 0;
    padding: 0;
}
.li {
    width: 140px;
}
body {
    overflow: hidden;
    color: #fff;
}

ul {
    list-style: none;
}

#wrapper {
	/* width: 100%; */
	height: 100%;
	position: fixed;
	top: 0;
    bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.5s;
}

#wrapper .sidebar {
    width: 140px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -140px;
    bottom: 0;
    /* overflow: hidden; */
    background-color: rgba(58, 150, 42, 0.8);
}

#wrapper button {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0);
    background-image: url(../images/button-s.png);
    background-repeat: no-repeat;
    background-size: 100%;
    border: 0;
    outline: none;
    position: absolute;
    top: 20px;
    left: 10px;
    transition: all 0.5s;
    cursor: pointer;
}

.headSculpture {
    padding: 10px 0;
    text-align: center;
    background-color: rgba(58, 150, 42, 1);
}

.headSculpture img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: 0 auto;
    transform: translate(0,-135px);
    transition: all 1s;
}
.headSculpture .img{
    transform: translate(0,0);
}
.headSculpture p {
    margin: 0 auto;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    color: #fff;
    transform: translate(-200px,0);
    transition: all 1s;
}
.headSculpture .opacity{
    transform: translate(0,0);
}

.option ul {
    padding: 15px 0;
    max-height: calc(100vh - 114px);
    overflow-y: scroll;
}

.option ul li {
    align-items: center;
    margin-top: 15px;
    cursor: pointer;
    color: #fff;
    transform: translateZ(0);
    position: relative;
    transition-property: color;
    transition-duration: 0.4s;
    transition: all 0.4s;
    height: 50px;
    /* line-height: 50px; */
}
.option ul li{
    transform: translate(-200px,0);
}
.sidebar .option ul li.li{
    transform: translate(0,0);
}

.option ul li:hover,
.option ul li:focus,
.option ul li:active {
    color: #ffffff;
}
.option ul li:hover:before,
.option ul li:focus:before,
.option ul li:active:before {
    transform: scaleX(1);
}

.option ul li img {
    width: 25px;
    height: 25px;
}

.option ul li p {
    height: 50px;
    /* line-height: 50px; */
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
    /* width: 122px; */
    margin: 0 auto;
    position: relative;
    display: block;
}
.option ul li p span {
    line-height: 20px;
}