
#allmenuWrap {
    z-index: 900; display: none;
    }
    
    
    
    /* ###### CSS for Full Screen Menu NAV ###### */
    
    #fullscreenmenu{
        z-index: 600;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.93); /* background color of full screen menu */
        
        z-index: 1;
        visibility: hidden;
        overflow: auto;
        font-family: 'Roboto', 'Noto Sans KR', 'Noto Sans Korean', sans-serif;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: translate3D(0, -100%, 0); /* hide menu initially on screen by offsetting it vertically */
        transform: translate3D(0, -100%, 0); 
        -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
        transition: transform 0.5s, visibility 0s 0.5s;
    }
    
    #fullscreenmenu > ul{
        margin: 0;
        padding: 0;
        list-style: none;
        width: 98%; max-width: 1280px; margin: 0 auto; 
        position: relative;
        font-weight: bold;
        /* font size of UL menu */
        text-transform: uppercase;
        -webkit-transform: translate3D(0, -40px, 0);
        transform: translate3D(0, -40px, 0);
        opacity: 0;
        transition: all 0.5s 0.4s;
        display:flex; justify-content:space-between; flex-wrap:wrap; align-items: top;
        height: 100%;align-content: center;
    }
    
    #fullscreenmenu > ul > li{
         /* by default, show 2 columns of links */
    
        text-align:center;
        display: inline;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin:0 40px 50px
    }
    
    
    #fullscreenmenu > ul > li > div > span {
        font-size:1.7rem;
        color:#FFF;
        font-weight:700
    }
    
    
    #fullscreenmenu > ul > li > a{
      text-decoration: none;
      position: relative;
      color: white; /* link color */
      padding: 5px 0; /* general spacing between links */
      display: inline-block;
      -webkit-transition: background 0.3s;
      transition: background 0.3s;
      font-size: 1.6rem; font-weight: 700; 
     
    }
    
    
    #fullscreenmenu ul li a:hover{
    }
    
    #fullscreenmenu ul li a:hover:after{
      width: 100%;
    }
    
    /* #### Menu Hamburger Icon UI when shrinked CSS ######## */
    
    #allmenu.shrink li:nth-last-of-type(n+2) a{
      opacity: 0;
      pointer-events: none;
    }
    
    
    #fullscreenmenu ul li a {font-size:2.4rem; color:#FFF; font-weight:500}
    #fullscreenmenu ul li ul { margin-top: 30px; padding:0 !important; }
    #fullscreenmenu ul li ul li { width: 100%; margin: 10px 0; }
    #fullscreenmenu ul li ul li a { font-size:1.7rem; color:#fff; font-weight:400; opacity:.8 }
    #fullscreenmenu ul li ul li a:hover { opacity: 1; }
    
    /* #### Menu Opened State CSS ######## */
    
    #allmenuWrap.open #fullscreenmenu{
        visibility: visible;
      -webkit-transform: translate3D(0, 0, 0); /* show menu by shifting it vertically to visible position within container */
      transform: translate3D(0, 0, 0);
      -webkit-transition: -webkit-transform 0.5s;
      transition: transform 0.5s;
    }
    
    #allmenuWrap.open #navtoggler{
      border-width: 0;
    }
    
    
    #allmenu a { display:block;z-index:999; font-size:0; text-align: center; width: 100px; height: 100px;  border-left: 1px solid rgba(255,255,255,0.2); 
                    display:flex; justify-content:center; flex-wrap:wrap; align-items: center; position:relative}
    
    .bar { cursor: pointer;   }
    .bar span { display:block; ; height:3px; transition:all 0.5s; background:#FFF;  border-radius:3px;}
    .bar span.t { margin-top: 0; width:30px; }
    .bar span.m { margin:9px 0; width: 20px; }
    .bar span.b { margin-top: 0; width:30px; }
    
    #allmenuWrap.open .bar span.t {transform:translateY(12px) rotate(45deg); }
    #allmenuWrap.open .bar span.m {width:0;}
    #allmenuWrap.open .bar span.b {transform:translateY(-12px) rotate(-45deg); width:30px;}
    
    /* 메인비주얼위로 메뉴가 올라와 있을때
    .main #allmenu a {  border:1px solid rgba(255,255,255,0.5); }
    .main #allmenu a:before { color:#fff; }
    .main #allmenuWrap.open #allmenu a:before { color:#fff; }*/
    
    .hopen #allmenu a {}
    

    #header.menu_on #allmenu a {border-left: 1px solid rgba(0, 0, 0, 0.1);}
    #allmenuWrap.open .bar span {background: #fff;}
    .scroll .bar span { background:#1e2432 }
    .scroll #allmenu a {border-left: 1px solid rgba(0, 0, 0, 0.1);}
    
    
    @media all and (max-width:1400px) {
        #allmenu a {width: 70px; height: 100px; }
    }
    
    
    
    #allmenuWrap.open #allmenu li:nth-last-of-type(n+2) a{
      opacity: 0;
     /* pointer-events: none; */
    }
    
    #allmenuWrap.open #fullscreenmenu ul{
      opacity: 1;
      -webkit-transform: translate3D(0, 0, 0);
      transform: translate3D(0, 0, 0); /* restore UL to original positon */
    }
    
    
    /* ####### responsive layout CSS ####### */
    
    
    
    @media all and (max-width:1280px) {
    #allmenu a{height: 80px;}
    
    }
    @media all and (max-width:980px) {
    
    #allmenuWrap { display: none; }
    
    }
    
    
    
    #fullscreenmap{
        z-index: 600;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        visibility: hidden;
        overflow: auto;
        font-family: 'Roboto', 'Noto Sans KR', 'Noto Sans Korean', sans-serif;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: translate3D(0, 100%, 0); /* hide menu initially on screen by offsetting it vertically */
        transform: translate3D(0, 100%, 0); 
        -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
        transition: transform 0.5s, visibility 0s 0.5s;
    }
    
    #locationQuick.open #fullscreenmap{
        visibility: visible;
      -webkit-transform: translate3D(0, 0, 0); /* show menu by shifting it vertically to visible position within container */
      transform: translate3D(0, 0, 0);
      -webkit-transition: -webkit-transform 0.5s;
      transition: transform 0.5s;
    }
    
    
    
    #locationQuick.open #mapClose { display:block; position:absolute; top:15px; right:20px; z-index:999; font-size:0; text-align: center; width: 60px; height: 60px; }
    #locationQuick.open #mapClose:before { content:'\e870'; font-family:'Linearicons-Free'; color:#fff; font-size: 30px; line-height: 60px; }