/**
* Created by PhpStorm.
* Date         : 2021-11-12
* Developer    : SeHwan Hwang
* Description  : wp_style.css
* ⓒ 2021. WebPlanet Co. All Rights Reserved.
*/

@charset "utf-8";

/**********************************************************************************************************************/
/* 작성방법 */
/*
1. 모든 스타일은 클래스명 .wp_wrap 을 시작으로 작성한다.
2. 공통 스타일의 클래스명은 cm_ 접두어를 사용한다.
*/
/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
@charset "utf-8";

/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
/* font */
@font-face {
    font-family: 'Pretendard-Thin';
    src: url('../font/Pretendard-Thin.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-ExtraLight';
    src: url('../font/Pretendard-ExtraLight.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-Light';
    src: url('../font/Pretendard-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('../font/Pretendard-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-Medium';
    src: url('../font/Pretendard-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-SemiBold';
    src: url('../font/Pretendard-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-Bold';
    src: url('../font/Pretendard-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-ExtraBold';
    src: url('../font/Pretendard-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Pretendard-Black';
    src: url('../font/Pretendard-Black.woff2') format('woff2');
}


:root {
    --font-pre100: 'Pretendard-Thin';
    --font-pre200: 'Pretendard-ExtraLight';
    --font-pre300: 'Pretendard-Light';
    --font-pre400: 'Pretendard-Regular';
    --font-pre500: 'Pretendard-Medium';
    --font-pre600: 'Pretendard-SemiBold';
    --font-pre700: 'Pretendard-Bold';
    --font-pre800: 'Pretendard-ExtraBold';
    --font-pre900: 'Pretendard-Black';
}


html{
    scroll-behavior: smooth;
}


.wp_wrap {
    font-family: var(--font-pre400);
    word-break: keep-all;
    overflow-x: clip;
}
.wp_wrap .cm_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.wp_wrap .cm_inner02 {
    max-width: 1555px;
    width: 100%;
    margin: 0 0 0 auto;
}
.wp_wrap .cm_inner03 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}


/* 서브 섹션 */
.wp_wrap  .cm_sec{
    padding: 100px 0;
}
.wp_wrap  .cm_sec02{
    padding:  0;
}



/* 메인 타이틀 폰트 */
.wp_wrap .tit_box .m_tit{
    font-size: 50px;
    font-family: var(--font-pre700); 
    margin-bottom: 20px;
}
.wp_wrap .tit_box .m_desc{
    font-size: 20px;
	color: #838383;
}
.cw {
	color: #fff!important;
}
/* 서브 타이틀 폰트 */
.wp_wrap #s_page .tit_box{
    text-align: center;
}
.wp_wrap .tit_box .s_tit{
    font-size: 60px;
    font-family: var(--font-pre700); 
    margin-bottom: 20px;
}
.wp_wrap .tit_box .s_desc{
    font-size: 20px;
    line-height: 1.5;
}

/**********************************************************************************************************************/






/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
.wp_wrap header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
}

.wp_wrap header .h_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.wp_wrap header .h_inner .lt .logo{}


.wp_wrap header .h_inner .rt{
    display: flex;
    align-items: center;
    gap: 202px;
}
.wp_wrap header .h_inner .rt nav .gnb {
    display: flex;
    align-items: center;

}
.wp_wrap header .h_inner .rt nav .gnb .m_list{
    position: relative;
    width: 180px;
}
.wp_wrap header .h_inner .rt nav .gnb .m_list::after {
    content: "\e936";
    font-family: xeicon;
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: #5BC3F9;
    opacity: 0;
    transition: 0.3s;
}
.wp_wrap header .h_inner .rt nav .gnb .m_list:hover::after {
    opacity: 1;
}
.wp_wrap header .h_inner .rt nav .gnb .m_list>a{
    display: block;
    font-size: 20px;
    color: #fff;
    padding: 38px 0 ;
    text-align: center;
    padding: 38px 0;
    transition: 0.3s;
}
.wp_wrap header .h_inner .rt nav .gnb .m_list:hover>a{
    color: #5BC3F9 !important;
    font-family: var(--font-pre700);
}
.wp_wrap header .h_inner .rt nav .gnb .m_list .sub_mnu{
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    width: 100%;
    padding: 20px 0;      
}

.wp_wrap header .h_inner .rt nav .gnb .m_list .sub_mnu li>a{
    display: block;
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
    text-align: center;

}
.wp_wrap header .h_inner .rt nav .gnb .m_list .sub_mnu li:hover>a{
    color: #5BC3F9;

}



/* convenient_box */
.wp_wrap header .h_inner .rt .convenient_box{
    display: flex;
    align-items: center;
    gap: 60px;
    margin-right: 60px;
}
.wp_wrap header .h_inner .rt .convenient_box>div{
    position: relative;
    padding: 35px 0;
}
.wp_wrap header .h_inner .rt .convenient_box>div>i{
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.wp_wrap header .h_inner .rt .convenient_box>div>i:hover{
    color: #5BC3F9 !important;
}
.wp_wrap header .h_inner .rt .convenient_box .lang .lang_box {
    position: absolute;
    background: #000;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding:10px 20px;
    border-radius:15px;
    display: none;
}
.wp_wrap header .h_inner .rt .convenient_box .user .user_box{
    position: absolute;
    background: #000;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding:10px 20px;
    border-radius:15px;
    display: none;
}
.wp_wrap header .h_inner .rt .convenient_box .lang .lang_box ul,
.wp_wrap header .h_inner .rt .convenient_box .user .user_box ul{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.wp_wrap header .h_inner .rt .convenient_box .lang .lang_box ul::after, 
.wp_wrap header .h_inner .rt .convenient_box .user .user_box ul::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #000;
}
.wp_wrap header .h_inner .rt .convenient_box .lang:hover .lang_box, 
.wp_wrap header .h_inner .rt .convenient_box .user:hover .user_box {
    display: block;
}
.wp_wrap header .h_inner .rt .convenient_box .lang .lang_box ul li a,
.wp_wrap header .h_inner .rt .convenient_box .user .user_box ul li a{
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.wp_wrap header .h_inner .rt .convenient_box .lang .lang_box ul li a:hover,
.wp_wrap header .h_inner .rt .convenient_box .user .user_box ul li a:hover{
    color: #5BC3F9;
}



/* 풀메뉴 여는 아이콘 */
.wp_wrap header .h_inner .rt .convenient_box .mopen{
    padding: 38.5px 0;
}
.wp_wrap header .h_inner .rt .convenient_box .mopen .icon_box{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.wp_wrap header .h_inner .rt .convenient_box .mopen .icon_box span{
    border-radius: 5px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}
.wp_wrap header .h_inner .rt .convenient_box .mopen .icon_box span.mi01{
    width: 34px;
}
.wp_wrap header .h_inner .rt .convenient_box .mopen .icon_box span.mi02{
    width: 29px;
}
.wp_wrap header .h_inner .rt .convenient_box .mopen .icon_box:hover span.mi02{
    background: #5BC3F9 !important;
}
.wp_wrap header .h_inner .rt .convenient_box .mopen .icon_box span.mi03{
    width: 24px;
}






/* 풀메뉴 */
.wp_wrap header .ful_mnu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.wp_wrap header .ful_mnu.on{
    right: 0;
}
.wp_wrap header .ful_mnu .icon_box{
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
}
.wp_wrap header .ful_mnu .icon_box i{
    font-size: 30px;
    color: #fff;
    font-weight: 500;
}
.wp_wrap header .ful_mnu .ful_mnu_inner {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_logo{
    margin-bottom: 100px;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_gnb{
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_gnb .ful_m_list {
    width: 25%;
    border-right: 1px solid #454545;
    min-height: 360px;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_gnb .ful_m_list:first-child {
    border-left: 1px solid #454545;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_gnb .ful_m_list>a{
    display: block;
    text-align: center;
    font-size: 36px;
    color: #fff;
    font-family: var(--font-pre700);
    margin-bottom: 30px;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_gnb .ful_m_list:hover>a{    
    color: #5BC3F9;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_gnb .ful_m_list>.ful_sub_mnu>li a{
    display: block;
    text-align: center;
    font-size: 22px;
    color: #fff;
    padding: 10px 0;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_gnb .ful_m_list>.ful_sub_mnu>li:hover a{
    color: #5BC3F9;
}





/* search_box */
.wp_wrap header .search_box{
    position: fixed;
    /* top: -100%; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    /* transition: 0.5s; */
    display: none;
}
/* .wp_wrap header .search_box.on{
    top: 0;
} */
.wp_wrap header .search_box .icon_box{
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
}
.wp_wrap header .search_box .icon_box i{
    font-size: 30px;
    color: #000;
    font-weight: 500;
}
.wp_wrap header .search_box .search_box_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 0;
    background: #F5F5F5;
}
.wp_wrap header .search_box .search_box_inner .logo_box{
    margin-bottom: 70px;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    min-width: 1000px;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt{
    padding: 20px 30px;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 40px;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt .search_mnu{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt .search_mnu .show_mnu{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt .search_mnu .show_mnu::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 1px;
    height: 20px;
    background: #5BC3F9;

}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt .search_mnu .show_mnu p{
    font-size: 20px;
    min-width: 130px;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt .search_mnu .show_mnu i{    
    font-size: 15px;
    font-weight: bolder;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt .search_mnu .hide_mnu{
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt .search_mnu .hide_mnu.on{
    display: block;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt .search_mnu .hide_mnu li {
    font-size: 18px;
    padding: 8px 0;
    cursor: pointer;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt input[type='text']{
    width: 100%;
    border: none;
    outline: none;
    font-size: 20px;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .lt input[type='text']::placeholder{
    color: #CCCCCC;
}
.wp_wrap header .search_box .search_box_inner .search_form .form_iner .rt button{
    background: #000000;
    color: #fff;
    padding: 20px 50px;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    font-size: 20px;
} 














/* 서브메뉴 배경 */
.wp_wrap header .sub_mnu_bg{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 260px;
    z-index:-1 ;
    background: rgba(0,0,0,0.5);
}

/* 헤더메뉴 배경 */
.wp_wrap header .mnu_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 98px;
    background:#fff;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}
/**********************************************************************************************************************/









/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
.wp_wrap footer .btn_bar {
    width: 100%;
    background: #ACACAC;
    padding: 21px 0;
}
.wp_wrap footer .btn_bar .bar_inner {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}
.wp_wrap footer .btn_bar .bar_inner>button {
    font-size: 15px;
    font-family: 'Pretendard-Regular';
    color: #FFFFFF;
    background: inherit;
}
.wp_wrap footer .top{
   border-top: 1px solid #ddd;
    padding: 20px 0;
    background: #eeeeee;
    border-bottom: 1px solid #dddddd;
}
.wp_wrap footer .top .f_mnu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}
.wp_wrap footer .top .f_mnu li{
    color: rgb(145 145 145);
    font-size: 15px;
    cursor: pointer;
}
.wp_wrap footer .bot{
    padding: 30px 0;
    background: #f7f7f7;
}
.wp_wrap footer .f_inner{
    display: block;
}
.wp_wrap footer .f_inner .lt .f_logo{
    min-width: 230px;
}
.wp_wrap footer .f_inner .rt .f_info{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.wp_wrap footer .f_inner .rt .f_info li{
    position: relative;
    margin-right:10px;
    padding-right:10px;
    color: #999999;
    font-size: 15px;
}
.wp_wrap footer .f_inner .rt .f_info li a{
    color: #999999;
}
.wp_wrap footer .f_inner .rt .f_info li::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 12px;
    background: #999999;
}
.wp_wrap footer .f_inner .rt .f_info li:last-child::after{
    display: none;
}
.wp_wrap footer .f_inner .rt .time {
    font-size: 15px;
    font-family: 'Pretendard-Regular';
    color: #999999;
    margin-bottom: 15px;
}

.wp_wrap footer .f_inner .rt .copyright,
.wp_wrap footer .f_inner .rt .copyright a{
    font-size: 15px;
}
.wp_wrap footer .f_inner .rt .copyright{
    color: #999999;
}
.wp_wrap footer .f_inner .rt .copyright a{
    color: #b1b1b1;
    transition: 0.3s;
}
.wp_wrap footer .f_inner .rt .copyright a:hover{
    color: #898989;
}
/**********************************************************************************************************************/











/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
/* mainsec01 - #m_visual */
.wp_wrap #m_visual{
    position: relative;
}
.wp_wrap #m_visual .m_slider{
    position: relative;
}
.wp_wrap #m_visual .m_slider .m_slide{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.wp_wrap #m_visual .m_slider .m_slide .mv_img{
    display: block; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border:0;
    transform: scale(1.1);    
    transition: 4s;
}
.wp_wrap #m_visual .m_slider .m_slide .mv_img.mv_img01{
    background: url(../img/main/mainslide01.jpg) no-repeat center center / cover;
}
.wp_wrap #m_visual .m_slider .m_slide .mv_img.mv_img02{
    background: url(../img/main/mainslide02.jpg) no-repeat center center / cover;
}
.wp_wrap #m_visual .m_slider .m_slide.action .mv_img {
    transform: scale(1); 
}
.wp_wrap #m_visual .m_slider .m_slide .txt_box_out {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(87, 79, 60, 0.3);
}
.wp_wrap #m_visual .m_slider .m_slide .txt_box_out .txt_box .mv_tit{
    font-size: 60px;
    font-family: var(--font-pre700);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    
    opacity: 0;
    transition: 0.8s;
    transform: translateY(70px);
}
.wp_wrap #m_visual .m_slider .m_slide .txt_box_out .txt_box .mv_desc{
    font-size: 20px;
    color: #fff;
    
    opacity: 0;
    transition: 0.8s 0.8s;
    transform: translateY(70px);
}
.wp_wrap #m_visual .m_slider .m_slide.action .txt_box_out .txt_box .mv_tit,
.wp_wrap #m_visual .m_slider .m_slide.action .txt_box_out .txt_box .mv_desc{
    opacity: 1;
    transform: translateY(0);
}
.wp_wrap #m_visual .scr_d{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap #m_visual .scr_d>a{
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 10px;
}
.wp_wrap #m_visual .scr_d>a>p{
      font-size: 15px;
      color: rgba(255, 255, 255, 0.5);
}

.wp_wrap #m_visual .scr_d>a>.scr_icon_box{}
.wp_wrap #m_visual .scr_d>a>.scr_icon_box>svg{}
.wp_wrap #m_visual .scr_d>a>.scr_icon_box>svg #arrow_line{
      animation: downLine 1.5s ease-in  infinite;
}
.wp_wrap #m_visual .scr_d>a>.scr_icon_box>svg #arrow_dwn{
      animation: longDw 1.5s   infinite;
}


@keyframes longDw{
      0%{
            transform: translateY(-30px);
      }
      100%{
            transform: translateY(0);
      }
}

@keyframes downLine{
      0%{
            opacity: 0;
      }
      100%{
            opacity: 1;
      }
}

/* mainsec02 - #m_notimnu */
.wp_wrap #m_notimnu .iner{}
.wp_wrap #m_notimnu .iner .title {
    margin-bottom: 70px;
}
.wp_wrap #m_notimnu .iner .title .tit {
    font-size: 40px;
    font-family: 'Pretendard-Bold';
    text-align: center;
    margin-bottom: 20px;
}
.wp_wrap #m_notimnu .iner .title .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    text-align: center;
}
.wp_wrap #m_notimnu .iner .rt{
    width:100%;
}
.wp_wrap #m_notimnu .iner .rt .mnus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
	gap: 90px;
}
.wp_wrap #m_notimnu .iner .rt .mnus .mnu{
    width: 100%;
    overflow: hidden;
}
.wp_wrap #m_notimnu .iner .rt .mnus .mnu a{
    display: block;
    aspect-ratio: auto 1 / 1;
    padding: 34px 0;
    padding: 10px;
    border: 1px solid #ddd;
	border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wp_wrap #m_notimnu .iner .rt .mnus .mnu a:hover{
    background: rgba(0, 0, 0, 0.02);
}
.wp_wrap #m_notimnu .iner .rt .mnus .mnu .icon_box{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #m_notimnu .iner .rt .mnus .mnu p{
    font-size: 20px;
    text-align: center;
}
.wp_wrap #m_notimnu .iner .rt .mnus .mnu p span{
    font-size: 15px;
    word-break: break-all;
    display: inline-block;
}

