/* BASIC css start */
/* 하단 */
.footer {margin-top:100px;background: #fff;}
.footer .footer-inner {position: relative;border-top: 1px solid #000;margin: 0 20px;padding: 40px 0;}
.footer .col {display: flex;flex-direction: column;}
.footer .col strong {font-weight: 600;font-size: 14px;margin-bottom: 15px;}
.footer .col.compnay p {line-height: 1.5;}
.footer .col.compnay {max-width: 50%;word-break: keep-all;}
.footer .col.info {margin-top:50px;}
.footer .col.info b {font-weight:400;}
.footer .col.customer {position: absolute;top: 40px;right: 0px;}
.footer .col.customer .list {display: flex;flex-direction: column;align-items: flex-end;gap: 3px;}
.footer .col.customer .list a {font-weight:600;}
.footer .marquee {color: #000;overflow: hidden;}
.footer .marquee-area {display: flex;font-size: 5vw;width: max-content;animation: marquee 50s linear infinite;}
.footer .marquee-area span {font-weight: 600;line-height: 1;font-family: 'Pretendard',sans-serif !important;}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); 
    }
}

/* BASIC css end */

