/* ==================================== */
/*		  	  Navigaton Menu		
/* ==================================== */
.mobileMenu {
    display: none
}
@media all and (max-width: 1200px) {
    .mobileMenu {
        display: block;
    }
    .overlay {
        position: fixed;
        top: 0;
        right:0;
        height: 100vh;
        width: 100%;
        margin-right: -100%;
        transition: .35s;
        z-index: 99999999;
        background: rgba(0, 0, 0, 0);
        opacity: 0;
    }
    .overlayWrap {
        margin-right:0%;
        background: var(--color-dark);
        opacity: 1;
    }
    .menuWrap {
        background: var(--color-dark);
        position: fixed;
        top: 0;
        right:-50%;
        height: 100%;
        width: 50%;
        overflow: auto;
        transition: .45s;
        z-index: 999999999;
    }
    .menuShow{
        right:0%;
    }
    .menuSidebar {
        width:100%;
        height:100%;
        padding:0px 10%;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .menuSidebar .menu {
        width:100%;
        display: flex;
        flex-direction: column;
    }
    .menuSidebar .menu > li {
        width:100%;
        margin-bottom: var(--space-25);
    }
    .menuSidebar .menu > li > a {
        color: var(--color-white);
        font-size: var(--font-25);
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
    }
    .menuSidebar .subMenu {
        padding-top: var(--space-20);
    }
    .menuSidebar .subMenu > li {
        width:100%;
        margin-bottom: var(--space-10);
        padding-left: var(--space-20);
        color: var(--color-white);
    }
    .menuSidebar .subMenu > li > a  {
        font-size: var(--font-20);
        position: relative;
    }
    .menuSidebar .subMenu > li > ul {
        display: flex;
        flex-wrap: wrap;
        padding-left: var(--space-20);
    }
    .menuSidebar .subMenu > li > ul > li {
        width: 33.33%;
        margin-bottom: var(--space-3);
        padding-left: 0
    }
    .menuSidebar .subMenu > li > ul > li > a {
        opacity: 0.8;
    }
    .mobileMenuSns {
        width: 100%;
        display: flex;
        margin-top: var(--space-40)
    }
    .mobileMenuSns li:not(:last-child) {
        margin-right: var(--space-5)
    }

    /*Hamburger Button*/
    .toggleButton {
        position: fixed;
        width: 30px;
        height: 22px;
        top: 35px;
        right: 5%;
        transition: .25s;
        z-index: 999999999999;
    }
    .toggleButton:hover {
        cursor: pointer;
    }
    .toggleButton .menuBar {
        position: absolute;
        border-radius: 1px;
        width: 100%;
        transition: .5s;
        height:1px
    }
    .toggleButton .menuBarTop {
        border-bottom: none;
        top: 0;
    }
    .toggleButton .menuBarMiddle {
        width:20px;
        height: 1px;
        top: 10px;
        right:5%
    }
    .toggleButton .menuBarBottom {
        border-top: none;
        top: 21px;
    }
    .toggleButton .menuBarTop,
    .toggleButton .menuBarMiddle,
    .toggleButton .menuBarBottom {
        background-color: var(--color-white);
    }
    .toggleFixed .toggleButton {
        top: 19px
    }
    .toggleFixed .toggleButton .menuBarTop,
    .toggleFixed .toggleButton .menuBarMiddle,
    .toggleFixed .toggleButton .menuBarBottom {
        background-color: var(--color-white);
    }

    .buttonOpen {
        position: fixed;
        right: 5%;
        opacity: 1;
    }
    .buttonOpen .menuBarTop {
        background-color: var(--color-white);
        transform: rotate(45deg) translate(8px, 8px);
        transition: .5s;
        opacity: 1;
    }
    .buttonOpen .menuBarMiddle {
        background-color: var(--color-white);
        transform: translate(230px);
        transition: .1s ease-in;
        opacity: 0;
    }
    .buttonOpen .menuBarBottom {
        background-color: var(--color-white);
        transform: rotate(-45deg) translate(7px, -7px);
        transition: .5s;
        opacity: 1;
    }
    .toggleFixed .buttonOpen .menuBarTop,
    .toggleFixed .buttonOpen .menuBarBottom {
        background-color: var(--color-white);
    }
    .menuWrap {
        width: 100%;
        max-width:100%;
        right: -100%;
    }
    .menuShow {
        right: 0;
    }
    .toggle-button {
        width: 34px;
        height: 30px;
        top: 30px;
    }
    .toggle-button .menuBarBottom {
        top:18px
    }
    .toggle-button .menuBarMiddle {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .buttonOpen .menuBarBottom {
        top:21px
    }
}
@media all and (max-width: 1023px) {
    .toggleButton {
        top: 28px;
    }
}
@media all and (max-width:767px) {
    .toggleButton {
        width: 30px;
        height: 24px;
    }
    .toggleButton {
        top:21px;
    }
    .toggleButton .menuBarMiddle {
        width:20px;
        height: 1px;
        top: 8px;
        margin: 0
    }
    .toggleButton .menuBarBottom {
        top: 16px;
    }
    .buttonOpen .menuBarBottom {
        top: 21px
    }

    .menuSidebar .menu > li {
        margin-bottom: var(--space-15)
    }
    .menuSidebar .menu > li > a {
        font-size: var(--font-20);
    }
    .menuSidebar li > .subMenu > li > a {
        font-size: var(--font-16)
    }
    .menuSidebar .subMenu {
        padding-top: var(--space-10)
    }
}