/* ==================================== */
/*		  	  Navigaton Menu		
/* ==================================== */
.overlay {
    z-index: 9997;
    position: fixed;
    top: 0;
    right:0;
    height: 100vh;
    width: 100%;
    margin-right: -100%;
    transition: .2s;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0) 10%, rgba(34,32,33,0) 71%);
}
.overlayWrap {
    margin-right:0%;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 10%, rgba(34,32,33,1) 71%);
}
.menuWrap {
    position: fixed;
    top: 0;
    right:-100%;
    height: 90vh;
    width: 100%;
    max-width: 100%;
    overflow: auto;
    transition: .1s;
    z-index: 9998;
}
.menuShow {
    right:0%;
}
/*Hamburger Button*/
.btnMenu {
    display: flex;
    flex-direction: column;
    width: 30px;
}
.btnMenu .bar {
    width: 100%;
    height: 1px;
    background-color: #444142;
    margin-bottom: 4.5px;
}
.btnMenu .bar:last-of-type {
    margin-bottom: 0;
}
.btnMenu.on {
    display: none;
}
.btnClose {
    display: none;
}
.btnClose {
    position: relative;
    width: 22px;
    height: 22px;
}
.btnClose .bar {
    position:absolute;
    top: 0;
    content:' ';
    width:1px;
    height:22px;
	background-color:#fff
}
.btnClose .bar:first-of-type {
    transform:rotate(45deg);
}
.btnClose .bar:last-of-type {
    transform:rotate(-45deg);
}
.btnClose.on {
    display: block;
}
    @media all and (max-width: 1023px) {
        .btnMenu {
            width: 30px;
        }
        .btnMenu .bar {
            margin-bottom: 5px;
        }
        .btnClose {
            width: 18px;
            height: 18px;
        }
        .btnClose .bar {
            height: 18px;
        }
    }
    @media all and (max-width: 767px) {
        .overlay {
            background: rgb(0,0,0);
            background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(34,32,33,0) 81%);
        }
        .overlayWrap {
            background: rgb(0,0,0);
            background: linear-gradient(180deg, rgba(0,0,0,1) 20%, rgba(34,32,33,1) 81%);
        }
        .btnMenu {
            width: 18px;
        }
        .btnMenu .bar {
            margin-bottom: 2px;
        }
        .btnClose {
            width: 16px;
            height: 16px;
        }
        .btnClose .bar {
            height:16px;
        }
    }
    @media all and (max-width: 640px) {
        header.floating-header .btnMenu .bar {
            background-color: var(--color-white);
        }
    }

/* full-nav-menu */
.menuWrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 95px 80px;
}
.menuWrap .menuTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 23px;
}
.menuWrap .menuTop .menuLogo a {
    display: flex;
    width: 280px;
}
.menuSliderItem {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 auto;
    margin-top: 100px;
    text-align: right;
}
.menuSliderItem .navItem {
    margin-bottom: 40px;
}
.menuSliderItem .navItem:last-of-type {
    margin-bottom: 0;
}
.menuSliderItem .navItem a {
    position: relative;
    color: var(--color-white);
    font-size: var(--font-32);
    font-weight: var(--fw-thin);
}
.menuSliderItem .navItem a::before {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: var(--transition);
}
.menuSliderItem .navItem a:hover::before,
.menuSliderItem .navItem.on a::before {
    width: 100%;
}

.menuWrap .lang {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}
.menuWrap .lang a {
    position: relative;
    margin-right: 20px;
    padding-right: 20px;
    color: var(--color-light);
    font-size: var(--font-20);
}
.menuWrap .lang a:last-of-type {
    margin-right: 0;
    padding-right: 0;
}
.menuWrap .lang a.on,
.menuWrap .lang a:hover {
    color: var(--color-white);
}
.menuWrap .lang a::after {
    position: absolute;
    top: 5px;
    right: 0;
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    background-color: #777576;
}
.menuWrap .lang a:last-of-type::after {
    display: none;
}
    @media all and (max-width: 1440px) {
        .menuWrap .menuTop .menuLogo a {
            width: 250px;
        }
    }
    @media all and (max-width: 1199px) {
        .menuWrap .menuTop .menuLogo a {
            width: 230px;
        }
    }
    @media all and (max-width: 1140px) {
        .menuWrap {
            padding: 40px 5%;
        }
    }
    @media all and (max-width: 1023px) {
        .menuWrap {
            padding: 40px 5%;
        }
        .menuWrap .menuTop {
            height: 25px;
        }
    }
    @media all and (max-width: 767px) {
        .menuWrap {
            padding: 30px 5%;
        }
        .menuWrap .menuTop {
            height: 13px;
        }
        .menuWrap .menuTop .menuLogo a {
            width: 200px;
        }
        .menuWrap .menuTop .btnClose {
            width: 22px;
        }
        .menuSliderItem {
            justify-content: flex-start;
            text-align: left;
        }
        .menuSliderItem .navItem {
            margin-bottom: 20px;
        }
        .menuSliderItem .navItem a {
            font-size: var(--font-19);
        }
        .menuWrap .lang {
            justify-content: flex-start;
            text-align: left;
        }
        .menuWrap .lang a {
            margin-right: 15px;
            padding-right: 15px;
            font-size: var(--font-12);
        }
        .menuWrap .lang a::after {
            top: 2px;
            height: 10px;
        }
    }
    @media all and (max-width: 640px) {
        .menuWrap .menuTop .menuLogo a {
            width: 155px;
        }
    }

