/*  Plugin: hs Menu (Modern Mega Menu) 
 *   Frameworks: jQuery 3.3.1 & Material Design Iconic Font 2.0
 *   Author: Asif Mughal
 *   GitHub: https://github.com/CodeHimBlog
 *   URL: https://www.codehim.com
 *   License: MIT License
 *   Copyright (c) 2018 - Asif Mughal
 */
/* File: hs-menu.min.css */
* {
    margin: 0;
    padding: 0
}

.hs-menubar {
    width: 100%;
    height: 60px;
    line-height: 60px;
    color: #fff;
    position: fixed;
    z-index: 2;
}

.hs-menubar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
}

.hs-navigation {
    width: 360px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    right: -360px;
    z-index: 999;
    overflow: hidden;
}

.hs-navigation.open {
    right: 0;
}

.hs-navigation,
.hs-navigation.open {
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s
}

.hs-menubar,
.hs-navigation {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 400;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.hs-user {
    right: 50px;
    overflow: hidden
}

.hs-user img {
    width: 32px;
    height: 32px;
    transition: .3s
}

.hs-user img:hover {
    opacity: .8;
    -webkit-opacity: .8;
    -moz-opacity: .8;
    transform: scale(1.1);
    transition: .3s
}



.menu-trigger,
.grid-trigger,
.hs-user {
    position: absolute;
    top: 10px;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    transition: .3s;
    z-index: 100
}

.menu-trigger {
    right: 30px
}

.grid-items {
    width: 230px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.33);
    background: #fff;
    padding-top: 10px;
    position: fixed;
    right: 80px;
    top: 50px;
    text-align: center;
    display: none;
    z-index: 120
}

.grid-items li.grid {
    list-style: none;
    width: 60px;
    height: 60px;
    line-height: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
    box-sizing: border-box;
    margin: 2px;
    border-radius: 50%;
    font-size: 11px
}

li.more-btn {
    height: 32px;
    line-height: 32px;
    margin: 15px 15px 5px 15px;
    box-sizing: border-box;
    display: block;
    position: relative
}

li.more-btn a {
    text-decoration: none;
    background: #e41b17;
    color: #fff;
    font-size: 13px;
    display: block;
    cursor: pointer;
    border-radius: 20px
}

li.more-btn a:hover {
    opacity: .8;
    -webkit-opacity: .8;
    -moz-opacity: .8
}

.grid-title {
    border: 1px red solid
}

.brand-logo {
    display: block;
    text-align: left;
    margin-left: 20px;
}

.brand-logo a {
    color: #111;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 800;
    font-size: 20px;
}

.brand-logo img {
    width: 90px;
    height: auto;
}

@-webkit-keyframes ripple-out {
    from {
        opacity: 1;
        -webkit-opacity: 1
    }

    to {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0
    }
}

@keyframes ripple-out {
    from {
        opacity: 1;
        -webkit-opacity: 1
    }

    to {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0
    }
}


.dim-overlay {
    display: none;
    position: relative;
    z-index: 99;
}

.dim-overlay:before {
    content: "";
    background-color: rgba(0, 0, 10, .6);
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2
}

.search-box {
    position: absolute;
    height: 50px;
    background: #555;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    top: 0;
    z-index: 500;
    left: 100px
}

.search-box button.search-submit,
.search-box input[type="text"] {
    padding: 6px;
    border: 0;
    outline: 0
}

.search-box input[type="text"] {
    background: transparent;
    color: rgba(255, 255, 255, 0.8)
}

button.search-submit {
    -webkit-appearance: none;
    background: #e41b17;
    color: #fff;
    text-shadow: .1px .1px #444;
    margin-left: -5px;
    border-radius: 4px;
    font-size: 13px
}

button.search-submit:disabled {
    background: #888;
    color: #555
}

.nav-controls {
    height: 36px;
    line-height: 36px;
    background: rgba(0, 0, 0, 0.12);
    text-align: right;
    display: none;
}

.nav-controls .nav-full,
.nav-controls .nav-fixed {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 2px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 1;
    outline: 0;
    border: 0;
    margin: 0 3px
}

.nav-controls .nav-full:hover,
.nav-controls .nav-fixed:hover {
    opacity: .8;
    -webkit-opacity: .8
}

.nav-links li {
}


.nav-links {
    list-style: none;
    font-size: 14px;
    margin-top:140px;
    color: rgba(255, 255, 255, 0.9);

}

.nav-links .its-parent,
.nav-links li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #111;
    font-size: 22px;
}

.nav-links .its-parent:hover,
.nav-links li a:hover {
    background: rgba(0, 0, 0, .1);
    background: rgb(0, 0, 0, .1);
}

.nav-links .icon {
    font-size: 18px;
    padding-right: 20px;
    font-weight: 500;
}

.nav-links a.sma {
    font-size: 15px;
}

.nav-links ul .its-parent:before,
.nav-links .has-child ul li a:before {
    content: "";
    display: inline-block;
    font-size: 10px;
    color: #111;
    width: 15px;
    height: 10px;
    position: relative;
    right: 10px;

}

.nav-links .has-child ul {
    background: #efefef;
    padding: 10px 0;
}

.nav-links .its-children {
    display: none;
    list-style: none
}

.nav-links .has-child {
    position: relative;
}

.nav-links .has-child span.its-parent {
    background: #fff;
}

.nav-links .has-child span.its-parent.p1:after {
    content: ">";
    position: absolute;
    top: 15px;
    right: 22px;
    display: block;
    font-size: 20px;
    font-weight: normal;
    color: #666;
    font-family: "Font Awesome 5 Pro";
    transition: all .2s;
}

.nav-links .has-child span.its-parent.p2:after {
    content: ">";
    position: absolute;
    top: 15px;
    right: 22px;
    display: block;
    font-size: 20px;
    font-weight: normal;
    color: #666;
    font-family: "Font Awesome 5 Pro";
    transition: all .2s;
}

.nav-links .has-child span.its-parent.p3:after {
    content: ">";
    position: absolute;
    top: 15px;
    right: 22px;
    display: block;
    font-size: 20px;
    font-weight: normal;
    color: #666;
    font-family: "Font Awesome 5 Pro";
    transition: all .2s;
}


/*
.its-parent.downed {
    background: rgba(0, 0, 0, 0.1)
}
*/

.its-parent.downed:after {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(180deg);
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s
}

.m_menu_conct {
    width: 100%;
    margin: 0 auto;
    min-height: 60px;
    background: #fff;
}


.m_menu_inner {
    background: #f8f8f8;
    height: 140px;
    padding: 30px;
    position: relative;
}

.m_menu_inner .m_login_box h2 {
    font-weight: 500;
    letter-spacing: -.2px;
}

.m_menu_inner .m_login_box h2 a {
    color: #fff;
    letter-spacing: -.2px;
}

.m_menu_inner .m_login_box h2 a i {
    font-size: 20px;
    color: #fff;
    margin-right: 3px;
    margin-top: -2px;
}

.m_menu_inner .m_login_box p {
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
    letter-spacing: -.2px;
}

.m_menu_inner .m_login_box .acct_btn {
    position: absolute;
    bottom: 30px;
    right: 22px;
    padding: 7px 10px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #fff;
}

.m_menu_inner .ic_close {
    position: absolute;
    top: 26px;
    right: 22px;
    cursor: pointer;
}

.m_menu_inner .ic_close svg {
    font-size: 32px;
    color: #333;
}

.m_contc_box {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.m_contc_box {
    position: absolute;
    left: 0;
    bottom: 0;
}

