@charset "utf-8";
/* s:푸터 */
footer{
    width: 100%;
    background-color: #fdfdfd;
    border-top: 1px solid #1d24ab;
}
footer .container{
    width: 77.604%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0 160px 0;
    box-sizing: border-box;
}
footer .f-logo{
    width:287px;
}
footer .f-txt-wrap{
    width: 77.604%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
footer .f-txt-wrap .f-txt{
    width: 100%;
    height: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}
footer .f-txt-wrap span{
    font-size: 14px;
    font-weight: 400;
    color: #000454;
}
footer .f-txt-wrap .copy{
    margin-top: 8px;
}
footer .sns{
    width: 24px;
    height: 24px;
    margin-top: 8px;
}
footer .sns .insta{
    width: 100%;
}
/* e:푸터 */
/* 미디어쿼리 */
@media screen and (max-width: 1680px) {
    footer .container{
        flex-direction: column;
    }
    footer .f-logo{
        margin-bottom: 20px;
    }
    footer .f-txt-wrap{
        display: inline-block;
        text-align: center;
    }
    footer .f-txt-wrap .copy{
        text-align: center;
    }
    footer .f-txt-wrap span{
        margin-right: 10px;
    }
    footer .f-txt-wrap .f-txt{
        display: inline-block;

    }
    footer .sns{
        margin: 0 auto;
        padding-top: 8px;
    }
}
@media screen and (max-width: 1024px) {
    footer .f-txt-wrap{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    footer .container{
        padding: 60px 0 120px 0;
    }
}
@media screen and (max-width: 500px) {
    footer .container{
        padding: 60px 0;
    }
}