#section7{
    width: 100%;
    height: auto !important;
    background-color: #111111;
}
#section7 .center2{
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}
.f1{
    display: flex;
    flex-direction: column;
    gap: 47px 0;
}
address{
    font-family: 'SUIT-Medium', sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-style: normal;
    line-height: 1.5;
}
address span::after{
    content: "|";
    padding: 0 9px;
}
.copy{
    font-family: 'SUIT-Regular', sans-serif;
    font-size: 14px;
    color: #d0d0d0;
}
.f2{
   display: flex;
}
.f2 li{
    font-family: 'SUIT-Bold', sans-serif;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
}
.f2 li::after{
    content: "|";
    padding: 0 10px;
}
.f2 li:last-child::after{
    content: none;
}

.agree_pop_up, .terms_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;
}

.pop_box {
    width: 700px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
}

.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;
}

.pop_box i {
    cursor: pointer;
}

.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;
}


/* mobile */
@media screen and (max-width: 767px){
    #section7 .center2{
        flex-direction: column;
    }
    .f1{
        gap: 20px 0;
    }
    address {
        font-size: 13px;
    }
    .copy{
        font-size: 12px;
    }
    .f2 {
        padding-top: 20px;
    }
    .f2 li{
        font-size: 12px;
    }
    
     .pop_box {
        width: 85%;
    }

    .pop_box p {
        font-size: 16px;
    }

    .pop_box i {
        cursor: inherit;
    }

    .pop_inner {
        height: 40vh;
        font-size: 13px;
        line-height: 18px;
    }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    #section7 .center2{
        flex-direction: column;
    }
    .f1{
        gap: 25px 0;
    }
    address {
        font-size: 15px;
    }
    .copy{
        font-size: 14px;
    }
    .f2 {
        padding-top: 25px;
    }
    .f2 li{
        font-size: 14px;
    }
    
     .pop_box {
        width: 60%;
    }

    .pop_box p {
        font-size: 16px;
    }

    .pop_box i {
        cursor: inherit;
    }

    .pop_inner {
        height: 40vh;
        font-size: 14px;
        line-height: 20px;
    }
}
