.logo{
    width: 157px;
    position: fixed;
    top: 4%;
    left: 2%;
    z-index: 10;
}
.logo img{
    width: 100%;
    font-size: 0;
}

.humber{
    width: 100%;
    font-size: 0;
    padding-bottom: 0%;
    transition: padding .5s ease-in-out;
    cursor: pointer;
}

.padding{
    padding-bottom: 50%;
    transition: padding .5s ease-in-out;
}

.humber img{
    width: 100%;
    font-size: 0;
}

.MenuArea{
    position: fixed;
    top: 4%;
    right: 2%;
    z-index: 20;
    background-image: url(../images/Menu-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0%;
}

.linkArea{
    text-align: center;
    max-width: 275px;
    display: none;
}
.linkArea .link a{
    font-size: 1rem;
    line-height: 0px;
    color: #736752;
    text-decoration: none;
}
.linkArea .link::after{
    content: '|';
    display: block;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 4px 0%;
}
.linkArea .link:last-child::after{
    content: '';
}

@media screen and (max-width:991px){
    .logo{
        width: 100px;
    }
    .humber{
        cursor: pointer;
    }
    .MenuArea{
        padding: 2% 0%;
    }
    .linkArea .link a {
        font-size: 0.9rem;
    }
    .padding {
        padding-bottom: 10%;
    }
}