.gnb{
    display: flex;
    justify-content: space-between;
    height: 8.75rem;
    align-items: center;
    position:fixed;
    margin: 0 auto;
    width: 100%;
    top: 0;
    z-index: 9;
    transition: all 0.3s ease;
}

.gnb .logo{
    width: 9.375rem;
    margin-left: 9.375rem;
}

.gnb .logo img{
    width: 100%;
}

.gnb ul{
    display: flex;
    justify-content: space-between;
    margin-right: 9.375rem;
}

.gnb ul li{
    margin-left: 1.875rem;
}

.gnb ul li a{
    color: #fff;
}

.mobile_gnb{
    display:none;
}

.gnb > .material-symbols-outlined{
    display: none;
}

@media screen and (max-width: 1023px) {
    .gnb{
        height: 61px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .gnb > .material-symbols-outlined{
        display: block;
        font-size: 32px;
        cursor:pointer;
        color: #fff;
    }

    .gnb .logo{
        margin-left :0;
    }

    .gnb ul{
        display: none;
      }
    

    .mobile_gnb{
        display:block;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        background-color: #fff;
        z-index: 12;
        transition: all 0.3s ease;
    }

    .mobile_gnb_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        box-sizing: border-box;
        height: 61px;
    }

    .mobile_gnb .logo{
        width: 9.375rem;
    }

    .mobile_gnb .logo img{
        width: 100%;
    }

    .mobile_gnb .close_button{
        color: #000;
        cursor:pointer;
        font-size: 32px;
    }

    .mobile_gnb ul{
        padding: 40px 0px;
    }

    .mobile_gnb ul li{
        padding: 20px 20px;
        font-size: 20px;
    }

}