.header-nav {
    text-align: right;
	position: relative;
	z-index: 99;
}

.header-nav.scroll-fix {
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    /* backdrop-filter: blur(10px); */
    -webkit-backdrop-filter: blur(10px);
    padding-bottom: 10px;
}

nav {
    max-width : 1140px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.nav-brand {
	background: url(/web/assets/images/logo-h.svg) no-repeat;
	width: 209px;
	height: 44px;
	background-size: contain;
	margin-top: 32px;
	float: left;
}

@media screen and (max-width: 1140px) {
    .nav-brand {
        margin-left : 2rem;
    }
}

/* Header Menu */
.general-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 22px!important;
    float: right;
}

@media screen and (max-width: 1140px) {
    .general-menu-container {
        display: none;
    }
}

.general-menu-container a, .general-menu-container {
    font-size: 16px;
	min-width: 90px;
	color: #fff;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	transition: all .5s;
	position: relative;
}

.nav-btn:hover {
    font-weight: bold;
    color: #71B1C5;
}

.nav-btn.active {
    color: #71B1C5;
	font-weight: bold;
}

.nav-btn-main:hover:before {
    content: '';
    display: block;
    width: 2px;
    height: 35px;
    background: #71B1C5;
    position: absolute;
    left: 50%;
    top: -23px;
    transform: translateX(-50%);
    -webkit-animation: grow .5s 1;
    animation: grow .5s 1;
}

.nav-btn-main:hover:after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    +border-radius(50%);
    background: #71B1C5;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all .5s;
}

@keyframes grow {
	0% {
        height: 0;
    }
	100% {
        height: 35px;
    }
}

@-webkit-keyframes grow {
	0% {
        height: 0;
    }
	100% {
        height: 35px;
    }
}


/* nav 上的下拉選單 */
.nav-sub-menu:hover .nav-sub-menu-container{
    display: block;
}


.nav-sub-menu-handler {
    cursor:pointer;
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 0;
    background-color: inherit;
    font-family: inherit;
    /* margin-top: 14px; */
    margin-left : 14px;
    transition: all .5s;
}

.nav-sub-menu-container {
    overflow: hidden;
	/* display: none; */
	position: absolute;
	background-color: rgba(0, 0, 0, .5);
	+border-radius(4px);
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);;
	z-index: 1000;
    right : 0;
    top : 50px;
    height : 200px;
}

@media screen and (min-width: 1140px) {
    .mobil-menu-container {
        display: none;
    }
}