#header{
    width: 100%;
    padding: 20px 3%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    background-color: transparent;
}

#header a{
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.main_menu{
    display: flex;
    align-items: center;
    padding-top: 25px;
}

ul.main_menu li{
    width: 170px;
    text-align: center;
    /* margin-right: 60px; */
    font-size: 22px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

ul.more_menu{
    display: flex;
    align-items: center;
    padding-top: 25px;
}

ul.more_menu li{
    font-size: 16px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    line-height: 15px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0 20px;
}

ul.more_menu li:first-child{
    padding: 0 20px 0 0;
}

ul.more_menu li:last-child{
    padding: 0 0 0 20px;
    border: 0;
}






























/* mobile */
@media screen and (max-width: 767px){

    #header{
        padding: 10px 3%;
    }

    #header a{
        width: 100px;
    }

    #header a img{
        width: 100%;
    }

    ul.main_menu{
        display: none;
    }

    ul.more_menu{
      padding-top: 15px;
    }

    ul.more_menu li{
        font-size: 12px;
        line-height: 10px;
        padding: 0 10px;
    }

    ul.more_menu li:first-child{
        padding: 0 10px 0 0;
    }

    ul.more_menu li:last-child{
        padding: 0 0 0 10px;
        border: 0;
    }

    ul.more_menu li:last-child img{
        width: 15px;
    }
}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    #header{
        padding: 10px 3%;
    }

    #header a{
        width: 100px;
    }

    #header a img{
        width: 100%;
    }

    ul.main_menu,
    ul.more_menu{
      padding-top: 15px;
    }

    ul.main_menu li{
        width: 100px;
        /* margin-right: 30px; */
        font-size: 14px;
    }

    ul.main_menu li:last-child{
        margin-right: 0;
    }

    ul.more_menu li{
        font-size: 12px;
        line-height: 10px;
        padding: 0 10px;
    }

    ul.more_menu li:first-child{
        padding: 0 10px 0 0;
    }

    ul.more_menu li:last-child{
        padding: 0 0 0 10px;
        border: 0;
    }

    ul.more_menu li:last-child img{
        width: 15px;
    }

}
