#footer{
    background-color: #000;
}
#footer .center1{
    padding: 50px 0 60px;
}
.f1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f1 ul{
    display: flex;
 align-items: center;
}
.f1 li{
    font-family: 'SUIT-Bold', sans-serif;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
}
.f1 li::after{
    content: "|";
    padding: 0 10px;
}
.f1 li:last-child::after{
    content: none;
}

.agree_pop_up, .terms_pop_up, .cancel_pop_up {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: none;
}

.f_popup .pop_box {
    width: 700px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
}

.f_popup .pop_box p {
    width: 100%;
    padding: 15px 20px;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Bold', sans-serif;
    box-sizing: border-box;
}

.f_popup .pop_box i {
    cursor: pointer;
}

.f_popup .pop_inner {
    width: 100%;
    height: 60vh;
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
    white-space: pre-line;
    font-size: 16px;
    line-height: 23px;
    color: #111;
    font-family: 'Pretendard-Regular', sans-serif;
}

#footer img{
    margin-bottom: 40px;
}
#footer .f_text{
    font-family: 'Pretendard-Regular', sans-serif;
    font-size: 17px;
    color: #cccccc;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    line-height: 1.5;
}
#footer .f_text span{
    font-style: normal;
    display: inline-block;
}
#footer .f_text span::after{
    content: "|";
    padding-left: 15px;
    padding-right: 10px;
}
#footer .f_text span:nth-child(3):after, #footer .f_text span:nth-child(6):after, #footer .f_text span:last-child:after{
    content: none;
}


/* mobile */
@media screen and (max-width: 767px){
    #footer .f1>a{
        width: 150px;
        display: block;
    }
    .f1 {
        flex-direction: column;
        align-items: flex-start;
    }
    .f1 li{
        font-size: 12px;
    }
    
    .f_popup .pop_box {
        width: 85%;
    }

    .f_popup .pop_box p {
        font-size: 16px;
    }

    .f_popup .pop_box i {
        cursor: inherit;
    }

   .f_popup .pop_inner {
        height: 40vh;
        font-size: 13px;
        line-height: 18px;
    }
    #footer img{
        width: 100%;
        margin-bottom: 20px;
    }
    #footer .f_text{
        margin-top: 15px;
        flex-direction: column;
        align-items: unset;
        font-size: 12px;
    }
    address{
        line-height: 1.5;
    }
    #footer .f_text span::after{
        padding-left: 10px;
        padding-right: 4px;
    }
    #footer .f_text span:last-child{
        margin-top: unset;
    }
    .copy{
        margin-top: 10px;
    }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    #footer .f1>a{
        width: 200px;
        display: block;
    }
    .f1 {
        flex-direction: column;
        align-items: flex-start;
    }
    .f1 li{
        font-size: 14px;
    }
    
    .f_popup .pop_box {
        width: 60%;
    }

    .f_popup .pop_box p {
        font-size: 16px;
    }

   .f_popup .pop_box i {
        cursor: inherit;
    }

    .f_popup .pop_inner {
        height: 40vh;
        font-size: 14px;
        line-height: 20px;
    }
    #footer img{
        width: 100%;
        margin-bottom: 25px;
    }
    #footer .f_text{
        margin-top: 20px;
        flex-direction: column;
        align-items: unset;
        font-size: 14px;
    }
    address{
        line-height: 1.5;
    }
    #footer .f_text span::after{
        padding-left: 15px;
        padding-right: 9px;
    }
    #footer .f_text span:last-child{
        margin-top: unset;
    }
    .copy{
        margin-top: 15px;
    }
}