/* 서브 헤더 */
.header {
    background: white !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important; 
}
.nav_select a{
    color: black !important;
}
.nav_select > .on{
    color: rgb(114, 167, 48) !important;
}
.logo_box{
    display: none !important;
}
.logo_box_b{
    display: block !important;
}


.sub_wrap,
.sub_wrap a{
    font-family: "Pretendard-Regular" ;   
}

.sub_page_top{
    padding-top: 100px;
}
.sub_page_main_banner{
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: opacity 1s;
    opacity: 0;
    
}
.sub_page_main_banner:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: -1;
}
.banner_on .sub_page_main_banner{
    opacity: 1;
}

.banner_tit_txt_box{
    max-width: 1280px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: 'Pretendard-Bold';
    color: white;
    font-size: 54px;
    transform: translateY(-100%);
    transition: transform 1s;
}
.banner_on .banner_tit_txt_box{
    transform: translateY(0%);
}
.booox{
    margin: auto;
    max-width: 1280px;
    height: 200px;
    background-color: rgb(114, 167, 48);
}
.sub_opt_box_outer{
    margin: 100px auto 40px auto;
    justify-content: center;
}
.sub_opt_box{
    max-width: 1280px;
    margin: auto;
    display: flex;
    background-color: rgb(245, 245, 245);
    border-radius: 30px;
    height: 60px;
    position: relative;
}
.opt_select{
    position: relative;
    z-index: 2;
    color: black;
    width: calc(100% / 10);
}
.opt_select:hover > .on{
    color: white !important;
}
.opt_select > a{
    display: block;
    width: 100%;
    height: 100%;
    line-height: 60px;
    text-align:center;
    color: inherit;
    font-size: 17px;
    font-family: 'Pretendard-SemiBold';
    white-space: nowrap;    
    transition: color 0.3s;
}
.move_on{
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height:100%;
    background: rgb(114, 167, 48);
    z-index: 1;
    border-radius: 30px;
    transition: left 0.5s;
}
.sub_opt_box .on{
    color: white;
}
.sub_page_title{
    text-align: center;
    font-size: 40px;
    font-family: 'Pretendard-Bold';
    margin: 40px 0 40px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 1s 0.5s, transform 1s 0.5s;
}
.banner_on .sub_page_title{
    opacity: 1;
    transform: translateY(0%);
}
.select_box{
    margin: auto;
    width: 100%;
    padding: 12px 20px;
    background-color: rgb(114, 167, 48);
    color: white;
    position: relative;
    z-index: 10;
    display: none;
}
.current_tit{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: 'Pretendard-Medium';
}
.select_box:hover{
    cursor: pointer;
}
.option_box{
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    max-height: 0;
    transition: 0.3s;
}
.a_option{
    padding: 10px 20px;
    display: block;
    background-color: white;
    color: #666;
    border: 1px solid rgb(114, 167, 48);
    border-bottom: 1px solid #eee;
    border-top: none;
    font-family: 'Pretendard-Medium';
    font-weight: 500;
}
/* border-left: 0px solid white;
border-right: 0px solid white; */
.a_option:nth-child(1){
    border-radius: 5px 5px 0px 0px ;
    border-top: 1px solid rgb(114, 167, 48);
}
.a_option:nth-last-child(1){
    border-radius: 0px 0px 5px 5px;
    border-bottom: 1px solid rgb(114, 167, 48);
}
.a_option:hover{
    background-color: rgb(114, 167, 48);
    color: white;
}
.open_opt{
    max-height: 500px;
}
.icon_rotate{
    transform: rotate(180deg);
    transition: 0.3s;
}
.slide_icon_box{
    z-index: 999;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translate(0, -50%);
}
.slide_icon_box img{
    width: 100%;
    height: 100%;
    transition: 0.3s;
}
@media screen and (max-width:1320px) {
    .banner_tit_txt_box{
        padding-left: 20px;
    }
    .sub_opt_box_outer{
        padding-left: 20px;
        padding-right: 20px;
    }
    .opt_select > a {
        font-size: 16px;
    }
}
@media screen and (max-width:1280px) {
    .sub_page_container{
        padding: 30px 20px;
    }
    .sub_page_title{
        font-size: 37px;
    }
    .sub_opt_box{
        padding: 10px 10px;
    }
    .sub_opt_box a{
        font-size: 15px;
    }

    .banner_tit_txt_box{
        font-size: 50px;
    }
    .sub_opt_box{
        display: none;
    }
    .sub_opt_box_outer {
        display: none;
    }
    .select_box{
        display: block;
    }
    .current_tit{
        font-size: 22px;
    }
    .a_option{
        font-size: 19px;
    }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width:768px) {
    .sub_page_top{
        padding-top: 80px;
    }
    .sub_page_title{
        font-size: 32px;
    }
    
    .banner_tit_txt_box{
        font-size: 45px;
    }
    .current_tit{
        font-size: 20px;
    }
    .a_option{
        font-size: 18px;
    }
}
@media screen and (max-width:500px) {
    
    .sub_page_container {
        padding: 20px 5px;
    }
    .sub_page_top {
        padding-top: 60px;
    }
    .sub_page_title{
        font-size: 28px;
        margin: 30px 0;
    }
    .sub_opt_box_outer {
        margin-top: 0px;
    }

    .banner_tit_txt_box{
        font-size: 40px
    }

    .current_tit{
        font-size: 18px;
    }
    .a_option{
        font-size: 16px;
        padding: 10px;
    }
}
