@charset "utf-8";

    .mob_navi_wrap .logo{
        width: 80px;
    }

@media screen and (max-width:970px) {
    body{
        margin-top: 62px !important;
    }
    #gnb {
        box-sizing: border-box;
        transition: .6s ease-in-out;
    }
    .navi{
        padding: 10px 0;
    }

    /* 모바일 네비 */
    .mob_navi_wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .mob_nav_btn {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .mob_nav_btn a {
        border-bottom: 1px solid #333;
    }

    .menu-button {
        cursor: pointer;
        /*  width: 19px; */
        padding: 10px 0;
        z-index: 502;
    }


    .menu-button .bar {
        position: relative;
        width: 40px;
        height: 3px;
        background: var(--po-color);
        margin: 6px 0;
        transition: .3s;
    }

    .menu-button.cross .bar:nth-child(1) {
        transform: translateY(4px) rotate(-45deg);
    }

    .menu-button.cross .bar:nth-child(2) {
        transform: translateY(-4px) rotate(45deg);
    }


    #mb_navi {
        position: fixed;
        right: -100%;
        width: 100%;
        background: #fff;
        height: 100%;
        top: 0%;
        z-index: 99;
        overflow: auto;
    }
    .mob_menu_wrap.visible{
        visibility: visible;
        display: block;
    }
    .bg_full {
        height: 100vh !important;
        z-index: -1;
    }
    .mob_menu_wrap {
        position: absolute;
        visibility: hidden;
        width: 100%;
        height: 100vh;
        display: none;
        background: #fff;
        top: 0;
        left: 0;
        transition: .5s ease-in-out;
    }

    .mob_menu{
        display: flex;
        flex-direction: column;
        gap: 5rem;
        position: relative;
        top: 30%;
    }

    .mob_menu li a {
        display: flex;
        font-family: 'paperlogy-SB';
        font-size: 2.6rem;
        padding: 15px 30px;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .mob_menu li a .arrow{
        font-size: 2.2rem;
        color: var(--po-color);
        margin-left: 15px;
        margin-top: 2px;
        
    }
    .mob_menu li a::before{
        position: absolute;
        content: '';
        width: 10%;
        border-bottom: 2px solid var(--po-color);
        z-index: -1;
        bottom: 3px;
        left: 50%;
        transform: translateX(-50%);
    }

    .login_signup{
        display: flex;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
        position: absolute;
        top: 70px;
        gap: 10px;
    }
    .login_signup button{
        width: 50%;
        padding: 15px;
        border: none;
        background: var(--box-bg);
        font-family: 'paperlogy-SB';
        font-size: 2.2rem;
        color: var(--po-color);
    }

}