/* mainsec03 - #m_new */
.wp_wrap #m_new{
    background: #F2F2F2;
}
.wp_wrap #m_new .iner .tit_box{
    margin-bottom: 40px;
}
.wp_wrap #m_new .iner .tab_zone .tab_mnu{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 0 0 10px 0;
}
.wp_wrap #m_new .iner .tab_zone .tab_mnu li:nth-child(2) button,
.wp_wrap #m_new .iner .tab_zone .tab_mnu li:nth-child(3) button,
.wp_wrap #m_new .iner .tab_zone .tab_mnu li:nth-child(4) button{
    min-width: 135px;

}
.wp_wrap #m_new .iner .tab_zone .tab_mnu li button{
    padding: 10px 25px;
    background: transparent;
    border-radius: 50px;
    overflow: hidden;
    font-size: 20px;
    font-family: var(--font-pre500);
}
.wp_wrap #m_new .iner .tab_zone .tab_mnu li.on button{
    background: #b1b1b1;
    color: #fff;
}
.wp_wrap #m_new .iner .tab_zone .tab_content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer{
    background: #fff;
    border-radius: 10px;
    height: 308px;
    /*overflow: hidden; */
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm{
    position: relative;
    height: 100%;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a .layer_in{
    padding: 67px 35px;
    height: 100%;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a .layer_in .cate{
    display: inline-block;
    padding: 5px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 25px;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a .layer_in .cate.c01{
    background: #d99530;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a .layer_in .cate.c02{
    background: #5e9f94;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a .layer_in .cate.c03{
    background: #898989;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a .layer_in .tit p{
    font-size: 22px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a .layer_in .desc p{
    font-size: 17px;
    margin-bottom: 50px;
	color: #7f7f7f;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a .layer_in .date{
    font-size: 17px;
    color: #AAAAAA;
}
/* 볼더 애니메이션 */
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a{
    position:relative;
    box-sizing:border-box;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a::before, 
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a::after {
    display: block;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 3px solid transparent;
    box-sizing: inherit;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a::before {
    top: 0;
    left: 0;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a::after {
    bottom: 0;
    right: 0;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a:hover::before, 
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a:hover::after, 
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a:focus::before, 
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a:focus::after {
    width: 100%;
    height: 100%;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a:hover::before, 
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a:focus::before {
    border-top-color: #5BC3F9;
    border-right-color: #5BC3F9;
    transition: width 0.2s ease-out,height 0.2s ease-out 0.2s;
}
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a:hover:after, 
.wp_wrap #m_new .iner .tab_zone .tab_content .tab_layer .itm a:focus:after {
    border-bottom-color: #5BC3F9;
    border-left-color: #5BC3F9;
    transition: border-color 0.2s ease-out 0.4s, width 0.2s ease-out 0.4s,height 0.2s ease-out 0.6s;
} 
.wp_wrap #m_new .iner .tab_zone .more{
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #m_new .iner .tab_zone .more button{
font-size: 16px;
    border: 1px solid #adadad;
    border-radius: 0px;
    padding: 15px 32px;
}





/* mainsec04 - #m_ptnews */
.wp_wrap #m_ptnews{
    background: #5BC3F9;
	background-size: cover;
}
.wp_wrap #m_ptnews .iner{
    display: flex;
    align-items: center;
    gap: 60px;
}
.wp_wrap #m_ptnews .iner .lt{
    width: 20%;
}
.wp_wrap #m_ptnews .iner .rt{
    width: 75%;
}
.wp_wrap #m_ptnews .iner .lt .tit_box{
    margin-bottom: 30px;
    color: #fff;
}
.wp_wrap #m_ptnews .iner .lt .option_box{
    display: flex;
    align-items: center;
    gap: 20px;
}
.wp_wrap #m_ptnews .iner .lt .option_box button{
    background: transparent;
}
.wp_wrap #m_ptnews .iner .lt .option_box i{
    font-size: 25px;
    color: #fff;
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .pt_slide{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    top: 0; 
    transition: top 0.5s;
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .pt_slide:hover{
    top: -30px;    
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .slick-list{
    margin: 0 -10px;
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .slick-slide{
    margin: 30px 10px 0 10px;
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .pt_slide a .slide_in .img_box{
    height: 260px;
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .pt_slide a .slide_in .img_box img{
    width: 100%;
    height: 100%;
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .pt_slide a .slide_in .txt_box{
    background: #fff;
    padding: 30px 35px 45px 35px;
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .pt_slide a .slide_in .txt_box .tit{
    font-size: 22px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
    height: 30px;
}
.wp_wrap #m_ptnews .iner .rt .pt_slider .pt_slide a .slide_in .txt_box .desc{
    font-size: 16px;
    min-height: 48px;
	color: #6d6d6d;
}




/* mainsec05 - #m_partner */
.wp_wrap #m_partner {
    padding: 20px 0;
}
.wp_wrap #m_partner .iner{
    position: relative;
}
.wp_wrap #m_partner .iner .logo_arr{
    background: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
}
.wp_wrap #m_partner .iner .logo_arr.logo_lt{
    left: -45px;
}
.wp_wrap #m_partner .iner .logo_arr.logo_rt{
    right: -45px;
}
.wp_wrap #m_partner .iner .logo_arr i{
    color: #a1a1a1;
    font-size: 26px;
}
.wp_wrap #m_partner .iner .logo_slider .logo_slide{
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px 10px;    
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #m_partner .iner .logo_slider .slick-list{
    margin: 0 -12px;
}
.wp_wrap #m_partner .iner .logo_slider .slick-slide{
    margin: 0 12px;
}

