.border_bottom{
    width: 100%;
    border-bottom: solid 1px #fff;
}

#main_head{
    background-image: url("/resources/newimg/header/header_background.jpg");
    background-position: center;
    background-position: center;
    background-size: 100%;
    width: 100%;
    position: fixed;
    z-index: 10;
}

/* logo */

.head_wrap{
    max-width: 1680px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin: 0 auto;
}
.head_wrap h1{
    width: 150px;
    height: 30px;
    margin-left: 80px;
}
.head_wrap h1 a{
    background-image: url("/resources/newimg/header/logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 150px;
    display: block;
    width: 150px;
    height: 100%;
}


/* menu */
.mainmenu_wrap{
    width: 53%;
    min-width: 600px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px;
}
.mainmenu_wrap li{
    width: 120px;
    border-radius: 7px;
}
.mainmenu_wrap li.active{
    background-color: #fff;
}
.mainmenu_wrap li.active a{
    color: #241a3f;
    font-weight: bold;
}
.mainmenu_wrap li a{
    color: #fff;
    display: block;
    width: 120px;
    height: 100%;
    padding: 8px 0;
    font-weight: 500;
}


/* sub_area */
.sub_area{
    width: 150px;
    margin-right: 80px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub_area a{
    color: #fff;
    font-size: 0.9rem;
}
.lang{
    position: relative;
}
.lang .lang_click{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lang .lang_click span{
    display: block;
    width: 10px;
    margin-left: 5px;
}
.lang .lang_click span img.rotate{
    -webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    transition: 0.3s;
}
.lang .lang_click span img.rotate_b{
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: 0.3s;
}
.lang .other_lang{
    position: absolute;
    left: calc(50% - 80px/2);
    top: 30px;
    background-color: #24183c;
    width: 80px;
    padding: 5px 0; 
    border-radius: 10px;
}
.lang .other_lang li a{
    display: block;
    width: 100%;
    text-align: center;
    margin: 5px 0;
}


/* subhead_wrap */
.subhead_wrap{
    width: 100%;
}
.subhead_wrap .wrap{
    max-width: 1080px;
    min-width: 870px;
    margin: 0 auto;
    height: 145px;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* subhead_title_logo */
.subhead_wrap .wrap .title_logo{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 185px;
    display: block;
    width: 185px;
    height: 80px;
}

/* submenu */
.submenu_wrap{
    width: 70%;
    min-width: 600px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px;
    margin-top: 40px;
}
.submenu_wrap li{
    border-radius: 7px;
}
.submenu_wrap li.active{
    background-color: #fff;
}
.submenu_wrap li.active a{
    color: #241a3f;
    font-weight: bold;
}
.submenu_wrap li a{
    color: #fff;
    display: block;
    height: 100%;
    padding: 8px 10px;
}

.eye_wrap .submenu_wrap {
	justify-content: flex-start;
	gap : 3rem;
}

/* media */
/* 테블릿 세로 (해상도 768px ~ 1023px)*/ 
@media all and (max-width:1023px) {
    #main_head{
        background-image:unset;
    }
    .head_wrap{
        position: relative;
        padding-bottom: 50px;
        background-image: url("/resources/newimg/header/header_background.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border: unset;
    }
    .head_wrap h1{
        width: 200px;
        height: 34px;
        margin-left: 50px;
    }
    .head_wrap h1 a{
        background-size: 200px;
        width: 200px;
    }
    .mainmenu_wrap{
        position: absolute;
        background-color: #fff;
        bottom: 0;
        width: 100%;
        min-width: 767px;
        margin: 0;
    }
    .mainmenu_wrap li{
        width: calc(100% / 5);
    }
    .mainmenu_wrap li.active{
        background-color: #251b40;
        border-radius: 0 0 15px 15px;
    }
    .mainmenu_wrap li.active a{
        color: #fff;
    }
    .mainmenu_wrap li a{
        width: 100%;
        text-align: center;
        color: #24183c;
        padding: 12px 0;
    }
    .subhead_wrap .wrap .title_logo{
        display: none;
    }
    .subhead_wrap{
        border-bottom: 1px solid #24183c;
        background-color: #fff;
    }
    .subhead_wrap .wrap{
        justify-content: center;
        min-width:667px;
        padding: 0 50px;
        height: 100px;
    }
    .submenu_wrap{
        margin-top: 0;
        min-width: 637px;
        width: 100%;
        margin: 0;
    }
    .submenu_wrap li{
        margin: 0 10px;
    }
    .submenu_wrap li.active{
        background-color: #24183c;;
    }
    .submenu_wrap li a{
        padding: 9px 20px;
        color: #24183c;
        font-size: 1rem;
        font-weight: 700;
    }
    .submenu_wrap li.active a{
        color: #fff;
    }
    .sub_area{
        margin-right: 50px;
        width: 120px;
    }
}
  
/* 모바일 가로, 테블릿 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px) {
    .head_wrap{
        height: 70px;
    }
    .head_wrap h1{
        width: 150px;
        margin-left: 30px
    }
    .head_wrap h1 a {
        background-size: 150px;
        width: 150px;
    }
    .mainmenu_wrap{
        min-width: 480px;
    }
    .subhead_wrap .wrap {
        min-width: 430px;
        padding: 0 20px;
        height: 70px;
    }
    .submenu_wrap {
        min-width: 410px;
        justify-content: space-evenly;
    }
    .submenu_wrap li{
        margin: 0;
    }
    .submenu_wrap li a{
        font-size: 0.75rem;
    }
    .sub_area{
        margin-right: 30px;
        width: 110px;
    }
} 
  
/* 모바일 가로, 테블릿 세로 (해상도 ~ 479px)*/ 
@media all and (max-width:479px) {
    .head_wrap{
        height: 40px;
        padding-bottom: 31px;
    }
    .head_wrap h1{
        width: 80px;
        margin-left: 10px;
        height: 13px;
    }
    .head_wrap h1 a {
        background-size: 80px;
        width: 80px;
    }
    .mainmenu_wrap{
        min-width: 280px;
    }
    .mainmenu_wrap li.active {
        border-radius: 0 0 8px 8px;
    }
    .mainmenu_wrap li a{
        font-size: 0.75rem;
        padding: 7px 0;
    }
    .subhead_wrap .wrap {
        min-width: 280px;
        padding: 0;
        height: 50px;
    }
    .submenu_wrap {
        min-width: 280px;
    }
    .submenu_wrap li{
        margin: 0;
    }
    .submenu_wrap li a{
        font-size: 0.7rem;
        padding: 8px 3px;
    }
    .sub_area{
        margin-right: 10px;
    }
    .lang,#login{
        margin: 0;
    }
    .lang{
        margin-right: 10px;
    }
    .sub_area{
        justify-content: flex-end;
    }
}