.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    width: 100%;
    position: fixed;
    top: 0%;
    left: 0;
    z-index: 99999;
    background-color: transparent;
    transition: background-color 1s ease-in-out;
}

.navbar.active{
    background-color: #fff;
    transition: background-color .5s ease-in-out;
}

.navbar .navbar-brand {
    padding: 10px 2%;
}
.navbar .navbar-brand img{
    width: 150px;
    font-size: 0;
}

.linkArea{
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.linkArea .nav-link{
    min-width: 120px;
}

.linkArea .nav-link .btn p{
    font-size: 1rem;
    color: #fff;
    font-family: 'Noto Sans TC', sans-serif;
    position: relative;
    transition: color .5s ease-in-out;
}

.linkArea .nav-link .btn p.active{
    color: #584435;
    transition: color .5s ease-in-out;
}

.linkArea .nav-link .btn p::after{
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0%;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: all 1s ease-in-out;
}

.linkArea .nav-link .btn p.active::after{
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0%;
    width: 0%;
    height: 1px;
    background-color: #584435;
    transition: all 1s ease-in-out;
}

.linkArea .nav-link .btn:hover p::after{
    width: 95%;
    transition: all 1s ease-in-out;
}

.Case:hover .Dropmenu{
    display: block;
    transition: all 1s ease-in-out;
}

.Case .Dropmenu{
    display: none;
    position: absolute;
    left: 50%;
    bottom: -160%;
    transform: translateX(-50%);
    width: 80%;
    background-color: #584435;
    padding: 8px;
    z-index: 99999;
    transition: all 1s ease-in-out;
}

.Case .Dropmenu::before{
    content: '';
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid #584435;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.Case .Dropmenu .nav-link{
    width: 100%;
    min-width: auto;
    text-align: center;
    padding: 0;
    background-color: transparent;
}

.Case .Dropmenu .nav-link:hover{
    background-color: #fff;
}

.Case .Dropmenu .line{
    width: 100%;
    height: 1px;
    margin: 5px auto;
    background-color: #fff;
}

.Case .Dropmenu .btn{
    color: #fff;
    width: 100%;
    padding: 0;
    text-align: center;
}

.Case .Dropmenu .nav-link:hover .btn{
    color: #584435;
}

.humber{
    display: none;
    width: 25px;
    height: 25px;
    transition: all 1s ease-in-out;
}

.humber::before{
    content: '';
    position: absolute;
    top: 30%;
    left: 0%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 1s ease-in-out;
}

.humber.color::before{
    background-color: #584435;
}


.humber::after{
    content: '';
    position: absolute;
    bottom: 30%;
    left: 0%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 1s ease-in-out;
}

.humber.color::after{
    background-color: #584435;
}

.fbLink{
    width: 3vw;
    position: fixed;
    right: 2%;
    bottom: 3%;
    z-index: 100;
}

@media screen and (max-width: 1560px){
    .linkArea .nav-link .btn p{
        font-size: 0.95rem;
    }
    .navbar .navbar-brand {
        padding: 10px 1%;
    }
    .navbar .navbar-brand img {
        width: 130px;
    }
}

@media screen and (max-width: 1024px){
    .linkArea .nav-link .btn p{
        font-size: 0.85rem;
    }
}

@media screen and (max-width:768px){
    .humber{
        display: block;
    }
    .mobileNav{
        flex-direction: column;
        position: fixed;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100vh;
        background-color: #ece8e1;
        z-index: 999;
        transform: translateY(-100%);
        transition: all 1s ease-in-out;
        padding-top: 20%;
    }

    .mobileNav.active{
        transform: translateY(0%);
        transition: all 1s ease-in-out;
    }
    .mobileNav .nav-link{
        min-width: unset;
        width: 100%;
        text-align: center;
        padding-top: 5%;
        border-bottom: 1px solid #584435;
    }
    .mobileNav .nav-link .btn p{
        font-size: 0.88rem;
        color: #584435;
        text-align: center;
    }
    .Case .Dropmenu{
        display: block;
        position: absolute;
        right: 0%;
        top: 90%;
        left: unset;
        bottom: unset;
        transform: translateY(-50%) translateX(100%);
        width: 30%;
    }
    .Case:hover .Dropmenu{
        transform: translateY(-50%) translateX(0%);
    }
    .Case .Dropmenu::before{
        content: unset;
    }
    .fbLink{
        width: 30px;
    }

    .humber.active::before{
        top: 50%;
        transform-origin: center center;
        transform: translateY(-50%) rotate(45deg);
    }

    .humber.active::after{
        bottom: 50%;
        transform-origin: center;
        transform: translateY(-50%) rotate(-45deg);
    }
}