/* .wp_wrap #m_partner .iner .logo_slider .logo_slide .img_box{
    height: 40px;
    min-height: 40px;
} */
.wp_wrap #m_partner .iner .logo_slider .logo_slide .img_box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/**********************************************************************************************************************/












/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap #sub_main{
    position: relative;
    height: 500px;
}
.wp_wrap #sub_main.sm01{
    background: url(../img/sub/sub_main01.jpg) no-repeat center center / cover;
}
.wp_wrap #sub_main.sm02{
    background: url(../img/sub/sub_main02.jpg) no-repeat center center / cover;
}
.wp_wrap #sub_main.sm03{
    background: url(../img/sub/sub_main03.jpg) no-repeat center center / cover;
}
.wp_wrap #sub_main .shadow{
    width: 100%;
    height: 100%;
    background: rgba(87, 79, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #sub_main .shadow .txt_box p{
    font-size: 50px;
    font-family: var(--font-pre700);
    color: #fff;
}


/* 서브 - 스티키메뉴 */
.wp_wrap #fix_menu{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #DFDFDF;
    background: rgba(0, 0, 0, 0.38);
}



/* 서브 - 스티키메뉴 */
.wp_wrap #fix_menu{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #DFDFDF;
    background: rgba(0, 0, 0, 0.38);
}
.wp_wrap #fix_menu .cm_inner{
    padding: 0;
}
.wp_wrap #fix_menu .menu_inner{
    display: flex;
}
.wp_wrap #fix_menu .menu_inner>div{
    padding: 20px 0; 
}
.wp_wrap #fix_menu .menu_inner .first{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}
.wp_wrap #fix_menu .menu_inner .first i{
    font-size: 14px;
    color: #fff;
}
.wp_wrap #fix_menu .menu_inner .second,
.wp_wrap #fix_menu .menu_inner .third{
    position: relative;
    display: flex;
    min-width: 260px;
}
.wp_wrap #fix_menu .menu_inner .second .m_top,
.wp_wrap #fix_menu .menu_inner .third .m_top{
    padding: 0 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
    border-left: 1px solid #949494;
}

