#footer{
    padding: 88.5px 0;
}
.f2{
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.address>p{
    font-size: 16px;
    color: #111111;
    font-family: 'SUIT-ExtraBold', sans-serif;
}
address{
    margin-top: 20px;
    font-size: 16px;
    color: #555555;
    font-family: 'SUIT-Regular', sans-serif;
    font-style: normal;
    line-height: 1.5;
}
address span::after{
    content: "|";
    padding: 0 10px;
    font-size: 12px;
    color: #aaaaaa;
}
.copy{
    font-size: 16px;
    color: #555555;
    font-family: 'SUIT-Regular', sans-serif;
}
.p_none{
    display: none;
}

/* mobile */
@media screen and (max-width: 767px){
    .p_none{
        display: block;
    }

    #footer {
        padding: 45.5px 0;
    }
    .f1 a{
        width: 150px;
        display: block;
    }
    .f1 img{
        width: 100%;
    }
    .f2{
        margin-top: 20px;
        gap: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .address>p {
        font-size: 12px;
    }
    address {
        margin-top: 10px;
        font-size: 12px;
    }
    .copy {
        font-size: 12px;
    }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    .p_none{
        display: block;
    }

    #footer {
        padding: 50.5px 0;
    }
    .f2{
        margin-top: 25px;
        gap: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .address>p {
        font-size: 14px;
    }
    address {
        margin-top: 15px;
        font-size: 14px;
    }
    .copy {
        font-size: 14px;
    }
}
