/* ==================================== */
/*		  	  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(07, 0, 0, 0.6);
        opacity: 1;
    }
    .menu-wrap {
        background: center / cover url("/public/images/main-center.jpg") no-repeat;
        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:18px
    }
    .menu-sidebar .menu > li > a {
        color: #FFFFFF;
        font-size:18px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
    }
    .menu-sidebar .sub-menu {
        padding:10px 0px 0px;
        display: flex;
        flex-wrap: wrap;
    }
    .menu-sidebar .sub-menu > li {
        width:33.33%;
        margin-bottom: 5px;
        color: #FFFFFF;
    }
    .menu-sidebar  li > .sub-menu > li > a  {
        font-size:15px;
        position: relative;
        opacity: 0.8;
    }
    .mobile-menu-sns {
        width: 100%;
    }
    .mobile-menu-sns strong {
        color: #FFFFFF;
        font-size:18px;
        text-transform: uppercase;
        font-weight: bold;
        display: block;
        margin-bottom:10px
    }
    .mobile-menu-sns ul {
        display: flex;
        justify-content: space-between;
    }
    .mobile-menu-sns li {
        color:#FFFFFF;
        width:50%
    }
    .mobile-menu-sns li a {
        display: flex;
        align-items: center;
        opacity: 0.8;
    }
    .mobile-menu-sns li a:hover {
        color: #FFFFFF;
        opacity: 1;
    }
    .mobile-menu-sns li svg {
        height: 17px;
        margin-right:6px
    }

    .mobile-naver-inquiry {
        width: 100%;
        margin-top: 20px;
    }
    .mobile-naver-inquiry strong {
        color: #FFFFFF;
        font-size:18px;
        text-transform: uppercase;
        font-weight: bold;
        display: block;
        margin-bottom:10px
    }
    .mobile-naver-inquiry a {
        display: flex;
        align-items: center;
        opacity: 0.8;
    }
    .mobile-naver-inquiry a:hover {
        color: #FFFFFF;
        opacity: 1;
    }
    .mobile-naver-inquiry img {
        width: auto;
        margin-right: 5px;
    }

    /*Hamburger Button*/
    .toggle-button {
        position: fixed;
        width: 44px;
        height: 40px;
        top:36px;
        right: 3%;
        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: #313131;
        border-bottom: none;
        top: 0;
    }
    .toggle-button .menu-bar-middle {
        width:20px;
        height: 1px;
        background-color: #313131;
        margin-top: 7px;
        margin-bottom: 7px;
        top: 4px;
        right:7%
    }
    .toggle-button .menu-bar-bottom {
        background-color: #313131;
        border-top: none;
        top: 22px;
    }
    .main-header .toggle-button .menu-bar-top,
    .main-header .toggle-button .menu-bar-middle,
    .main-header .toggle-button .menu-bar-bottom {
        background-color: #FFFFFF;
    }
    .main-header.toggle-fixed .toggle-button .menu-bar-top,
    .main-header.toggle-fixed .toggle-button .menu-bar-middle,
    .main-header.toggle-fixed .toggle-button .menu-bar-bottom {
        background-color:#313131 !important;
    }
    .button-open {
        position: fixed;
        right: 3%;
    }
    .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;
    }
    .main-header.toggle-fixed .button-open .menu-bar-top,
    .main-header.toggle-fixed .button-open .menu-bar-bottom {
        background-color: #FFFFFF !important;
    }
    .menu-wrap {
        width: 100%;
        max-width:100%;
        right: -100%;
    }
    .menu-show {
        right: 0;
    }
    .toggle-button {
        width: 34px;
        height: 30px;
        top: 30px;
    }
    .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
    }
    
}
@media all and (max-width:640px) {
    .mobile-menu.main-header {
        
    }
    .toggle-button {
        top:15px;
    }

}