.wp_wrap #fix_menu .menu_inner .third .m_top{
    border-right: 1px solid #949494;
}
.wp_wrap #fix_menu .menu_inner .second .second_menu,
.wp_wrap #fix_menu .menu_inner .third .third_menu{
    position: absolute;
    top: 79px;
    left: -1px;
    background: #fff;
    width: calc(100% + 2px);
    padding: 10px 30px;
    font-size: 16px;
    border-left:1px solid #DFDFDF;
    border-right:1px solid #DFDFDF;
    border-bottom:1px solid #DFDFDF;
    display: none;
    z-index: 99;
}
.wp_wrap #fix_menu .menu_inner .third .third_menu br{
    display: none;
}
.wp_wrap #fix_menu .menu_inner .second .second_menu>li>a,
.wp_wrap #fix_menu .menu_inner .third .third_menu>li>a{
    display: block;
    width: 100%;
    color:#949494;
    padding: 10px 0;
}
.wp_wrap #fix_menu .menu_inner .second .m_top br, 
.wp_wrap #fix_menu .menu_inner .third .m_top br{
    display: none;
}
.wp_wrap #fix_menu .menu_inner .second .m_top p, 
.wp_wrap #fix_menu .menu_inner .third .m_top p {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
}
.wp_wrap #fix_menu .menu_inner .second .second_menu ul>li>a{
    display: inline-block;
    width: 100%;
}
.wp_wrap #fix_menu .menu_inner .second .m_top p,
.wp_wrap #fix_menu .menu_inner .third .m_top p{
    font-size: 16px;
    font-family: var(--font-pre500);
    margin-right: 20px;
}
.wp_wrap #fix_menu .menu_inner .second .m_top i,
.wp_wrap #fix_menu .menu_inner .third .m_top i{    
    font-size: 18px;
    color: #fff;
}





/* #s_about01 */
.wp_wrap #s_about01 {
    padding: 170px 0;
}
.wp_wrap #s_about01 .iner{
    display: flex;
    align-items: center;
    gap: 100px;
}
.wp_wrap #s_about01 .iner .lt{
    width: 37%;
}
.wp_wrap #s_about01 .iner .lt .tit{
    font-size: 60px;
    font-family: var(--font-pre700);
    margin-bottom: 60px;
}
.wp_wrap #s_about01 .iner .lt .desc{
    font-size: 20px;
    margin-bottom: 40px;
}
.wp_wrap #s_about01 .iner .lt .date{
    font-size: 30px;
    font-family: var(--font-pre500);
    text-align: right;
}
.wp_wrap #s_about01 .iner .rt{
    width: 58%;
}









