@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
#footer{
    font-family: 'GmarketSansMedium';
    width: 100%;
    background: #FF744D;
    padding: 60px 0;
}
#footer footer{
    width: 75%;
    margin: 0 auto;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer footer ul{
    width: 50%;
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}
#footer footer ul li{
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}
#footer footer ul .copy{
    color: rgb(255, 220, 177);
    font-size: 16px;
}
@media screen and (max-width:768px) {
    #footer footer{
        flex-direction: column;
    }
    #footer footer ul{
        width: 100%;
        margin-bottom: 30px;
    }
}