/*ALL CSS-----------------------------------------------------*/
.k_main_section{height: 100%;}
.k_container{width: 90%;max-width: 1500px;margin: 0 auto;height: inherit;position: relative;}

.k_color_w{color: #FFF;}
.k_bg_w{background-color: #FFF;}
.k_fw_bold{font-weight: bold !important;}
.k_main_tit{
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 50px;
    letter-spacing: -0.045em;
}

.k_main_txt{font-weight: bold;letter-spacing: -0.03em;line-height: 200%;margin-bottom: 50px;}
.k_main_tit_02{font-size: 2.5rem;}

.k_link_btn{display: inline-block;width: 145px;height: 26px;position: relative;}
.k_link_btn div, .k_link_btn span{position: absolute;}
.k_link_btn div{top: 50%;right: 0;transform: translateY(-50%);width: 55%;height: 1px;transition: right 0.3s;}
.k_link_btn span{top: 0;left: 0;font-size: 1.3rem;font-weight: bold;height: 100%;z-index: 1;transition: left 0.3s;}
.k_link_btn span i{position: absolute;top: 50%;right: -28px;transform: translateY(-50%);font-size: 17px;opacity: 0;transition: opacity 0.5s;}

.k_link_btn:hover span{left: 70px;}
.k_link_btn:hover span i{opacity: 1;}

.k_link_btn:hover div{right: 63px;}

/*--------------메인_스크롤_다운--------------*/
.k_scroll_down{position: absolute;right: 0;top: 50%;transform: translateY(-50%);}
.k_scroll_down p, .k_scroller_bar{position: absolute;left: 50%;transform: translateX(-50%);}
.k_scroll_down p{top: -60px;color: rgba(255,255,255,0.6);letter-spacing: 0.5em;transform: rotate(90deg) translateY(48px);}
.k_scroller_bar{top: 0;width: 1px;height: 80px;background: rgba(255,255,255,0.3);overflow: hidden;z-index: 900;}
.k_scroller_bar::after{content: "";position: absolute;height: 30px;background: #FFF;width: 1px;animation: k_scroller_bar 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;}

@keyframes k_scroller_bar{
	0% {transform: translateY(-30px)}
	100%  {transform: translateY(80px)}
}

@media screen and (max-width: 1280px){

    .k_main_tit, .k_main_txt{margin-bottom: 35px;}

    .k_scroll_down p{transform: rotate(90deg) translateY(38px);}

    .k_link_btn{height: 21px;}
}

@media screen and (max-width: 760px){

    .k_main_tit, .k_main_txt{text-align: center;}
    .k_main_tit{font-size: 2rem;font-weight: bold;}
    .k_main_txt{padding: 0 10%;word-break: keep-all;line-height: 200%;}

    .k_scroll_down p{transform: rotate(90deg) translateY(33px);}

    .k_link_btn{display: block;margin: 0 auto;height: 17px;}
}

/*--------------header--------------*/
#k_header{position: fixed;top: 0;left: 0;width: 100%;height: 90px;z-index: 1000;border-bottom: 1px solid rgba(255,255,255,0.15);transition: background-color 0.5s;}
.k_hd_con{width: 90%;max-width: 1500px;margin: 0 auto;height: inherit;}

.k_logo{float: left;height: inherit;}
.k_logo img{display: block;padding-top: 20px;}

.k_gnb{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);height: inherit;}
.k_gnb>ul{text-align: center;height: inherit;}
.k_gnb>ul>li{display: inline-block;vertical-align: top;}
.k_gnb>ul>li>a{display: block;width: 100%;height: 100%;line-height: 90px;color: #FFF;font-size: 1.25rem;font-weight: 500;padding: 0 55px;letter-spacing: 1px;}
.k_gnb>ul>li>a>span{position: relative;}
.k_gnb>ul>li>a>span::after{content: "";position: absolute;bottom: -13px;left: 50%;transform: translateX(-50%);width: 0;height: 3px;background-color: #FFF;
    transition: width 0.3s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -webkit-transition: width 0.3s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -moz-transition: width 0.3s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -ms-transition: width 0.3s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -o-transition: width 0.3s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.k_gnb>ul>li>a:hover>span::after{width: 100%;}

.k_gnb>ul>li>ul{background-color: #6b6b75;padding: 15px 0;position: relative;display: none;}
.k_gnb>ul>li>ul>li>a{display: block;width: 100%;height: 100%;padding: 8px 0;color: #FFF;font-weight: 500;}
.k_gnb>ul>li>ul>li>a:hover{text-decoration: underline;}

.k_mo_open{float: right;width: 19px;height: inherit;background-image: url(/img/icon/k_btn_01.png);background-repeat: no-repeat;background-size: contain;background-position: center center;transition: all 0.3s;}
.k_mo_open:hover{background-image: url(/img/icon/k_btn_02.png);background-position: center 60%;}

/*--------------header_motion--------------*/
#k_header.active{background-color: #2a2939;border-bottom: none;}

.k_menu_bg{position: absolute;top: 90px;left: 0;width: 100%;height: 180px;background-color: #6b6b75;z-index: -1;display: none;}

@media screen and (max-width: 1280px){

    .k_menu_bg{height: 162px;}

    .k_logo img{max-width: 150px;padding-top: 29px;}

    .k_gnb>ul>li>a{padding: 0 35px;}
}

@media screen and (max-width: 980px){

    .k_gnb{display: none;}
}

@media screen and (max-width: 760px){

    #k_header{height: 65px;}

    .k_logo img{max-width: 130px;padding-top: 18.8px;}
}

/*--------------main_section_01--------------*/
#k_main_section_01{background-color: #222;background-image: url(/img/bg/d_bg01.jpg);}

.k_ms1_txt{position: absolute;top: 50%;left: 0;transform: translateY(-50%);width: 100%;}

/*--------------main_section_02--------------*/
#k_main_section_02{padding: 125px 0;background-color: #1b1b1b;margin-top: -1px;position: relative;}
#k_main_section_02>div>div:first-child{margin-bottom: 125px;}

.k_ms2_bg{content: "";position: absolute;bottom: 0;left: 0;width: 100%;height: 44%;background-image: url(/img/bg/k_main_bg_02.jpg);background-position: center top;background-repeat: no-repeat;background-size: cover;}

#k_main_section_02 .k_link_btn{margin-top: 75px;}

.k_ms2_box{float: left;position: relative;z-index: 1;}
.k_ms2_box_01{width: 25%;}
.k_ms2_box_02{width: 75%;}

.k_ms2_slt li a{display: block;width: 100%;height: 100%;margin-bottom: 30px;position: relative;}
.k_ms2_slt li a::after{content: "";position: absolute;top: 50%;left: 0;transform: translateY(-50%);width: 12px;height: 3px;background-color: #2792ff;display: none;}
/*.k_ms2_slt li a.active{color: #2792ff;font-style: italic;padding-left: 20px;}*/
.k_ms2_slt li a.active::after{display: block;}

.k_video_wrap{display: none;}
.k_ms_select_la_01{display: block;}

.k_video_wrap li{float: left;width: 33.333%;position: relative;cursor: pointer;}
.k_video_wrap li figure img{display: block;width: 100%;}

.k_video_wrap li a i{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);font-size: 1.5rem;font-weight: 900;color: #FFF;}

.k_video_open{position: absolute;top: 10%;left: 10%;width: 20px;height: 23px;background-image: url(/img/icon/k_video_button.png);background-repeat: no-repeat;background-position: center center;z-index: 4;transition: all 0.3s;}
.k_video_link{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.3) 80%);z-index: 1;transition: all 0.5s;}
.k_video_wrap li h4{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8% 10%;
    z-index: 2;
}
.k_video_wrap li h4 span, .k_video_wrap li h4 b{
    display: block;
}
.k_video_wrap li h4 span{
    font-size: 15px;
    font-weight: bold;
    color: #2792ff;
    letter-spacing: 0.03em;
    margin-bottom: 13px;
}
.k_video_wrap li h4 b{
    font-size: 1.4rem;
    color: #FFF;
    font-weight: 400;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;}

.k_video_wrap li:hover h4{
    z-index: 1;
}

.k_video_wrap li:hover .k_video_link{z-index: 2;background-color: rgba(2,2,2,0.65);}
.k_video_wrap li:hover .k_video_open{top: 50%;left: 50%;transform: translate(-50%, -50%);}

.k_pro_list{padding: 0 20px;background-color: rgba(0,0,0,0.7);}
.k_pro_list li{height: 75px;border-bottom: 1px solid rgba(255,255,255,0.2);}
.k_pro_list li:last-child{border-bottom: none;}
.k_pro_list li a{display: block;width: 100%;height: 100%;}

.k_pro_list li a span, .k_pro_list li a h4{
    float: left;
    line-height: 75px;
    transition: color 0.3s;
}


.k_pro_list li a span{width: 15%;font-weight: 400;letter-spacing: 0.03em;color: rgba(255,255,255,0.4);padding-left: 15px;}
.k_pro_list li a h4{
    width: 85%;
    font-size: 1.15rem;
    color: #FFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.k_pro_list:hover *{color: rgba(255,255,255,0.4);}
.k_pro_list li:hover a *{color: #FFF;}

@media screen and (max-width: 1280px){

    .k_ms2_slt li a{font-size: 2rem;}
}

@media screen and (max-width: 980px){

    #k_main_section_02::after{height: 70%;}

    .k_ms2_box{float: none; display: block; width: 100%;}

    .k_ms2_slt{text-align: center;margin-bottom: 25px;}
    .k_ms2_slt li{display: inline-block;padding: 0 35px;}
    .k_ms2_slt li a{}

    .k_ms2_slt li a::after{top: 105%;width: 100%;}
    .k_ms2_slt li a.active{padding: 0;}

    #k_main_section_02 .k_link_btn{margin-top: 0;}
    .k_pro_list{margin-top: 50px;padding: 0;}
}

@media screen and (max-width: 760px){

    .k_ms2_slt li a{font-size: 1.5rem;}
    .k_ms2_slt li{padding: 0 25px;}

    .k_video_wrap li{float: none;display: block;width: 100%;max-width: 375px;margin: 0 auto;margin-bottom: 25px;}
    .k_video_wrap li:last-child{margin-bottom: 0;}

    #k_main_section_02{padding: 85px 0;}
    .k_pro_list li a span{width: 30%;}
    .k_pro_list li a h4{
        width: 70%;
    }
}

/*--------------main_section_03--------------*/
#k_main_section_03{background-color: #222;background-image: url(/img/bg/d_bg02.jpg);}

#k_main_section_03 .k_main_tit, #k_main_section_03 .k_main_txt{text-align: right;}

#k_main_section_03 .k_link_btn{float: right;}

@media screen and (max-width: 760px){

    #k_main_section_03 .k_main_tit, #k_main_section_03 .k_main_txt{text-align: center;}
    #k_main_section_03 .k_link_btn{float: none;}
}

/*--------------main_section_04--------------*/
#k_main_section_04{background-color: #222;background-image: url(/img/bg/d_bg03.jpg);}

/*--------------footer--------------*/
.k_footer{padding: 50px 0;background-color: #222;}
.k_ft_con{width: 90%;max-width: 1500px;margin: 0 auto;}

.k_footer .k_logo img{padding-top: 0 !important;}

.k_info{float: right;}
.k_info i, .k_info span{display: block;font-size: 0.9rem;text-align: right;}
.k_info i{color: rgba(255,255,255,0.6);line-height: 200%;}
.k_info span{color: rgba(255,255,255,0.4);margin-top: 25px;}

@media screen and (max-width: 980px){

    .k_info, .k_footer .k_logo{float: none;display: block;width: 100%;}
    .k_footer .k_logo{max-width: 150px;margin-bottom: 25px;}

    .k_info i, .k_info span{text-align: left;}
    .k_info i b{display: none;}
}

/*--------------mobile_menu--------------*/
#k_mo_bg{position: fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(30,30,42,0.92);z-index: 1100;transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -webkit-transition: transform 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -moz-transition: transform 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -ms-transition: transform 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
    -o-transition: transform 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.k_mo_inner{position: absolute;top: 150px;left: 50%;transform: translateX(-50%);width: 90%;max-width: 1500px;}
.k_mo_inner::after{content: "";clear: both;display: block;}

.k_mo_menu>ul>li{margin-bottom: 50px;padding-bottom: 50px;border-bottom: 1px solid rgba(255,255,255,0.15);}
.k_mo_menu>ul>li::after{content: "";clear: both;display: block;}
.k_mo_menu>ul>li>a, .k_mo_menu>ul>li>ul{float: left;}
.k_mo_menu>ul>li>a{width: 25%;font-size: 2rem;font-weight: 900;color: #FFF;transition: all 0.3s;}
.k_mo_menu>ul>li>ul{width: 75%;margin-top: 15px;}
.k_mo_menu>ul>li>ul::after{content: "";clear: both;display: block;}
.k_mo_menu>ul>li>ul>li{float: left;}
.k_mo_menu>ul>li>ul>li>a{display: block;width: 100%;height: 100%;font-size: 1.2rem;font-weight: bold;color: rgba(255,255,255,0.6);padding-right: 50px;transition: color 0.3s;}
.k_mo_menu>ul>li>ul>li>a:hover{color: #FFF;text-decoration: underline;}

.k_mo_menu>ul>li:hover>a{padding-left: 25px;}

.k_mo_close{float: right;width: 50px;height: 50px;position: relative;}
.k_mo_close span{position: absolute;top: 24px;left: 10px;width: 30px;height: 2px;background-color: #FFF;transition: transform 0.3s;}
.k_mo_close span:nth-child(1){transform: rotate(45deg);}
.k_mo_close span:nth-child(2){transform: rotate(-45deg);}

.k_mo_close:hover span{transform: rotate(0);}

.k_mo_info_wrap{margin-top: 100px;}
.k_mo_info_wrap .k_logo{float: left;}
.k_mo_info_wrap .k_logo img{padding-top: 0;}

.k_mo_info_wrap .k_mo_info{float: right;line-height: 180%;font-weight: bold;}
.k_mo_info_wrap .k_mo_info i{display: block;color: rgba(255,255,255,0.7);text-align: right;font-size: 14px;}

/*--------------mobile_menu_motion--------------*/
#k_mo_bg.active{transform: translateY(0);}

@media screen and (max-width: 1280px){

    .k_mo_inner{top: 50px;}
}

@media screen and (max-width: 980px){

    .k_mo_info_wrap .k_logo, .k_mo_info_wrap .k_mo_info{float: none;display: block;width: 100%;}
    .k_mo_info_wrap .k_mo_info{margin-top: 25px;}
    .k_mo_info_wrap .k_mo_info i{text-align: left;}
}

@media screen and (max-width: 760px){

    .k_mo_menu>ul>li>a, .k_mo_menu>ul>li>ul{float: none;display: block;width: 100%;}
    .k_mo_menu>ul>li>a{margin-bottom: 25px;}

    .k_mo_menu>ul>li:hover>a{padding-left: 0;}

    .k_mo_menu>ul>li{margin-bottom: 30px;padding-bottom: 30px;}
    .k_mo_info_wrap{margin-top: 35px;}
}

@media screen and (max-width: 460px){

    .k_mo_menu>ul>li>a{font-size: 1.5rem;}
    .k_mo_menu>ul>li>ul>li>a{font-size: 14px;padding-right: 25px;}

    .k_mo_info_wrap .k_mo_info{display: none;}
}

/*서브페이지*/
/*서브페이지*/
/*서브페이지*/

/*Sub ALL CSS-----------------------------------------------------*/
.k_sub_section{padding: 100px 0;}

.k_sub_tit{font-size: 2rem;font-weight: 900;display: block;color: #0d1a79;letter-spacing: -0.045em;}
.k_sub_tit_mb50{margin-bottom: 50px;}
.k_sub_tit_mb25{margin-bottom: 25px;}

.k_sub_tit_mb25 div{
    overflow: hidden;
}

.k_sub_tit_mb25 div img{
    width: 24rem;
    height: auto;
}

.k_sub_txt{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 165%;
    letter-spacing: -0.045em;
}

.k_sub_txt2{
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: -0.045em;
}

@media screen and (max-width: 1480px){
    .k_sub_tit{font-size: 1.8rem;}
    .k_sub_txt, .k_sub_txt2{
        font-size: 1rem;
    }
}

@media screen and (max-width: 980px){

}

@media screen and (max-width: 760px){
    
}

/*--------------sub_visual--------------*/
#k_sv{height: 500px;background-color: #222;position: relative;overflow: hidden;}
#k_sv figure{width: 100%;height: 100%;transform: scale(1.1);transition: transform 5s;}

#k_sv.active figure{transform: scale(1);}

#k_sv h2{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 1500px;
    text-align: center;
    font-size: 2.5rem;
    color: #FFF;
    font-weight: 900;
}

#k_sv h2 span{
    position: relative;
}

#k_sv h2 span::after{
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #FFF;
}

.k_sv_txt{
    /*position: absolute;bottom: 0;left: 0;*/
    background-color: #222;
    width: 100%;
    /*background-image: url(/img/page/k_nav_bg.jpg);*/
    background-color: #1b1c20;
}

.k_sv_con{width: 90%;max-width: 1500px;margin: 0 auto;height: 100px;}

.k_sv_txt h2{
    font-size: 1.8rem;
    color: #FFF;
    font-weight: 900;
    float: left;
    line-height: 100px;
}

/*.k_sv_txt h2 span{position: relative;}
.k_sv_txt h2 span::after{content: "";position: absolute;bottom: -21px;left: 0;width: 30px;height: 2px;background-color: #FFF;}*/


@media screen and (max-width: 1480px){

    #k_sv{height: 380px;}
}

@media screen and (max-width: 760px){

    #k_sv{height: 300px;}
    #k_sv h2{font-size: 2rem;}
}

/*--------------sv_nav--------------*/
.k_sv_nav>ul>li, .k_sv_nav>ul>li>a{display: none;}
.k_sv_nav{float: right;}
.k_sv_nav>ul>li>ul>li{display: inline-block;}
.k_sv_nav>ul>li>ul>li>a{display: block;width: 100%;height: 100%;font-size: 1.1rem;color: rgba(255,255,255,0.65);font-weight: bold;margin-right: 50px;line-height: 100px;text-align: right;}
.k_sv_nav>ul>li>ul>li>a.active{color: #FFF;}

@media screen and (max-width: 760px){

    .k_sv_con{height: auto;}

    .k_sv_txt{padding: 15px 0;}
    .k_sv_nav, .k_sv_txt h2{float: none;display: block;width: 100%;}
    .k_sv_txt h2, .k_sv_nav>ul>li>ul>li>a{line-height: 65px;}
    .k_sv_nav>ul>li>ul::after{content: "";clear: both;display: block;}
    .k_sv_nav>ul>li>ul>li{float: left;width: 25%;}
    .k_sv_nav>ul>li>ul>li>a{text-align: left;}
}

/*--------------page1_1--------------*/
#k_sub_sec_1_1{
    padding-top: 0;
}

.k_p1_1_box_01{
    background-color: #e7e7e7;
    padding: 100px 0;
}

#k_sub_sec_1_1 .k_p1_1_box_01 .k_container{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;}

.k_box_01_1{
    width: 45%;
    margin-right: 5%;}

.k_box_01_2{
    width: 50%;
    background-color: #222;
    height: 385px;
    position: relative;
    border-radius: 25px;
    background-image: url(/img/page/k_p1_00.png);
    box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -webkit-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -moz-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -ms-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -o-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
}

.k_box_01_2 img{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}


/*----------------------------*/

.k_p1_1_box_02 .k_container{display: flex;flex: 1;align-items: center;justify-content: space-between;}

.k_box_02_1, .k_box_02_2, .k_box_02_3{padding: 100px 0;}

.k_box_02_4{padding-bottom: 100px;}
.k_box_02_1, .k_box_02_3{background-color: #f4f4f4;}

.k_p1_1_box_02 figure, .k_p1_1_box_02 .k_box_02_txt{width: 47.5%;}
.k_box_02_2 .k_container{flex-direction: row-reverse;}

.k_p1_1_box_02 figure img{display: block;width: 100%;}

.k_box_02_txt p{word-break: keep-all;}
.k_box_02_txt p i{display: block;margin-bottom: 20px;}

.k_box_02_4{background: #ffffff;}
.k_box_02_4 a{display: block;width: 100%;height: 100%;padding: 10px 20px;color: #FFF;font-weight: 900;font-size: 0.9rem;letter-spacing: -0.06em;background: #0d1a79;max-width: 200px;margin: 0 auto;text-align: center;border-radius: 25px;}
.k_box_02_4 a i{font-size: 1.4rem;vertical-align: middle;}

/*----------------------------*/
.k_box_02_3 figure{width: 60%;}
.k_box_02_3 .k_box_02_txt{width: 35%;}


/*--------------page1_2--------------*/
/*
.k_inst_ul li{
    float: left;
    width: 30.5%;
    text-align: center;
    margin-bottom: 75px;
}

.k_inst_ul li:nth-child(2n+1){
    margin-right: 2%;
    clear: both;
}*/

.k_inst_ul li{
    float: left;
    width: 30.5%;
    text-align: center;
    margin-bottom: 75px;
    margin-right: 2%;
}

.k_inst_ul li h4{
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.045em;
    background: #2a2939;
    padding: 25px 0;
}
.k_inst_ul li p{
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.k_inst_ul li figure img{
    display: block;
    width: 100%;
}

@media screen and (max-width: 760px){

    .k_inst_ul li{
        float: none;
        display: block;
        width: 100%;
        margin: 0;
        clear: none;
        margin-bottom: 50px
    }
    .k_inst_ul li:last-child{
        margin-bottom: 0;
    }
}


.k_inst_ul li .p1_2_text{
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.045em;
    background: #2a2939;
    padding: 25px 0;
    margin: 0;
}


/*------------------------page1_3------------------------*/
#k_sub_sec_1_1{padding-top: 0;}
.k_p1_1_box_01{background-color: #e7e7e7;padding: 100px 0;}

#k_sub_sec_1_1 .k_p1_1_box_01 .k_container{display: flex;flex: 1;align-items: center;justify-content: space-between;}

.k_box_01_1{
    width: 45%;
    margin-right: 5%;
}
.k_box_01_2{
    width: 50%;
    background-color: #222;
    height: 385px;
    position: relative;
    border-radius: 25px;
    background-image: url(/img/page/k_p1_00.png);
    box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -webkit-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -moz-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -ms-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -o-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
}

.k_box_01_3{
    width: 50%;
    background-color: #222;
    height: 385px;
    position: relative;
    border-radius: 25px;
    background-image: url(/img/page/k_p1_05.png);
    box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -webkit-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -moz-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -ms-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
    -o-box-shadow: 8px 8px 13px rgba(0,0,0,0.25);
}

.k_box_01_3 img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/*----------------------------*/
.k_p1_1_box_03 .k_container{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}

.k_box_02_1, .k_box_02_2{
    padding: 100px 0;
}

.k_box_02_5{
    padding: 50px 0 100px 0;
    flex-direction: row-reverse;
}

.k_box_02_4{
    padding-bottom: 100px;
}
.k_box_02_1{
    background-color: #f4f4f4;
}

.k_box_02_txt p{word-break: keep-all;}
.k_box_02_txt p i{display: block;margin-bottom: 20px;}

.k_box_02_4{
    background: #ffffff;
}
.k_box_02_4 a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    color: #FFF;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: -0.06em;
    background: #0d1a79;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    border-radius: 25px;
}
.k_box_02_4 a i{
    font-size: 1.4rem;
    vertical-align: middle;}

.k_p1_1_box_03 .k_container{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;}

.k_p1_1_box_03 figure, .k_p1_1_box_03 .k_box_02_txt{
    width: 100%;
}

.k_box_02_2 .k_box_02_5 .k_container{
    flex-direction: row-reverse;
}

.k_p1_1_box_03 figure img{
    display: block;
    width: 80%;
    margin: auto;
}


@media screen and (max-width: 1480px){

    .k_box_01_1{
        width: 50%;
    }
    .k_box_01_2{
        width: 50%;
        height: 300px;
    }
    .k_box_01_3{
        width: 50%;
        height: 300px;
    }

    .k_p1_1_box_02 figure, .k_box_02_3 figure{
        width: 80%;
    }
    
    .k_box_02_3 .k_box_02_txt, .k_p1_1_box_02 .k_box_02_txt{
        width: 100%;
        padding: 30px;
    }
}

@media screen and (max-width: 980px){

    #k_sub_sec_1_1 .k_p1_1_box_01 .k_container, .k_p1_1_box_02 .k_container, .k_p1_1_box_03 .k_container{
        flex: none;
        display: block;
    }

    .k_p1_1_box_02 figure, .k_p1_1_box_03 figure, .k_box_02_3 figure, .k_box_02_3 .k_box_02_txt, .k_p1_1_box_02 .k_p1_1_box_03 .k_box_02_txt{
        display: block;
        width: 100%;
    }

    .k_p1_1_box_02 figure, .k_p1_1_box_03 figure, .k_box_02_3 figure{
        max-width: 712px;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .k_box_01_1, .k_box_01_2, .k_box_01_3{
        width: 100%;
        margin: 0;
    }
    .k_box_01_1{
        margin-bottom: 50px;
    }

    .k_sub_section, .k_box_02_1, .k_box_02_2, .k_box_02_3, .k_p1_1_box_01{padding: 85px 0;}
	.k_box_02_4{padding-bottom: 85px;}
}

@media screen and (max-width: 760px){

    .k_box_01_1 p, .k_box_01_2 p{
        word-break: keep-all;
    }

    .k_box_01_2{
        height: 200px;
    }
    .k_box_01_2 img{
        max-width: 60%;
    }

    .k_box_01_3{
        height: 200px;
    }
    
    .k_box_01_3 img{
        max-width: 60%;
    }

    .k_sub_section, .k_box_02_1, .k_box_02_2, .k_box_02_3, .k_p1_1_box_01{
        padding: 75px 0;
    }
	.k_box_02_4{
        padding-bottom: 75px;
    }
}


/*---------------------------------------------------*/

/*page3_1*/
#k_sub_sec_3_1{position: relative;}
#k_sub_sec_3_1::after{content: "";position: absolute;bottom: 0;left: 0;width: 100%;height: 0;background-color: #f4f4f4;z-index: -1;transition: height 1s;transition-delay: 1s;}

#k_sub_sec_3_1.k_motion.active::after{height: 255px;}

.k_p3_1_box_01 figure, .k_p3_1_box_01 div{float: left;width: 47.5%;}
.k_p3_1_box_01 figure{margin-right: 5%;height: 500px;background-image: url(/img/page/k_p3_01.jpg);position: relative;
    box-shadow: 8px 8px 13px rgba(0,0,0,0.2);
    -webkit-box-shadow: 8px 8px 13px rgba(0,0,0,0.2);
    -moz-box-shadow: 8px 8px 13px rgba(0,0,0,0.2);
    -ms-box-shadow: 8px 8px 13px rgba(0,0,0,0.2);
    -o-box-shadow: 8px 8px 13px rgba(0,0,0,0.2);
}
.k_p3_1_box_01 figure img{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}

.k_com_txt p{line-height: 200%;font-weight: bold;color: #777;letter-spacing: -0.045em;word-break: keep-all;}
.k_com_txt p b{font-weight: bold;font-size: 1.2rem;color: #222;}

@media screen and (max-width: 980px){

    .k_p3_1_box_01 figure, .k_p3_1_box_01 div{float: none;display: block;width: 100%;}

    .k_p3_1_box_01 figure{height: 280px;margin-bottom: 50px;}

    #k_sub_sec_3_1.k_motion.active::after{height: 22%;}
}

@media screen and (max-width: 760px){

    .k_p3_1_box_01 figure{height: 180px;margin-bottom: 50px;}
}

/*--------------page3_3--------------*/
#k_sub_sec_3_3{background-image: url(/img/page/k_p3_bg.jpg);background-size: cover;background-repeat: no-repeat;background-position: right bottom;}

.k_p3_3_box_01 h1{max-width: 230px;margin-bottom: 40px;}
.k_p3_3_box_01 h1 img{display: block;width: auto;}

.k_p3_3_box_01 p{line-height: 200%;font-weight: bold;color: #777;letter-spacing: -0.045em;word-break: keep-all;}
.k_p3_3_box_01 p b{font-weight: bold;font-size: 1.2rem;color: #222;}

.k_p3_3_box_01 figure{margin-top: 50px;}
.k_p3_3_box_01 figure img{display: block;}

@media screen and (max-width: 1280px){

    .k_p3_3_box_01 figure img{width: 100%;}
}

/*--------------page_motion--------------*/

/*--------------page1_1--------------*/
.k_move_on{opacity: 0;transition: transform 1s, opacity 1s;}
.k_move_down{transform: translateY(100px);opacity: 0;}
.k_move_left{transform: translateX(-100px);}
.k_move_right{transform: translateX(100px);}

.k_delay{transition-delay: 0.5s;}
.k_delay2{transition-delay: 0.8s;}

.k_motion.active .k_move_on{transform: translateY(0);opacity: 1;}

/*관리자*/
.hd_admin{position:fixed;bottom:10px;left:10px;z-index:999;}
.hd_admin a{padding:0 20px;display:inline-block;;line-height:40px;background:#d12323;color:#fff}
.hd_admin a:hover{background:#ff0000}

/*회사소개서 다운로드 버튼*/
#k_download{position: fixed;bottom: 15px;right: 15px;background: #5f1562;z-index: 1200;border-radius: 100px;}
#k_download a{display: block;width: 100%;height: 100%;padding: 10px 20px;color: #FFF;font-weight: 900;font-size: 0.9rem;letter-spacing: -0.06em;}
#k_download a i{font-size: 1.1rem;vertical-align: bottom;display: inline-block;margin-right: 5px;}