/* #s_about02 */
.wp_wrap #s_about02 {
    padding-top: 120px;
    padding-bottom: 275px;
    background: #5BC3F9;
}
.wp_wrap #s_about02 .iner .tit_box{
    color: #fff;
    margin-bottom: 90px;
}
.wp_wrap #s_about02 .iner .itms {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 275px;
}
.wp_wrap #s_about02 .iner .itms .itm {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    overflow: hidden;
    width: 228px;
    height: 340px;
}



.wp_wrap #s_about02 .iner .itms .itm .itm_iner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wp_wrap #s_about02 .iner .itms .itm .itm_iner .icon_box{
    margin-bottom: 0px;
    height: 130px;
    position: relative;
}
.wp_wrap #s_about02 .iner .itms .itm .itm_iner .icon_box::after {
    content: '';
    width: 60px;
    height: 4px;
    border-radius: 3px;
    background: #EEEEEE;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap #s_about02 .iner .itms .itm .itm_iner .icon_box>img {
    margin-top: 45px;
    width: 140px;
}
.wp_wrap #s_about02 .iner .itms>div:nth-child(1) .itm_iner .icon_box>img, .wp_wrap #s_about02 .iner .itms>div:nth-child(2) .itm_iner .icon_box>img {
    margin-top: 40px;
}
.wp_wrap #s_about02 .iner .itms>div:nth-child(3) .itm_iner .icon_box>img {
    margin-top: 0;
    width: 130px;
}
.wp_wrap #s_about02 .iner .itms>div:nth-child(5) .itm_iner .icon_box>img {
    width: 100px;
}
.wp_wrap #s_about02 .iner .itms .itm .itm_iner .tit{
    font-size: 24px;
    font-family: var(--font-pre700);
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.wp_wrap #s_about02 .iner .itms .itm .itm_iner .desc{
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    color: #717171;
}
.wp_wrap #s_about02 .iner .e_pro {
    position: relative;
}
.wp_wrap #s_about02 .iner .e_pro::before {
    content: '‟';
    font-size: 300px;
    color: #308CB5;
    position: absolute;
    top: -200px;
    left: -70px;
}
.wp_wrap #s_about02 .iner .e_pro::after {
    content: '”';
    font-size: 300px;
    color: #308CB5;
    position: absolute;
    bottom: -350px;
    right: -70px;
}
.wp_wrap #s_about02 .iner .e_pro .tit {
    font-size: 35px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    text-align: center;
}
.wp_wrap #s_about02 .iner .e_pro .img_tit {
    margin-top: 45px;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.wp_wrap #s_about02 .iner .e_pro .img_tit>img {}
.wp_wrap #s_about02 .iner .e_pro .img_tit .tit {
    font-size: 35px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    padding-top: 15px;
}





/* #s_about03 */
.wp_wrap #s_about03 .iner .tit_box{
    margin-bottom: 60px;
}
.wp_wrap #s_about03 .iner .ptn>ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 25px;
}
.wp_wrap #s_about03 .iner .ptn>ul>li{
    border: 1px solid #ddd;
    border-radius: 10px;
    /* padding: 25px 45px; */
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}
.wp_wrap #s_about03 .iner .ptn>ul>li .logo_box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}








/* #s_organ */

.wp_wrap #s_organ .iner .tit_box{
    margin-bottom: 60px;
}
.wp_wrap #s_organ .iner .tit_box .s_tit{
    margin-bottom: 0;
}
.wp_wrap #s_organ .iner .organ_tab .tab_mnu02{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_mnu02>li button{
    background: #F7F7F7;
    font-size: 20px;
    font-family: var(--font-pre600);
    border-radius: 30px;
    padding: 20px 70px;

}
.wp_wrap #s_organ .iner .organ_tab .tab_mnu02>li.on button{
    background:#000 ;
    color: #fff;
}


.wp_wrap #s_organ .iner .organ_tab .tab_content02 li{
    display: none;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 li.on{
    display: block;
}



