/*헤더 */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.6s;
    background-color: #fff;
}
header .top {
    background-color: #295582;
    position: relative;
}
header .top > p {
    padding: 12px 0;
    box-sizing: border-box;
    text-align: center;
}
header .top > ul {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
    align-items: center;
}
header .top > ul li {
}
header .top > ul li a {
    padding: 4px 6px;
    box-sizing: border-box;
    background-color: #0075ff;
    border-radius: 4px;
}
header .bottom {
    padding: 10px 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .bottom .left {
    display: flex;
    align-items: center;
    gap: 60px;
}
.pc_menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.pc_menu > li {
}
.pc_menu > li a {
}
header .bottom .right {
    display: flex;
    align-items: center;
    gap: 60px;
}
.search_box {
    border: solid 1px #0075ff;
    max-width: 360px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.search_box .input_box {
    width: 300px;
}
.search_btn > input[type="image"] {
    width: 24px;
    height: 24px;
}
.login_list {
    display: flex;
    align-items: center;
    gap: 36px;
}
.login_list .logout {
    color: #a2a2a2;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.mo_menu_btn {
    display: none;
}
.mo_menu_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.mo_menu_box .modal_content {
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 1020px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.mo_menu_box .modal_close {
    position: absolute;
    top: -48px;
    right: 20px;
    background-color: transparent;
    border: 0;
    outline: 0;
}
.mo_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mo_menu li {
    width: 100%;
}
.mo_menu li > a {
    width: 100%;
    display: block;
}

@media screen and (max-width: 1690px) {
    .search_box .input_box {
        width: 200px;
    }
    header .bottom .left,
    header .bottom .right {
        gap: 30px;
    }
    .pc_menu,
    .login_list {
        gap: 18px;
    }
}
@media screen and (max-width: 1410px) {
    header .font_18_600 {
        font-size: 14px;
        line-height: 20px;
    }
    .login_list .logout {
        font-size: 12px;
    }
}
@media screen and (max-width: 1280px) {
    .pc_menu {
        display: none;
    }
    header .bottom .right {
        display: none;
    }
    .mo_menu_btn {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .mo_menu_btn > .mo_ham_btn {
        cursor: pointer;
    }
    .mo_menu_btn img{
        filter: invert(1);
    }
}
@media screen and (max-width: 1020px) {
    .mo_menu_box .modal_content {
        border-radius: 0;
    }
}
@media screen and (max-width: 820px) {
    header .bottom {
        padding: 16px 20px;
    }
    header .top > p {
        padding: 12px 8px;

        text-align: left;
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    header .top > ul {
        right: 12px;
    }
    header .font_16_400 {
        font-size: 14px;
        line-height: 18px;
    }
}
/*//헤더 */
/*풋터 */
footer {
    background-color: #fff;
    padding: 40px 30px 60px 30px;
    box-sizing: border-box;
}
footer .cont_1 {
    display: flex;
    justify-content: space-between;
}
footer .cont_1 .left {
    display: flex;
    gap: 60px;
}
footer .cont_1 .left .text_box {
    display: flex;
    gap: 120px;
}
footer .text_box .ft_text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .text_box .ft_text li {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #6a6a6a;
}
footer .text_box .link_box {
    display: flex;
    gap: 36px;
}
footer .text_box .link_box > ul li:nth-child(1) a {
    font-weight: 700;
}
footer .text_box .link_box > ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
footer .text_box .link_box > ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #0f2641;
}
footer .cont_1 .right .btn_list {
    display: flex;
    gap: 6px;
}
footer .cont_1 .right .btn_list li a {
    padding: 12px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #6a6a6a;
    border: solid 1px #6a6a6a;
    border-radius: 8px;
    box-sizing: border-box;
    display: block;
    text-align: center;
}
footer .cont_2 {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
footer .cont_2 li {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;

    color: #6a6a6a;
}
@media screen and (max-width: 1650px) {
    footer .cont_1 .right .btn_list {
        flex-direction: column;
    }
}
@media screen and (max-width: 1450px) {
    footer .cont_1 .left .text_box,
    footer .cont_1 .left {
        gap: 40px;
    }
}
@media screen and (max-width: 1350px) {
    footer .cont_1 .left {
        flex-direction: column;
    }
}
@media screen and (max-width: 1150px) {
    footer .cont_1 {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    footer .cont_1 .right .btn_list {
        flex-direction: row;
    }
}
@media screen and (max-width: 900px) {
    footer .cont_1 .left .text_box {
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 768px) {
    footer {
        padding: 30px 12px;
    }
    footer .text_box .ft_text li {
        text-align: center;
    }
    footer .text_box .link_box {
        justify-content: center;
        gap: 25px;
    }
    footer .text_box .link_box > ul li {
        text-align: center;
    }
    footer .text_box .link_box > ul li a {
        font-size: 14px;
        line-height: 18px;
    }
    footer .text_box .ft_text li {
        font-size: 14px;
        line-height: 18px;
    }
    footer .cont_1 .left .text_box {
        gap: 24px;
    }
    footer .cont_2 {
        margin-top: 6px;
    }
    footer .cont_2 li {
        font-size: 12px;
        line-height: 18px;
    }
    footer .cont_1 .right .btn_list {
        flex-direction: column;
    }
    footer .cont_1 .left {
        gap: 24px;
    }
}
/*//풋터 */
