/* .border {
    border: 1px solid #f00;
} */

.wrap {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
footer {
    width: 100%;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
}
footer .inner {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
}



/* ---------- text_group ---------- */
.exhibi-name {
    font-weight: 600;
    font-size: 16px;
}
.exhibit-name span {
    letter-spacing: 0%;
}

.adress {
    font-size: 10px;
    margin-bottom: 62px;
}

.copyright {
    font-size: 10px;
}



/* ---------- sns ----------- */
.sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sns li {
    color: var(--white);
    display: flex;
    align-items: center;
}
.sns a {
    display: flex;
    align-content: center;
    justify-content: center;
}
.kjbc_logo {
    width: 82px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kjdc_logo .img-box {
    width: 70px;
    height: 18px;
}
.youtube a i {
    font-size: 28px;
}
.instagram a i {
    font-size: 28px;
}



/*  ---------- 반응형 ---------- */
/* 데스크탑 */
@media (min-width: 1024px) {
    /* .wrap {
        max-width: 1920px;
        min-width: 1524px;
    } */
    footer {
        height: 256px;
    }
    footer .inner {
        justify-content: space-between;
        padding: 0 250px 0;
        align-items: center;
    }
    
    .exhibi-name {
        margin-bottom: 10px;
    }

    .sns {
        height: 40px;
        gap: 25px;
    }
    .sns li {
        height: 40px;
    }
}



/* 태블릿 */
@media (min-width: 768px) and (max-width: 1023px) {
    .wrap {
        width: 100%;
    }
    footer {
        height: 240px;
    }
    footer .inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
    
    .text-group li {
        text-align: center;
    }
    .exhibi-name {
        margin-bottom: 24px;
    }
    .adress {
        display: none;
    }  

    .sns {
        height: 40px;
        gap: 90px;
    }
}



/* 모바일 */
@media (max-width: 767px) {
    .wrap {
        width: 100%;
    }
    footer {
        height: 120px;
    }
    footer .inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }
    
    .text-group li {
        text-align: center;
    }
    .exhibi-name {
        margin-bottom: 14px;
        font-size: 8px;
    }
    .copyright {
        font-size: 6px;
    }
    .adress {
        display: none;
    }  

    .sns {
        gap: 37.5px;
    }
    .kjbc_logo {
        width: 34px;
        height: 17px;
    }
    .kjdc_logo .img-box {
        width: 30px;
        height: 8px;
    }
    .youtube a i {
        font-size: 14px;
    }
    .instagram a i {
        font-size: 14px;
    }
}