* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgb(246, 246, 246);
    z-index: 1;
}

.logo {
    position: absolute;
    top: 8px;
    left: 30px;
    width: 235px;
    height: 23px;
}

.logo a {
    display: block;
    width: 235px;
    height: 23px;
    background: url('../images/logo-en.png') no-repeat;
    text-indent: -9999px;
    overflow: hidden;  
}

.sidebar {
    position: fixed;
    top: 0px;
    right: -250px;
    width: 250px;
    height: 100%;
    font-family: calibri;
    background-color: rgb(246, 246, 246);
    transition: all .5s ease;
    z-index: 11;
}

.sidebar ul {
    margin-top: 60px;
}

.sidebar ul a {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 60px;
    font-size: 20px;
    color: #666;
    padding-left: 30px;
    letter-spacing: 2px;
    box-sizing: border-box;
    border-bottom: 1px solid #666;
    transition: all .4s;
}

ul li:hover a {
    padding-left: 40px;
    background-color: rgba(180, 180, 180, 0.5);
}

#check {
    display: none;
}


label #btn,
label #cancel {
    position: fixed;
    cursor: pointer;
    font-family: 'icomoon';
    font-style: normal;
    z-index: 111;
}

label #btn {
    right: 18px;
    top: 10px;
    font-size: 20px;
    color: rgb(0, 0, 0);
    transition: all .5s;
}

label #cancel {
    right: -100px;
    top: 12px;
    font-size: 20px;
    color: rgb(0, 0, 0);
    transition: all .5s ease;
}

#check:checked~.sidebar {
    right: 0;
}

#check:checked~label #btn {
    right: 20px;
    opacity: 0;
    pointer-events: none;
}

#check:checked~label #cancel {
    right: 20px;
}

#fp-nav ul li a.active span,
#fp-nav ul li a span {
    background-color: #fff !important;
}