#header{
    width: auto;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_inner{
    /* width: 300px; */
    width: 250px;
    height: 100%;
    z-index: 991;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.search_btn{
    /* width: 120px;
    height: 120px; */
    width: 90px;
    height: 90px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    /* right: -60px; */
    right: 0;
    z-index: 995;
}

.search_btn i{
    color: #fff;
    font-size: 28px;
}

.header_center{
    width: 100%;
}

.header_center>a{
    width: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.header_center>a img{
    width: 100%;
    transform: translateZ(0);
}

ul.main_menu{
    width: 100%;
    margin-top: 10vh;
    padding-left: 5px;
    box-sizing: border-box;    
}

ul.main_menu li{
    /* padding: 0 45px 5vh; */
    padding: 0 25px 5vh;
    box-sizing: border-box;
    font-size: 18px;
    color: #999;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .3s;
}

ul.main_menu li:last-child{
    padding-bottom: 0;
}

ul.main_menu li.on{
    color: #111;
}

.blur_bg{
    /* width: 450px; */
    width: 350px;
    height: 100%;
    position: absolute;
    top: 0;
    /* left: 300px; */
    left: 250px;
    z-index: 990;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    /* padding: 48vh 100px 0; */
    padding: 48vh 60px 0;
    box-sizing: border-box;
    transform: translateX(-450px);
    transition: transform .5s;
}

.blur_bg.show{
    transform: translateX(0);
}

.submenu_box{
    width: 100%;
}

ul.sub_menu{
    width: 100%;
    display: none;
}

ul.sub_menu.on{
    display: block;
}

ul.sub_menu>li{
    width: max-content;
    margin-bottom: 4.5vh;
}

ul.sub_menu>li:last-child{
    margin-bottom: 0;
}

ul.sub_menu>li p{
    width: max-content;
    font-size: 21px;
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

ul.sub_menu>li p span{
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width .5s;
}

ul.sub_menu>li:hover span{
    width: 100%;
}

ul.sub_menu>li ul{
    margin-top: 15px;
}

ul.sub_menu>li ul li{
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

ul.sub_menu>li ul li:last-child{
    margin-bottom: 0;
}

#m_header{
    display: none;
}





































/* mobile */
@media screen and (max-width: 767px){

    #header{
        display: none;
    }

    #m_header{
        display: block;
        width: 100%;
        height: 65px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: #fff;
        transition: box-shadow .3s;
    }

    #m_header.scroll{
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    }

    .menu_icon{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu_icon i{
        font-size: 24px;
    }
    
    #m_header>a{
        width: 80px;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #m_header>a img{
        width: 100%;
    }

    #m_header .search_btn{
        width: 65px;
        height: 100%;
        top: 0;
        right: 0;
        cursor: inherit;
    }

    #m_header .search_btn i{
        font-size: 24px;
    }

}



































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    #header{
        display: none;
    }

    #m_header{
        display: block;
        width: 100%;
        height: 65px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: #fff;
        transition: box-shadow .3s;
    }

    #m_header.scroll{
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    }

    .menu_icon{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu_icon i{
        font-size: 24px;
    }
    
    #m_header>a{
        width: 80px;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #m_header>a img{
        width: 100%;
    }

    #m_header .search_btn{
        width: 65px;
        height: 100%;
        top: 0;
        right: 0;
        cursor: inherit;
    }

    #m_header .search_btn i{
        font-size: 24px;
    }

}