
/* header */

.highlight {
    color: var(--brandColor);
}

header {
    position: fixed;
    top: 0;
    width: 100%;    z-index: 999;
    transition: 0.2s;
    padding: 20px 0;
	border-bottom: 2px solid var(--brandColor);
    background-color:#fff;

}

header .inner {
    height: 100%;
}

header .gnb_item a.active {
    color: var(--brandColor);
}

header.on .gnb_mo {
    top: 70px;
    display: block;
}

header .group_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

header .group_header .logo_box {
    display: flex;
    align-items: center;
    /* text-indent: -999px; */
}

/* 1) 시작 - 수정사항: 아래 css 코드 통째로 삽입 */
header h1 .text {
    font-family: "Taenada";    font-size: 22px;
    color: #000000;
    word-break: keep-all;
}

/* 1) 끝 */

header .group_header .logo_box .link_logo {
    /* 2) 시작 - 수정사항: white-space: nowrap 주석처리 혹은 삭제 */
    /* white-space: nowrap; */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    /* 2) 끝 */
}

header .group_header .logo_box .link_logo img {
    /* 3) 시작 - 수정사항: width값 75px로 수정  */
    width: 30px;
    /* 3) 끝 */
}



header .group_header .gnb_list {
    display: flex;
    align-items: center;
    text-align: center;
    transition: 0.2s;
}

header .group_header #btn_form {
    height: 46px;
    padding: 0 20px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    background: var(--brandColor);
    border-radius: 50px;
    box-shadow: rgba(67, 71, 85, 0.4) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

header .group_header .gnb_list .gnb_item {
    padding: 0 0 0 40px;
    font-weight: 700;
    font-size: 19px;
}

header .group_header .gnb_list .gnb_item a {
    transition: .3s;
}

header .group_header .menu_wrap {
    width: 25px;
    height: auto;
    display: none;
    z-index: 0;
}

header .group_header .menu_wrap.toggle-btn .btn_open {
    display: none;
}

header .group_header .menu_wrap.toggle-btn .btn_close {
    display: block;
}

header .group_header .menu_wrap .btn_close,
header .group_header .menu_wrap .btn_open {
    position: relative;
    width: 100%;
    height: 100%;
}

header .group_header .menu_wrap .btn_close {
    display: none;
    width: 30px;
}

.gnb_mo {
    display: none;
}

header.scroll,
header.on {
    box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 15px -10px;
    background-color: #fff;
}

header.scroll .group_header .gnb_list .gnb_item a {
    color: inherit;
}

header .group_header .menu_wrap .btn_open img {

}

header.scroll .group_header .menu_wrap .btn_open img {
    filter: invert(0);
}

@media (max-width: 1023px) {
    header .group_header .gnb_list .gnb_item {
        font-size: 17px;
    }
}

@media (max-width: 959px) {
    header .inner .group_header .menu_wrap {
        display: block;
    }

    header .inner .group_header .gnb_list {
        display: none;
    }

    header .group_header #btn_form {
        display: none;
    }

    .gnb_mo {
        position: absolute;
        top: -300px;
        left: 0;
        width: 100%;
        height: auto;
        padding: 20px 40px;
        background: #fff;
        border-bottom: 1px solid #eaeaea;
        transition: top 0.5s;
        z-index: 99;
    }

    .gnb_mo .gnb_list .gnb_item {
        width: 100%;
        padding: 25px 0;
        font-weight: 500;
        font-size: 21px;
        color: #555;
        cursor: pointer;
    }

    .gnb_mo .gnb_list .gnb_item:not(:last-child) {
        border-bottom: 1px solid #ddd;
    }

    .gnb_mo .gnb_list .gnb_item :hover {
        color: var(--brandColor);
    }

    .gnb_mo .gnb_list .gnb_item a {
        width: 100%;
    }
}


@media (max-width: 767px) {
    header .group_header .menu_wrap button span {
        width: 100%;
    }

    header .gnb_mo {
        padding: 30px 30px;
    }
}

@media (max-width: 586px) {
    header .group_header .logo_box .link_logo img {
        width: 30px;
    }

    header .group_header .menu_wrap {
        width: 20px;
    }

    header .group_header .menu_wrap .btn_close {
        width: 20px;
    }

    header .gnb_mo {
        padding: 10px 30px;
    }

    header.on .gnb_mo {
		border-top: 2px solid var(--brandColor);
    }

    header .group_header .menu_wrap .btn_close,
    header .group_header .menu_wrap .btn_open {
    }

    .gnb_mo .gnb_list .gnb_item {
        padding: 15px 0;
        font-size: 17px;
		line-height: 150%;
    }

    .gnb_mo.on {
        top: 65px;
    }
}

@media (max-width: 430px) {
    header .group_header .logo_box {
        width: 125px;
    }
}

