#ft {
    background-color: #2C2E33;
}

.ft_top,
.ft_btm {
    padding: 0 160px 0 130px;
}

.ft_top {
    height: 72px;
}

.ft_top::after {
    content: '';
    clear: both;
    display: block;
}

.ft_link {
    height: 100%;

    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    /* padding: 29px 0 25px; */
}


.ft_link::after {
    content: '';
    display: block;
    clear: both;
}

.ft_link a {
    font-weight: 400;
    font-size: 17px;
    color: #fff;
}

.ft_br_block {
    display: block;
    width: 1px;
    height: 15px;
    background-color: #707070;

    margin: 0 25px;
}

.ft_icon {
    height: 100%;

    float: right;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 0 20px;

    padding-right: 12px;

    border-right: 1px solid #444444;
}

.ft_icon > li > a > img {
    display: block;
}

.ft_select {
    width: 135px;
    height: 100%;

    float: right;

    /* padding: 29px 0 25px; */
    margin-left: 36.5px;
}

.ft_select::after {
    content: '';
    display: block;
    clear: both;
}

.ft_select > select {
    width: 100%;
    appearance: none;
    outline: none;
    border: none;

    background-color: transparent;
    background-image: url('../img/footer/footer-more-icon.svg');
    background-repeat: no-repeat;
    background-position: right center;
    

    font-family: "Noto Sans KR";
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    line-height: 72px;
}

.ft_btm {
    border-top: 1px solid #444444;
    padding-top: 45px;
    padding-bottom: 45px;
}

.ft_btm_text_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ft_btm_text_wrap > li {
    font-family: "Noto Sans KR";
    font-weight: 400;
    font-size: 16px;
}

.ft_btm_info {
    color: rgba(255,255,255,0.9);
}

.ft_btm_num {
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

.ft_btm_copy {
    margin-top: 20px;

    font-family: "Noto Sans KR";
    font-weight: 400;
    font-size: 14px;
    color: rgba(255,255,255,0.4);

    text-transform: uppercase;
}

.ft_btm .ft_br_block {
    margin: 0 12px;
}

@media all and (max-width : 1440px) {
    .ft_top, .ft_btm {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media all and (max-width:1024px) {
    .ft_wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .ft_btm_text_wrap {
        display: block;
    }

    .ft_btm_text_wrap > li:first-child,
    .ft_btm_text_wrap > li:nth-child(3) {
        display: inline-block;
    }

    .ft_btm_info .ft_br_block:nth-child(2) {
        display: inline-block;
        margin: 0;
        margin-bottom: 2px;
        vertical-align: middle;
    }

    .ft_btm {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .ft_top {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-bottom: 70px;
    }

    .ft_link {
        float: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px 0;
    }

    .ft_br_block {
        display: none;
    }

    .ft_select {
        width: 100%;
        border: 1px solid #707070;
        margin-top: 34px;
        margin-left: 0;
        padding: 12px 20px;
    }

    .ft_select > select {
        line-height: normal;
        font-size: 16px;
        color: rgba(255,255,255,0.8);
    }

    .ft_icon {
        float: none;
        margin-top: 16px;
        border-right: none;

        opacity: 0.9;
    }

    .ft_top::after {
        content: none;
    }

    .ft_btm_text_wrap > li,
    .ft_link a {
        font-size: 14px;
    }

    .ft_btm_text_wrap > li {
        color: rgba(255,255,255,0.9);
    }

    .ft_btm_num > li {
        color: rgba(255,255,255,0.6);
    }

    .ft_link a {
        color: rgba(255,255,255,0.8);
    }

    .ft_btm_copy {
        font-size: 12px;
    }
}