#footer{
    background-color: #111111;
}
#footer .center1{
    padding: 60px 0 55px;
}
.f_box{
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.f_box address{
    font-style: normal;
    font-family: 'NotoSansKR-Light',sans-serif;
    font-size: 18px;
    color: #f4f4f4;
}
.f_box .copy{
    font-family: 'NotoSansKR-Regular',sans-serif;
    font-size: 18px;
    color: #b0b0b0;
}


/* mobile */
@media screen and (max-width: 767px){
    #footer .center1>a{
        width: 150px;
        display: block;
    }
    #footer img{
        width: 100%;
    }
    .f_box{
        flex-direction: column;
        align-items: unset;
        gap: 20px 0;
        margin-top: 25px;
    }
    .f_box address {
        font-size: 11px;
    }
    .f_box .copy {
        font-size: 11px;
    }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    #footer .center1>a{
        width: 200px;
        display: block;
    }
    #footer img{
        width: 100%;
    }
    .f_box{
        margin-top: 30px;
    }
    .f_box address {
        font-size: 13px;
    }
    .f_box .copy {
        font-size: 13px;
    }
}