.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .img_box{
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .img_box .mo{
    display: none;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .txt_box .top{
    display: inline-block;
    padding: 15px 40px;
    background: #5BC3F9;
    border-radius: 30px;
    bottom: -10px;
    position: relative;    
    bottom: -30px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .txt_box .top p{
    color: #fff;
    font-size: 30px;
    font-family: var(--font-pre700);
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .txt_box .bot{
    padding: 70px 40px 50px 40px;
    border-radius: 20px;
    background: #F5F5F5;
}

.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .txt_box .bot p{
    font-size: 20px;
    line-height: 1.4;
}






/* .wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table{
    margin-bottom: 100px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table>div{
    display: flex;
    align-items: center;
    justify-content: center;  
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .top{
    position: relative;
    margin-bottom: 80px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .top::after{
    content: "";
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 227px;
    background: #ddd;

}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .top>div{
    width: 150px;
    height: 150px;
    border-radius:50% ;
    display: flex;
    align-items: center;
    justify-content: center;  
    background: #F99A5B; 
}

.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .top>div>p{
    font-size: 24px;
    font-family: var(--font-pre600);
    color: #fff;
}


.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .mid{
    display: flex;
    align-items: center;
    gap: 120px;
    margin-bottom: 80px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .mid>div{
    position: relative;
    background: #fff;
    font-size: 20px;
    font-family: var(--font-pre600);
    border-radius: 30px;
    padding: 20px 70px;    
    border: 1px solid #BBBBBB;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .mid>div:nth-child(2){
    background: #333;
    color: #fff;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .mid>div:nth-child(1)::after{
    content: "";
    position: absolute;
    top:50%;
    transform:translateY(-50%);
    right:-120px;
    width: 120px;
    height: 1px;
    background: #ddd;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .mid>div:nth-child(3)::after{
    content: "";
    position: absolute;
    top:50%;
    transform:translateY(-50%);
    left:-120px;
    width: 120px;
    height: 1px;
    background: #ddd;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .box .acc{
    display: inline-block;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    width: 640px;
    height: 50px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .bot{
    padding: 50px 0 0 0;
    display: flex;
    align-items: center;
    gap: 120px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .bot>div{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .bot>div::after{
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 63%;
    height: 1px;
    background: #ddd;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .bot>div>div>div{
    position: relative;
    background: #eee;
    font-size: 20px;
    font-family: var(--font-pre600);
    border-radius: 30px;
    padding: 20px 70px;    
    margin-bottom: 13px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .bot>div>div>div::after{
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background: #ddd;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .table .bot>div>div>ul>li{
    text-align: center;
    padding: 7px 0;
    font-size: 20px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .organ_itm01 .itm .txt_box .top{
    display: inline-block;
    padding: 15px 40px;
    background: #F99A5B;
    border-radius: 30px;
    bottom: -10px;
    position: relative;    
    bottom: -30px;
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .txt_box .top p{
    color: #fff;
    font-size: 30px;
    font-family: var(--font-pre700);
}
.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .txt_box .bot{
    padding: 70px 40px 50px 40px;
    border-radius: 20px;
    background: #F5F5F5;
}

.wp_wrap #s_organ .iner .organ_tab .tab_content02 .itm .txt_box .bot p{
    font-size: 20px;
    line-height: 1.4;
}
 */











/* #s_history */
.wp_wrap #s_history {
    padding: 120px 0;
}
.wp_wrap #s_history .iner .tit_box{
    margin-bottom: 60px;
}
.wp_wrap #s_history .iner .tit_box .s_tit {
    font-size: 45px;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm {
    position: relative;
}

.wp_wrap #s_history .iner .hstr_box .ten_year_itm .top{
    position: relative;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .top .img_box{
    height: 300px;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .top .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .top .year_txt{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .top .year_txt .b_txt{
    font-size: 80px;
    color: #fff;
    font-family: var(--font-pre700);
    margin-bottom: 10px;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .top .year_txt .sm_txt{
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot{
    position: relative;
    padding: 60px 0;
}

.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot.first_bot{
    margin-bottom: 0;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot::after{
    content:"";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #ddd;
    z-index: -10;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm{
    position: relative;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm::after {
    content: "\e935";
    font-family: xeicon;
    position: absolute;
    font-size: 20px;
    color: #5BC3F9;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.right{
    margin-left: calc(50% + 55px);
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.left{
    margin-right: calc(50% + 55px);
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.right::after {
    top: 14px;
    left: -59px;
    transform: rotate(90deg);
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.left::after {
    top: 14px;
    right: -57px;
    transform: rotate(-90deg);
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm>p{
    font-size: 40px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
    color: #5BC3F9;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm>ul{
    margin-bottom: 60px;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.last>ul{
    margin-bottom: 0;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.last2>ul{
    margin-bottom: 140px;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm>ul>li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm>ul>li>p{
    font-size: 20px;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm>ul>li span{
    font-family: var(--font-pre700);
    min-width: 100px;
    display: inline-block;    
    font-size: 20px;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.left>p{
    text-align: right;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.left>ul>li{
    text-align: right;
    justify-content: flex-end;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .bot .year_itm.left>ul>li span{
    text-align: right;
    order: 2;
}


.wp_wrap #s_history .iner .hstr_box .ten_year_itm .start_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .start_icon .cicle{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #5BC3F9;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .start_icon .cicle span{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #5BC3F9;

}
.wp_wrap #s_history .iner .hstr_box .ten_year_itm .start_icon p{
    font-size:20px;
    font-family: var(--font-pre700);
    color: #5BC3F9;
}



/* map */
.wp_wrap #map {
    padding: 120px 0;
}
.wp_wrap #map .tit {
    gap: 25px;
    margin-bottom: 60px;
}
.wp_wrap #map .tit .img_box {}
.wp_wrap #map .tit .img_box>img {}
.wp_wrap #map .tit .title {
    font-size: 40px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap #map .map_inner {
    margin-bottom: 50px;
}
.wp_wrap #map .info {
    margin-bottom: 40px;
}
.wp_wrap #map .info>li {
    margin-bottom: 13px;
}
.wp_wrap #map .info>li:last-child {
    margin-bottom: 0;
}
.wp_wrap #map .info>li .inner_info {
    gap: 10px;
}
.wp_wrap #map .info>li .inner_info>i {
    font-size: 15px;
    padding: 8px 8px;
    background: #EFEFEF;
    border-radius: 100%;
    color: #5BC3F9;
}
.wp_wrap #map .info>li .inner_info>p {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #map .info>li .number {
    gap: 30px;
}
.wp_wrap #map .info>li .number .left {
    gap: 10px;
}
.wp_wrap #map .info>li .number .left>i {
    font-size: 15px;
    padding: 8px 8px;
    background: #EFEFEF;
    border-radius: 100%;
    color: #5BC3F9;
}
.wp_wrap #map .info>li .number .left>P {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #map .info>li .number .right {
    gap: 10px;
}
.wp_wrap #map .info>li .number .right>i {
    font-size: 15px;
    padding: 8px 8px;
    background: #EFEFEF;
    border-radius: 100%;
    color: #5BC3F9;
}
.wp_wrap #map .info>li .number .right>P {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #map .subway {
    margin-bottom: 25px;
}
.wp_wrap #map .subway .c_tit {
    padding: 8px 20px;
    border-radius: 20px;
    background: #5BC3F9;
    width: 188px;
    gap: 10px;
    margin-bottom: 20px;
}
.wp_wrap #map .subway .c_tit>i {
    font-size: 20px;
    color: #fff;
}
.wp_wrap #map .subway .c_tit>p {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
}
.wp_wrap #map .subway .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding-left: 20px;
}
.wp_wrap #map .bus {}
.wp_wrap #map .bus .c_tit {
    padding: 8px 20px;
    border-radius: 20px;
    background: #5BC3F9;
    width: 188px;
    gap: 10px;
    margin-bottom: 20px;
}
.wp_wrap #map .bus .c_tit>i {
    font-size: 20px;
    color: #fff;
}
.wp_wrap #map .bus .c_tit>p {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;     
}
.wp_wrap #map .bus .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding-left: 20px;
}
.wp_wrap #map .bus .ex {
    margin-bottom: 10px;
}
.wp_wrap #map .bus .ex:last-child {
    margin-bottom: 0;
}


.root_daum_roughmap .wrap_controllers {
    display: none;
}
.root_daum_roughmap .map_border {
    display: none;
}

/* etest */
.wp_wrap #etest {
    padding: 120px 0;
}
.wp_wrap #etest .tit {
    gap: 25px;
    margin-bottom: 60px;
}
.wp_wrap #etest .tit .img_box {}
.wp_wrap #etest .tit .img_box>img {}
.wp_wrap #etest .tit .title {
    font-size: 40px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap #etest .top {
    position: relative;
    margin-bottom: 120px;
}
.wp_wrap #etest .top::before {
    content: '';
    width: 18px;
    height: 18px;
    background: rgba(91, 195, 249, 0.65);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 37%;
}
.wp_wrap #etest .top::after {
    content: '';
    width: 18px;
    height: 18px;
    background: rgba(91, 195, 249, 0.3);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 40%;
}
.wp_wrap #etest .top .left {}
.wp_wrap #etest .top .left .img_box {}
.wp_wrap #etest .top .left .img_box>img {}
.wp_wrap #etest .top .right {
    position: relative;
}
.wp_wrap #etest .top .right::after {
    content: '';
    width: 18px;
    height: 18px;
    background: rgba(91, 195, 249, 0.1);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: -22%;
}
.wp_wrap #etest .top .right .ex {
    font-size: 22px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #etest .mid {
    margin-bottom: 120px;
}
.wp_wrap #etest .mid>ul {
    width: 100%;
}
.wp_wrap #etest .mid>ul>li {
    margin-bottom: 80px;
    width: 100%;
}
.wp_wrap #etest .mid>ul>li:last-child {
    margin-bottom: 0;
}
.wp_wrap #etest .mid>ul>li .mid_box {
    padding: 43px 0;
    border-radius: 15px;
    background: #F5F5F5;
    position: relative;
    padding-top: 55px;
}
.wp_wrap #etest .mid>ul>li .mid_box .tit_box {
    text-align: start;
    position: absolute;
    top: -35px;
    left: 15px;
    padding: 15px 30px;
    border-radius: 30px;
    background: #5BC3F9;
    width: 0;
    height: 62px;
    opacity: 0;
}

