header{
    position: relative;
    z-index: 11;
}
.desktop-menu{
    position: fixed;
    background-color: transparent;
    height: 80px;
    background-color:  rgba(0, 0, 0, 0.6);
    padding: 0px 48px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.desktop-menu.scrolled{
    height: 60px;
}
.desktop-menu-placeholder{
    height: 80px;
}
.logo{
    margin-top: 24px;
    position: relative;
    z-index: 10;
    height: 80px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.mobile-menu .logo{
    height: 48px;
    margin-top: 7px;
}
.menu{
    list-style:none;
    margin: 0px;
    padding: 0px;
}
.desktop-menu .menu{
    line-height: 16px;
    padding: 20px 0px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.desktop-menu .menu > li{
    float:left;
    padding: 0px 0px;
}
.desktop-menu .menu > li > a .line{
    position: absolute;
    right: 0px;
    top: 15px;
    width: 1px;
    background-color:#555;
    height: 13px;
}
.desktop-menu .menu > li:last-of-type a .line{
    width: 0px;
}
.desktop-menu .menu li:first-of-type{
    margin-left:0px;
}
.desktop-menu .menu li a{
    color:#999;
    display: inline-block;
    position: relative;
    z-index: 20;
    padding: 12px 0px;
    -webkit-transition: all 0.05s;
    transition: all 0.05s;
}
.desktop-menu.white .menu li a,
.desktop-menu.permanent-white .menu li a,
.desktop-menu.scrolled .menu li a{
    color:#999;   
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.desktop-menu .menu > li:hover > a{
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color:#fff;
}
.desktop-menu .menu li.current-menu-ancestor > a,
.desktop-menu .menu li.current-menu-item > a{
    color:#fff; 
}
.desktop-menu .menu > li > a{
    padding: 12px 9px;
}  

/**      test-menu           **/
.desktop-menu.white .top-menu a,
.desktop-menu.permanent-white .top-menu a,
.desktop-menu.scrolled .top-menu a{
    color:#000;
}
.mobile-menu-wrapper{
    display:none;
}
.mobile-menu{
    padding: 0px 24px;
    height: 60px;
    background-color:  rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0px;
    z-index: 61;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.mobile-menu.active{
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
    background-color: #fff;
}
.mobile-menu .menu-trigger .slided-in,
.mobile-menu .menu-trigger .slided-out{
    float: right;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    right: 20px;
    top: 12px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}
.mobile-menu .menu-trigger .slided-out{
    display:none;   
}
.mobile-menu .menu-trigger .slided-in img,
.mobile-menu .menu-trigger .slided-out img{
    height: 44px;
    margin-top: 7px;
}
.mobile-menu.active .text-logo{
    color: #000!important;
}
.mobile-menu-container{
    position: fixed;
    opacity: 1;
    top:60px;
    overflow: auto;
    right:0;
    bottom:0;
    left:0;
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    z-index: 60;
}
.mobile-menu-overlay{
    position: fixed;
    width: 100%;
    height: 150%;
    opacity: 1;
    overflow:visible;
    top:60px;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    z-index: 59;
    background-color:#fff;
}
.mobile-menu-header{
    height: 45px;
    line-height: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 0px;
    text-align:left;
    padding-left: 30px;
    font-size: 15px;
    font-weight: 500;
    color:#fff;
    text-transform: uppercase;
}
.mobile-menu-header span{
    color: #1de69d;  
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}
.mobile-menu-container.active,
.mobile-menu-overlay.active{
    -webkit-transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.mobile-menu-container.fadeout,
.mobile-menu-overlay.fadeout{
    -webkit-transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    opacity:0;
}
.menu-trigger .line{
    width: 100%;
    height: 2px;
    background-color:#1de69d;
    position: absolute;
    bottom: 18px;
}
.mobile-menu-container .menu{
    padding: 36px 0px 36px 0px;
    text-transform: uppercase;
}
.mobile-menu-container .menu ul{
    list-style:none;
}
.mobile-menu-container .menu li{
    width: 100%;
    float:left;
    margin-bottom: 9px;
}
.mobile-menu-container .menu > li > ul{
    list-style:none;
    width: 100%;
    float:left;
    margin: 21px 0px 3px 0px;
}
.mobile-menu-container .menu li a{
    color: #000;
    position: relative;
    text-transform: uppercase;
    font-size: 18px;
    float:left;
    width: 100%;
    text-align:center;
    padding: 9px 0px;
    font-weight: 700;
}
.mobile-menu-container .menu > li > a .line{
    width: 100%;   
    bottom: 0px;
}
.text-logo-wrapper{
    float:left;
    padding: 12px 0px;
    margin-top: 18px;
}
.text-logo{
    margin-right: 24px;
}
.text-logo .line{
    background-color:#999;
    position: absolute;
    height: 13px;
    width: 1px;
    bottom: 2px;
    right: -10px;
}