#footer {
    width: 100%;
    height: 180px;
    background-color: #333;
    display: flex;
    align-items: center;
}

address {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 24px;
    font-style: normal;
    font-family: 'Pretendard-Light', sans-serif;
}

address span {
    margin: 0 10px;
}

#footer .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
























/* mobile */
@media screen and (max-width: 767px) {

    #footer {
        padding: 30px 0;
    }

    #footer .center {
        display: block;
    }

    #footer img {
        width: 100px;
        display: block;
        margin: 0 auto;
    }

    address {
        margin-left: 0;
        width: 100%;
        font-size: 12px;
        line-height: 18px;
        text-align: center;
        margin-top: 20px;
    }

    address span {
        margin: 0;
        display: block;
        color: transparent;
        line-height: 0;
    }

    address p {
        font-size: 10px;
        margin-top: 10px;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    #footer {
        padding: 30px 0;
    }

    #footer .center {
        display: block;
    }

    #footer img {
        width: 100px;
        display: block;
        margin: 0 auto;
    }

    address {
        margin-left: 0;
        width: 100%;
        font-size: 12px;
        line-height: 18px;
        text-align: center;
        margin-top: 20px;
    }

    address span {
        margin: 0;
        display: block;
        color: transparent;
        line-height: 0;
    }

    address p {
        font-size: 10px;
        margin-top: 10px;
    }

}