/* active */
.wp_wrap #etest .mid>ul>li:nth-child(1) .mid_box .tit_box.active {
    width: 400px;
    transition: all 0.8s;
    opacity: 1;
}
.wp_wrap #etest .mid>ul>li:nth-child(2) .mid_box .tit_box.active, .wp_wrap #etest .mid>ul>li:nth-child(3) .mid_box .tit_box.active {
    width: 350px;
    transition: all 0.8s;
    opacity: 1;
}

.wp_wrap #etest .mid>ul>li .mid_box .tit_box .tit {
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap #etest .mid>ul>li .mid_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding-left: 40px;
}
.wp_wrap #etest .bot {
    width: 100%;
    position: relative;
    padding-top: 104px;
    margin-bottom: 10px;
}
.wp_wrap #etest .bot .tit_box {
    padding: 15px 30px;
    border-radius: 30px;
    background: #5BC3F9;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap #etest .bot .tit_box .tit {
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap #etest .bot .bot_img {}
.wp_wrap #etest .bot .bot_img .left {}
.wp_wrap #etest .bot .bot_img .left .img_box {
    margin-bottom: 25px;
}
.wp_wrap #etest .bot .bot_img .left .img_box>img {
    border-radius: 15px;
}
.wp_wrap #etest .bot .bot_img .left .txt_box {}
.wp_wrap #etest .bot .bot_img .left .txt_box .tit {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #etest .bot .bot_img .left .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #etest .bot .bot_img .right {}
.wp_wrap #etest .bot .bot_img .right .img_box {
    margin-bottom: 25px;
}
.wp_wrap #etest .bot .bot_img .right .img_box>img {
    border-radius: 15px;
}
.wp_wrap #etest .bot .bot_img .right .txt_box {}
.wp_wrap #etest .bot .bot_img .right .txt_box .tit {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #etest .bot .bot_img .right .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #etest .std {}
.wp_wrap #etest .std>ul {}
.wp_wrap #etest .std>ul>li {}
.wp_wrap #etest .std>ul>li:first-child {
    margin-bottom: 60px;
}
.wp_wrap #etest .std>ul>li .std_box {
}
.wp_wrap #etest .std>ul>li .std_box .tit_box {
    padding-top: 15px;
    border-radius: 30px;
    background: #5BC3F9;
    display: inline-block;
    margin-bottom: 30px;
    width: 0;
    height: 62px;
    opacity: 0;
}
.wp_wrap #etest .std>ul>li .std_box .tit_box .tit {
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    font-family: 'Pretendard-Medium';
    display: flex;
    justify-content: center;
}
.wp_wrap #etest .std>ul>li .std_box .info {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 20px;
    position: relative;
    padding-left: 53px;
}
.wp_wrap #etest .std>ul>li .std_box .info::before {
    content: '';
    width: 14px;
    height: 14px;
    background: #5BC3F9;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 27px;
    transform: translateY(-50%);
}
.wp_wrap #etest .std>ul>li:nth-child(2) .std_box .info:nth-child(2):before, .wp_wrap #etest .std>ul>li:nth-child(2) .std_box .info:nth-child(3):before  {
    top: 24%;
}
.wp_wrap #etest .std>ul>li .std_box .info:last-child {
    margin-bottom: 0;
}

/* active */
.wp_wrap #etest .std>ul>li .std_box .tit_box.active {
    width: 300px;
    transition: all 0.8s;
    opacity: 1;
}
.wp_wrap #etest .std>ul>li:nth-child(2) .std_box .tit_box.active {
    width: 300px;
}

.wp_wrap #etest .soldier {}
.wp_wrap #etest .soldier .blue_box {
    width: 100%;
    height: 1700px;
    border-radius: 25px;
    padding: 0 60px 60px;
    padding-top: 50px;
    background: rgba(91, 195, 249, 0.2);
    margin-bottom: 120px;
}
.wp_wrap #etest .soldier .blue_box .slo {
    gap: 160px;
    justify-content: center;
}
.wp_wrap #etest .soldier .blue_box .slo .left {}
.wp_wrap #etest .soldier .blue_box .slo .left>p {
    text-align: center;
    font-size: 30px;
    font-family: 'Pretendard-Light';
}
.wp_wrap #etest .soldier .blue_box .slo .left>p>span {
    font-size: 50px;
    font-family: 'Pretendard-SemiBold';
    color: #308CB5;
}
.wp_wrap #etest .soldier .blue_box .goal_list {
    margin-top: 20px;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li {
    margin-bottom: 60px;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li:last-child {
    margin-bottom: 0;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box {}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box .b_tit {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    color: #308CB5;
    margin-bottom: 20px;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box .w_box {
    width: 100%;
    padding: 33px 0;
    padding-left: 20px;
    background: #fff;
    border-radius: 10px;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box .w_box .fir {
    margin-bottom: 40px;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box .w_box .fir .s_tit {
    font-size: 23px;
    font-family: 'Pretendard-Medium';
    margin-bottom: 20px;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box .w_box .fir .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box .w_box .sec {}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box .w_box .sec .s_tit {
    font-size: 23px;
    font-family: 'Pretendard-Medium';
    margin-bottom: 20px;
}
.wp_wrap #etest .soldier .blue_box .goal_list>li .goal_box .w_box .sec .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #etest .need {}
.wp_wrap #etest .need>ul {
    width: 100%;
}
.wp_wrap #etest .need>ul>li {
    margin-bottom: 80px;
    width: 100%;
}
.wp_wrap #etest .need>ul>li:last-child {
    margin-bottom: 0;
}
.wp_wrap #etest .need>ul>li .mid_box {
    padding: 43px 0;
    border-radius: 15px;
    background: #F5F5F5;
    position: relative;
    padding-top: 55px;
}
.wp_wrap #etest .need>ul>li .mid_box .tit_box {
    text-align: start;
    position: absolute;
    top: -35px;
    left: 15px;
    padding-top: 15px;
    border-radius: 30px;
    background: #5BC3F9;
    width: 0;
    height: 62px;
    opacity: 0;
}
.wp_wrap #etest .need>ul>li .mid_box .tit_box .tit {
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    font-family: 'Pretendard-Medium';
    display: flex;
    justify-content: center;
}
.wp_wrap #etest .need>ul>li .mid_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding-left: 40px;
}
.wp_wrap #etest .need>ul>li .mid_box .txt_box {
    margin-bottom: 35px;
}
.wp_wrap #etest .need>ul>li .mid_box .txt_box:last-child {
    margin-bottom: 0;
}
.wp_wrap #etest .need>ul>li .mid_box .txt_box .blue {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #44ABE1;
    margin-bottom: 15px;
    padding-left: 40px;
}

