@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap');

/* font-family: 'Noto Sans KR', sans-serif; */

#footer{
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    font-size:16px;
    font-weight:300;
    letter-spacing:-0.005em;
    color:#797979;
    line-height:1.8;
    border-top:1px solid #B6B6B6;
    background:#FAFAFA;
}
#footer .container{
    width:1600px;
    margin:0 auto;
    padding:35px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
#footer .footer_list{
    width:540px;
    display:flex;
    flex-wrap:wrap;
    gap:0 25px;
    margin-bottom:25px;
}
#footer .footer_list li{
    position:relative;
}
#footer .footer_list li:nth-child(2){
    margin-right:100px;
}
#footer .footer_list li:nth-child(2)::before,
#footer .footer_list li:nth-child(4)::before,
#footer .footer_list li:nth-child(5)::before{
    content:'|';
    position:absolute;
    top:50%;
    left:-15px;
    transform:translateY(-50%);
}
#footer .copyright{
    font-weight:500;
    color:#9D9D9D;
}
#footer h2 .logo{
    display:block;
    width:103px;
    height:76px;
    background:url(../img/main/footer_logo.png) no-repeat center center/cover;
}
#footer br{
    display:none;
}

/* ----------------------------- RESPONSIVE ------------------------------ */
@media (max-width:1650px){
    #footer .container{
        width:90%;
    }
}
@media (max-width:768px){
    #footer .container{
        flex-direction:column;
        align-items:start;
        gap:30px;
    }
}
@media (max-width:600px){
    #footer{
        font-size:14px;
    }
    #footer .footer_list {
        width: 475px;
    }
}
@media (max-width:500px){
    #footer .footer_list{
        flex-direction:column;
    }
    #footer .footer_list li:nth-child(2)::before,
    #footer .footer_list li:nth-child(4)::before,
    #footer .footer_list li:nth-child(5)::before{
        display:none;
    }
    #footer br{
        display:block;
    }
}
@media (max-width:370px){
    #footer h2 .logo {
        width: 90px;
        height: 66px;
    }
    #footer .footer_list{
        margin-bottom:10px;
    }
    #footer .container{
        gap:20px;
    }
}