/* ==================================== */
/*		  	  Navigaton Menu		
/* ==================================== */
.mobile-menu {
    display: none
}
@media all and (max-width:1200px) {
    .mobile-menu {
        display: block;
    }
    .overlay {
        position: fixed;
        top: 0;
        right:0;
        height: 100vh;
        width: 100%;
        margin-right: -100%;
        transition: .35s;
        z-index: 9999998;
        background: rgba(0, 0, 0, 0);
        opacity: 0;
    }
    .overlay-wrap {
        margin-right:0%;
        background: rgba(0, 0, 0, 0.9);
        opacity: 1;
    }
    .menu-wrap {
        position: fixed;
        top: 0;
        right:-50%;
        height: 100%;
        width: 50%;
        overflow: auto;
        transition: .45s;
        z-index: 9999999;
    }
    .menu-show {
        right:0%;
    }
    .menu-sidebar {
        width:100%;
        height:100%;
        padding:0px 5%;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .menu-sidebar .menu {
        width:100%;
        display: flex;
        flex-direction: column;
    }
    .menu-sidebar .menu > li {
        width:100%;
        margin-bottom:30px;
        padding-top: 30px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items:flex-start;
        flex-direction: column;
        border-top:1px solid rgba(255,255,255,0.13)
    }


    .menu-sidebar .menu > li:first-child{
        border-top: 0;
        padding-top: 0;
    }
    .menu-sidebar .menu > li:last-child{
        margin-bottom: 0;
    }
    .menu-sidebar .menu > li > a {
        color: #FFFFFF;
        font-size:25px;       
        font-weight: bold;
    }
    .menu-sidebar .sub-menu {
        padding:0;
        display: flex;
        flex-wrap: wrap;
        margin-top:8px;
        height:auto;
        width:100%
    }
    .menu-sidebar .sub-menu > li {
        position: relative;
        margin-left: 30px;
    }
    .menu-sidebar .sub-menu > li.on a {
        color:#FFFFFF
    }
    .menu-sidebar .sub-menu > li:not(:first-child)::before{
        content: "";
        display: inline-block;
        position: absolute;
        width: 1px;
        height: 50%;
        background: #d9d9d9;
        left:-15px;
        top:50%;
        transform: translateY(-50%);
    }
    .menu-sidebar .sub-menu > li:first-child{
        margin-left: 0;
    }
    .menu-sidebar  li > .sub-menu > li > a  {
        font-size:20px;
        position: relative;
        color:#D9D9D9;
    }
    /*Hamburger Button*/
    .toggle-button {
        position: fixed;
        width: 44px;
        height: 40px;
        top:43px;
        right: 5%;
        padding: 4px;
        transition: .25s;
        z-index: 999999999999;
    }
    .toggle-button:hover {
        cursor: pointer;
    }
    .toggle-button .menu-bar {
        position: absolute;
        border-radius: 1px;
        width: 80%;
        transition: .5s;
        height:1px
    }
    .toggle-button .menu-bar-top {
        background-color: #fff;
        border-bottom: none;
        top: 0;
    }
    .toggle-button .menu-bar-middle {
        width:20px;
        height: 1px;
        background-color: #fff;
        margin-top: 7px;
        margin-bottom: 7px;
        top: 4px;
        right:7%
    }
    .toggle-button .menu-bar-bottom {
        background-color: #fff;
        border-top: none;
        top: 22px;
    }

    .button-open {
        position: fixed;
        right: 5%;
    }
    .button-open .menu-bar-top {
        background-color: #FFFFFF;
        transform: rotate(45deg) translate(8px, 8px);
        transition: .5s;
    }
    .button-open .menu-bar-middle {
        background-color: #FFFFFF;
        transform: translate(230px);
        transition: .1s ease-in;
        opacity: 0;
    }
    .button-open .menu-bar-bottom {
        background-color: #FFFFFF;
        transform: rotate(-45deg) translate(7px, -7px);
        transition: .5s;
    }
    .toggle-fixed .menu-bar-top,
    .toggle-fixed .menu-bar-middle,
    .toggle-fixed .menu-bar-bottom {
        background-color: #2d2d2d
    }
    .toggle-fixed .button-open .menu-bar-top,
    .toggle-fixed .button-open .menu-bar-middle,
    .toggle-fixed .button-open .menu-bar-bottom {
        background-color: #FFFFFF
    }
    .menu-wrap {
        width: 100%;
        max-width:100%;
        right: -100%;
    }
    .menu-show {
        right: 0;
    }

    .toggle-button .menu-bar-bottom {
        top:18px
    }
    .toggle-button .menu-bar-middle {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .button-open .menu-bar-bottom {
        top:21px
    }
    .toggle-fixed .toggle-button {
        top:32px;
    }
    
}
@media all and (max-width:640px) {
    .menu-sidebar .menu > li {
        margin-bottom:20px;
        padding-top: 20px;
    }

    .toggle-button {
        top:25px;
        right:20px;
        width:32px;
        height:20px;
    }
    .toggle-button .menu-bar-middle{
        margin-top:3px;
        margin-bottom: 3px;
    }
    .toggle-button .menu-bar-bottom{
        top:14px
    }
    .button-open .menu-bar-bottom{
        top:21px
    }
    .menu-sidebar .menu > li > a{
        font-size: 20px;
    }
    .menu-sidebar  li > .sub-menu > li > a  {
        font-size:15px;
    }

    .toggle-fixed .toggle-button {
        top:16px;
    }
}