/* active */
.wp_wrap #etest .need>ul>li .mid_box .tit_box.active {
    width: 285px;
    transition: all 0.8s;
    opacity: 1;
}
.wp_wrap #etest .need>ul>li:nth-child(2) .mid_box .tit_box.active {
    width: 215px;
    transition: all 0.8s;
    opacity: 1;
}
.wp_wrap #etest .need>ul>li:nth-child(3) .mid_box .tit_box.active {
    width: 323px;
    transition: all 0.8s;
    opacity: 1;
}


/* coding */
.wp_wrap #coding {
    padding: 120px 0;
}
.wp_wrap #coding .tit {
    gap: 25px;
    margin-bottom: 60px;
}
.wp_wrap #coding .tit .img_box {}
.wp_wrap #coding .tit .img_box>img {}
.wp_wrap #coding .tit .title {
    font-size: 40px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap #coding .coding_box {}
.wp_wrap #coding .coding_box .tit_box {
    padding-top: 15px;
    border-radius: 30px;
    background: #5BC3F9;
    display: inline-block;
    margin-bottom: 30px;
    width: 0;
    height: 62px;
    opacity: 0;
}
.wp_wrap #coding .coding_box .tit_box .tit {
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    font-family: 'Pretendard-Medium';
    display: flex;
    justify-content: center;
}
.wp_wrap #coding .coding_box .txt_box {
    padding-left: 40px;
    margin-bottom: 40px;
}
.wp_wrap #coding .coding_box:nth-child(3) .txt_box, .wp_wrap #coding .coding_box:nth-child(4) .txt_box {
    margin-bottom: 20px;
}

/* active */
.wp_wrap #coding .coding_box .tit_box.active {
    width: 310px;
    transition: all 0.8s;
    opacity: 1;
}
.wp_wrap #coding .coding_box:nth-child(3) .tit_box.active {
    width: 280px;
}
.wp_wrap #coding .coding_box:nth-child(4) .tit_box.active {
    width: 210px;
}
.wp_wrap #coding .coding_box:nth-child(5) .tit_box.active {
    width: 190px;
}

.wp_wrap #coding .coding_box .txt_box .txt {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.4;
    position: relative;
    padding-left: 15px;
}
.wp_wrap #coding .coding_box:nth-child(2) .txt_box .txt::before {
    top: 25%;
}
.wp_wrap #coding .coding_box .txt_box .txt::before {
    content: '';
    width: 14px;
    height: 14px;
    background: #5BC3F9;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}
.wp_wrap #coding .coding_box .bot {}
.wp_wrap #coding .coding_box .bot .tit {
    padding-left: 30px;
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    margin-bottom: 20px;
}
.wp_wrap #coding .coding_box .bot .img_list {
    padding-left: 30px;
    justify-content: space-between;
}
.wp_wrap #coding .coding_box:nth-child(2) .bot .img_list, .wp_wrap #coding .coding_box:nth-child(3) .bot .img_list {
    gap: 55px;
    margin-bottom: 60px;
    justify-content: flex-start;
}
.wp_wrap #coding .coding_box:nth-child(4) .bot .img_list {
    margin-bottom: 60px;
}
.wp_wrap #coding .coding_box .bot .img_list .img_box {}
.wp_wrap #coding .coding_box .bot .img_list .img_box>img {}


/* notice */
.wp_wrap #notice {
    padding: 120px 0;
}
.wp_wrap #notice .tit {
    gap: 25px;
    margin-bottom: 60px;
}
.wp_wrap #notice .tit .img_box {}
.wp_wrap #notice .tit .img_box>img {}
.wp_wrap #notice .tit .title {
    font-size: 40px;
    font-family: 'Pretendard-Medium';
}





.wp_wrap .char{
    animation: slide-down 0.8s forwards;
    animation-delay: calc(0.2s + (0.1s * var(--char-index) ));
    opacity: 0;
}

@keyframes slide-down {
    from{
        transform:translateY(-30px);
        opacity: 0;
    }
    to{
        transform:translateY(0%);
        opacity: 1;
    }        
}

/**********************************************************************************************************************/




/**********************************************************************************************************************/
/* 모달 */
/**********************************************************************************************************************/
.wp_wrap .modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}
.wp_wrap .modal01.on{
    display: block;
}
.wp_wrap .modal02.on{
    display: block;
}
.wp_wrap .modal .modal_outer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.wp_wrap .modal .modal_outer .width_inner {
    position: relative;
    max-width: 650px;
    width: 100%;
    margin: 0 15px;
    height: 85vh;
    background: #fff;
    border-radius: 20px;
    border: 4px solid #b8b8b8;
    padding: 30px 40px 40px 40px;
}
.wp_wrap .modal .modal_outer .width_inner .icon_box{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}
.wp_wrap .modal .modal_outer .width_inner .icon_box i {
    border: 2px solid #333;
    border-radius: 50%;
    padding: 5px;
    font-size: 18px;
    color: #333;
}
.wp_wrap .modal .modal_outer .width_inner .modal_inner{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.wp_wrap .modal .modal_outer .width_inner .modal_inner p{
    font-size: 30px;
    font-family: var(--font-pre500);
    
}
.wp_wrap .modal .modal_outer .width_inner .modal_inner .txt_box{
    border: 1px solid #ddd;
    width: 100%;
    height: 100%;
    padding: 10px; 
    overflow-y: auto;
}
.wp_wrap .modal .modal_outer .width_inner .modal_inner .txt_box .txt_body pre{
    white-space: -moz-pre-wrap; 
    white-space: -pre-wrap; 
    white-space: -o-pre-wrap;
    white-space: pre-wrap; 
    word-wrap: break-word;
    font-size: 15px;
}
/* .txt_body pre {    font-size: 0.8rem;} */
/**********************************************************************************************************************/


