/**
 * Created by PhpStorm.
 * Date         :
 * Developer    :
 * Description  : wp_style.css
 * ⓒ 2024. WebPlanet Co. All Rights Reserved.
 */

@charset "utf-8";

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


/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
/*ICON*/
@font-face {
    font-family: 'Material-Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://example.com/MaterialIcons-Regular.eot); /* For IE6-8 */
    src: local('Material Icons'),
        local('MaterialIcons-Regular'),
        url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
        url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
        url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
    }


/*FONT*/
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
.play-regular {
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.play-bold {
    font-family: "Play", sans-serif;
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'Pretendard-Thin';
    src: url('/font/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-ExtraLight';
    src: url('/font/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Light';
    src: url('/font/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('/font/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Medium';
    src: url('/font/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-SemiBold';
    src: url('/font/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Bold';
    src: url('/font/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-ExtraBold';
    src: url('/font/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Black';
    src: url('/font/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}
: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';
    --font-mt_icon: 'Material-Icons';
}


html{
    scroll-behavior: smooth;
}

.wp_wrap{
    font-family: var(--font-pre400);
    word-break: keep-all;
    overflow: hidden;
}

.wp_wrap .cm_inner{
    max-width: 1440px; /* 원래 1400px */
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.wp_wrap .cm_inner02{
    max-width: 1240px; /* 원래 1200px */
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}


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



/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
.wp_wrap header{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(232, 232, 232, 0.35);
    z-index: 999;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}
.wp_wrap header .h_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wp_wrap header .h_lt{
    min-width: 195px;
}
.wp_wrap header .h_rt{
    display: flex;
    align-items: center;
    gap: 60px;
}
.wp_wrap header #hd_gnb{
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.wp_wrap header #hd_gnb .m_list{
    position: relative;
    width: 195px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap header #hd_gnb .m_list a{
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 18px;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap header #hd_gnb .sub_mnu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding:  25px 0;
}
.wp_wrap header #hd_gnb .sub_mnu li{
    width: 100%;
}
.wp_wrap header #hd_gnb .sub_mnu li a{
    display: inline-block;
    width: 100%;
    font-size: 16px;
    color: #fff;
    padding: 10px 0;
}
.wp_wrap header .mopen {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    height: 130px;
    justify-content: center;
}
.wp_wrap header .mopen span{
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #fff;
}
.wp_wrap header .sub_mnu_bg {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 235px;
    z-index: -1;
    background: rgba(29, 29, 29, 0.65);
}



/* ful_mnu */
.wp_wrap .ful_mnu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(16, 16, 16, 0.97);
    z-index: 9999;
    display: none;
}
.wp_wrap .ful_mnu .cls_btn{
    position: absolute;
    top: 55px;
    right: 15%;
}
.wp_wrap .ful_mnu .cls_btn button{
    background: transparent;
}
.wp_wrap .ful_mnu .cls_btn button i{
    color: #6A6A6A;
    font-size: 30px;
}
.wp_wrap .ful_mnu .ful_mnu_out{
    height: 100%;
    display: flex;
    align-items: center;
}
.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list{
    position: relative;
    display: flex;
    align-items: center;
    height: 145px;
    margin-bottom: 30px;
}
.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list:last-child{
    margin-bottom: 0;
}

.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list::before{
    content: "";
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 210px;
    height: 210px;
    background: transparent;
    /* border: 70px solid transparent; */
    border-radius: 50%;
    background: url(../img/icon/ful_acc.png) no-repeat center center / cover;
    /* border-image: linear-gradient(135deg, rgba(0,168,148,1) 0%, rgba(35,42,112,1) 100%); */
    /* border-image-slice: 1;  */
    z-index: -1;
    /* display: none; */
    opacity: 0;
    transition: 0.3s;
}

.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list:hover::before{
    /* display: block; */
    opacity: 1;
}

.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list>p,
.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list>a{
    font-size: 43px;
    font-family: "Play", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    min-width: 470px;
}
.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list ul{
    display: flex;
    align-items: center;
    gap: 40px;
}
.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list ul>li>a{
    position: relative;
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}
.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list ul>li:hover>a{
    color: #1CCCB8;
}
.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list ul>li>a::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -15px;
    height: 3px;
    background: #1CCCB8;
    opacity: 0;
    transition: 0.3s;
}
.wp_wrap .ful_mnu .ful_mnu_out #ful_gnb .m_list ul>li:hover>a::after{
    opacity: 1;
}






/* fix_mnu */
.wp_wrap .fix_mnu{
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
}
.wp_wrap .fix_mnu .fix_itms{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap .fix_mnu .fix_itms .itm_li{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap .fix_mnu .fix_itms .itm_li:nth-child(1){
    background: rgba(28, 150, 204, 0.7);
    display: none;
}
.wp_wrap .fix_mnu .fix_itms .itm_li:nth-child(2){
    background: rgba(28, 204, 184, 0.7);
    cursor: pointer;
}
.wp_wrap .fix_mnu .fix_itms .itm_li i{
    color: #fff;
}
.wp_wrap .fix_mnu .fix_itms .itm_li:nth-child(1) i{
    font-size: 27px;
}
.wp_wrap .fix_mnu .fix_itms .itm_li:nth-child(2) i{
    font-size: 18px;
}
/**********************************************************************************************************************/






/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
.wp_wrap footer {
    padding: 45px 0;
    background: linear-gradient(0deg, rgba(8,131,140,1) 0%, rgba(0,167,148,1) 100%);
}
.wp_wrap footer .f_top {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(230, 230, 230, 0.16);
}
.wp_wrap footer .f_top .f_logo{
    margin-bottom: 15px;
}
.wp_wrap footer .f_top .f_info li,
.wp_wrap footer .f_top .f_info li a{
    font-size: 15px;
    color: #fff;
}
.wp_wrap footer .f_top .f_info.f_info01{
    margin-bottom: 5px;
}
.wp_wrap footer .f_top .f_info.f_info02{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 15px;
}
.wp_wrap footer .f_bot {
    padding-top: 25px;
}
.wp_wrap footer .f_bot .copyright,
.wp_wrap footer .f_bot .copyright a{
    font-size: 14px;
    color: #fff;
}
/**********************************************************************************************************************/






/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
.wp_wrap .m_visual {
    position: relative;
}
/* 슬릭 깜빡임 문제 해결 코드 */
.wp_wrap .m_visual .m_slider .slick-track,
.wp_wrap .m_visual .m_slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition-delay: 10ms;
}
.wp_wrap .m_visual .m_slider .m_slide{
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.wp_wrap .m_visual .m_slider .m_slide .ms_img{
    width: 100%; 
    height: 100%; 
    transform: scale(1.05);    
}
.wp_wrap .m_visual .m_slider .m_slide.action .ms_img {
    transform: scale(1); 
    transition: 4.5s;
}
.wp_wrap .m_visual .m_slider .m_slide .ms_img.ms_img01{
    background: url(../img/main/m_slide01.jpg) no-repeat center center / cover;
}
.wp_wrap .m_visual .m_slider .m_slide .ms_img.ms_img02{
    background: url(../img/main/m_slide02.jpg) no-repeat center center / cover;
}
.wp_wrap .m_visual .m_slider .m_slide .ms_img.ms_img03{
    background: url(../img/main/m_slide03.jpg) no-repeat center center / cover;
}
.wp_wrap .m_visual .m_slider .m_slide .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,159,156,0.28) 0%, rgba(0,21,68,0.97) 100%);
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt{
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);    
    max-width: 1400px;
    width: 100%;
    height: calc(100% - 130px);
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt  .inner{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt  .inner .top{
    position: relative;
    height: 67%;
    width: 100%;
    border-bottom: 1px solid rgba(232, 232, 232, 0.35);
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt  .inner .top::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #fff;
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt  .inner .top.bar_ani::after {
    animation: visual_bar 4.5s linear;
}
@keyframes visual_bar{
    0%{width:0;}
    100%{width:100%;}
} 
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt  .inner .top .txt_box{
    position: absolute;
    bottom: 85px;
    left: 0;
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt  .inner .top .txt_box .tit{
    font-size: 72px;
    font-family: "Play", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20%);
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt  .inner .top .txt_box .desc{
    font-size: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20%);
}
.wp_wrap .m_visual .m_slider .m_slide.action .shadow .lt  .inner .top .txt_box .tit{
    opacity: 1;
    transform: translateY(0);
    transition: 1.5s;
}
.wp_wrap .m_visual .m_slider .m_slide.action .shadow .lt  .inner .top .txt_box .desc{
    opacity: 1;
    transform: translateY(0);
    transition: 1.5s 1s;
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .lt  .inner .bot{
    position: relative;
    height: 33%;
    width: 100%;
}
.wp_wrap .m_visual .ms_arr_box{
    position: absolute;
    display: flex;
    align-items: center;
    bottom: calc(((100% - 130px) * 0.3) - 10px);
    right: calc((50% - 700px) + 10px);
}
.wp_wrap .m_visual .ms_arr_box .ms_arr{
    background: transparent;
}
.wp_wrap .m_visual .ms_arr_box .ms_arr p{
    font-size: 14px;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.74);
}
.wp_wrap .m_visual .ms_arr_box .ms_arr p span{
    font-size: 24px;
    color: rgba(255, 255, 255, 0.74);
}
.wp_wrap .m_visual .ms_arr_box .ms_arr:hover p,
.wp_wrap .m_visual .ms_arr_box .ms_arr:hover p span{
    color: #fff;
}
.wp_wrap .m_visual .ms_arr_box .ms_arr.ms_lt{
    position: relative;
    margin-right: 10px;
    padding-right: 10px;    
}
.wp_wrap .m_visual .ms_arr_box .ms_arr.ms_lt::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 13px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: #EEEEEE;
}
.wp_wrap .m_visual .m_slider .m_slide .shadow .rt {
    position: absolute;
    top: 130px;
    right: 0;    
    width: calc(100% - (50% + 700px));
    height: calc(100% - 130px);
    margin-left: auto;
    border-left: 1px solid rgba(232, 232, 232, 0.35);
}
.wp_wrap .m_visual .mslider_option_box{
    position: absolute;
    bottom: 100px;
    left: 70px;
    display: flex;
    gap: 25px;
    flex-direction: column;
}
.wp_wrap .m_visual .mslider_option_box .m_slideDot ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wp_wrap .m_visual .mslider_option_box .m_slideDot li{
    width: 16px;
    height: 16px;
    border: 1px solid #E8E8E8;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap .m_visual .mslider_option_box .m_slideDot li button{
    font-size: 0;
    background: transparent;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
}
.wp_wrap .m_visual .mslider_option_box .m_slideDot li.slick-active button{
    background: rgba(255, 255, 255, 0.56);
}
.wp_wrap .m_visual .mslider_option_box a {    
    font-size: 12px;
    color: #fff;
    font-family: var(--font-pre200);
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
} 








.wp_wrap .m_abu {
    position: relative;
    overflow: hidden;
    height: 100vh;
    /* background: url(../img/main/m_sec01_bg.jpg) no-repeat center center / cover; */
}
.wp_wrap .m_abu .sec_in{
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp_wrap .m_abu .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wp_wrap .m_abu .bg_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bgImg 10s infinite ease-in-out;
}

@keyframes bgImg{
    0%{
        transform:scale(1)
    }
    50%{
        transform:scale(1.03)
    }
    100%{
        transform:scale(1)
    }
}
.wp_wrap .m_abu .bg_sahdow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(96,96,96,0.47) 0%, rgba(2,98,113,1) 100%);
}
.wp_wrap .m_abu .lt{
    position: relative;
}
.wp_wrap .m_abu .lt .lt_acc{
    position: absolute;
    top: -20px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: transparent;
    border: 70px solid #00A894;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transform: translateY(30%);
    opacity: 0;
    right: -50%;
}
.wp_wrap .m_abu.now .lt .lt_acc{
    transform: translateY(0);
    opacity: 1;
    transition: 1s 2s;
}
.wp_wrap .m_abu .inner_box{
    position: relative;
    display: flex;
    align-items: center;
    gap: 110px;
}
.wp_wrap .m_abu .inner_box .sec_menu_itms{
    display: flex;
    gap: 23px;
}
.wp_wrap .m_abu .inner_box .sec_menu_itms .two{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.wp_wrap .m_abu .inner_box .sec_menu_itms .two:nth-child(2){
    margin-top: 150px;
}

.wp_wrap .m_abu .inner_box .sec_menu_itms .two01 .sec_menu_li:nth-child(1),
.wp_wrap .m_abu .inner_box .sec_menu_itms .two01 .sec_menu_li:nth-child(2),
.wp_wrap .m_abu .inner_box .sec_menu_itms .two02 .sec_menu_li:nth-child(1),
.wp_wrap .m_abu .inner_box .sec_menu_itms .two02 .sec_menu_li:nth-child(2){
    opacity: 0;
}
.wp_wrap .m_abu.now .inner_box .sec_menu_itms .two01 .sec_menu_li:nth-child(1){
    opacity: 1;
    transition: 1s;
}
.wp_wrap .m_abu.now .inner_box .sec_menu_itms .two02 .sec_menu_li:nth-child(1){
    opacity: 1;
    transition: 1s 0.5s;
}
.wp_wrap .m_abu.now .inner_box .sec_menu_itms .two01 .sec_menu_li:nth-child(2){
    opacity: 1;
    transition: 1s 1s;
}
.wp_wrap .m_abu.now .inner_box .sec_menu_itms .two02 .sec_menu_li:nth-child(2){
    opacity: 1;
    transition: 1s 1.5s;
}



.wp_wrap .m_abu .inner_box .sec_menu_itms .two .sec_menu_li a{
    position: relative;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}
.wp_wrap .m_abu .inner_box .sec_menu_itms .two .sec_menu_li img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.wp_wrap .m_abu .inner_box .sec_menu_itms .two .sec_menu_li .hov{
    opacity: 0;
}
.wp_wrap .m_abu .inner_box .sec_menu_itms .two .sec_menu_li .nohov{
    opacity: 1;
}
.wp_wrap .m_abu .inner_box .sec_menu_itms .two .sec_menu_li:hover .hov{
    opacity: 1;
}
.wp_wrap .m_abu .inner_box .sec_menu_itms .two .sec_menu_li:hover .nohov{
    opacity: 0;
}
.wp_wrap .m_abu .inner_box .sec_menu_itms .two .sec_menu_li a>p{
    position: relative;
    z-index: 9;
    font-size: 20px;
    font-family: var(--font-pre800);
    color: #fff;
}
.wp_wrap .m_abu .inner_box .txt_box {
    position: relative;
    margin-top: 150px;
    z-index: 9;
    transform: translateX(30%);
    opacity: 0;
}
.wp_wrap .m_abu.now .inner_box .txt_box {
    transform: translateX(0);
    opacity: 1;
    transition: 1s 2.5s;
}
.wp_wrap .m_abu .inner_box .txt_box .tit{
    margin-bottom: 50px;
}
.wp_wrap .m_abu .inner_box .txt_box .desc{
    font-size: 20px;
    font-family: var(--font-pre300);
    color: #fff;
}
.wp_wrap .m_abu .sec_menu_sub{
    position: absolute;
    bottom: 100px;
    right: calc(100% - (50% + 700px));
}
.wp_wrap .m_abu .sec_menu_sub .itms{
    display: flex;
    align-items: center;
    gap: 15px;
}
.wp_wrap .m_abu .sec_menu_sub .itms li a{
    border: 1px solid #fff;
    border-radius: 50%;
    width: 102px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.wp_wrap .m_abu .sec_menu_sub .itms li .icon_box{
    margin-bottom: 5px;
}
.wp_wrap .m_abu .sec_menu_sub .itms li .icon_box img.hov{
    display: none;
}
.wp_wrap .m_abu .sec_menu_sub .itms li:hover .icon_box img.hov{
    display: block;
}
.wp_wrap .m_abu .sec_menu_sub .itms li:hover .icon_box img.nonhov{
    display: none;
}
.wp_wrap .m_abu .sec_menu_sub .itms li a>p{
    font-size: 15px;
    font-family: var(--font-pre500);
    color: #fff;
}
.wp_wrap .m_abu .sec_menu_sub .itms li:hover a{
    border: 1px solid #2AEED7;
}
.wp_wrap .m_abu .sec_menu_sub .itms li:hover a>p{
    color: #2AEED7;
}
/**********************************************************************************************************************/








/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/

.wp_wrap #s_page{
    position: relative;
}
.wp_wrap #s_page::after{
    content: "";
    position: absolute;
    top: 131px;
    right: calc(50% - 700px);
    width: 1px;
    height: calc(100% - 130px);
    background: rgba(232, 232, 232, 0.35);
    

}
.wp_wrap .sub_top {
    position: relative;
}
.wp_wrap .s_sub01 .sub_top .inner,
.wp_wrap .s_sub02 .sub_top .inner{
    padding: 300px 0 110px 0;
}
.wp_wrap .s_sub03 .sub_top .inner{
    padding: 230px 0 0 0;
}
.wp_wrap .s_sub04 .sub_top .inner,
.wp_wrap .s_sub05 .sub_top .inner{
    padding: 255px 0 0 0;
}
.wp_wrap .sub_top .sub_txt{
    position: relative;
    font-size: 145px;
    font-family: "Play", sans-serif;
    font-weight: 700;
    font-style: normal;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.23);
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 80px;
    z-index: 9;
    line-height: 0.8;
    text-align: right;
}
.wp_wrap .sub_top .sub_top_cir{
    position: absolute;
    top: 180px;
    right: -270px;
    /* width: 44.3%; */
    z-index: 8;
    aspect-ratio: auto 1/1;
    /* animation: rota 20s infinite; */

}
@keyframes rota{
    0%{
        transform:  rotate(0) ;
    }
    25%{
        transform:  rotate(-180deg);
    }
    50%{
        transform:  rotate(0);
    }
    75%{
        transform:  rotate(180deg);
    }
    100%{
        transform: rotate(0) ;
    }
}
.wp_wrap .sub_top .sub_top_cir svg{
    width: 100%;
    height: 100%;
}


.wp_wrap .stit_box{
    border-bottom: 1px solid rgba(232, 232, 232, 0.35);
}
.wp_wrap .stit_box .tit{
    display: inline-block;
    font-size: 50px;
    color: #fff;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* padding-bottom: 15px; */
    line-height: 1.5;
    border-bottom: 2px solid #fff
}

.wp_wrap .stit_box .tit span{
    font-family: var(--font-pre700);
}
.wp_wrap .s_sub {
    position: relative;
    overflow: hidden;
}
.wp_wrap .s_sub .bg_shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(4,143,141,0.45) 0%, rgba(0,21,68,0.97) 100%);
}
.wp_wrap .s_sub section{
    position: relative;
    z-index: 9;
}

.wp_wrap .s_sub01 section{
    padding-bottom: 240px;
}
.wp_wrap .s_sub02 section{
    padding-bottom: 340px;
}
.wp_wrap .s_sub03 section{
    padding-bottom: 160px;
}
.wp_wrap .s_sub04 section{
    padding-bottom: 120px;
}
.wp_wrap .s_sub05 section{
    padding-bottom: 230px;
}


/* .wp_wrap .s_sub01{
    background: url(../img/sub/sub01_bg.jpg) no-repeat center center / cover;
} 
.wp_wrap .s_sub02{
    background: url(../img/sub/sub02_bg.jpg) no-repeat center center / cover;
} 
.wp_wrap .s_sub03{
    background: url(../img/sub/sub03_bg.jpg) no-repeat center center / cover;
} 
.wp_wrap .s_sub04{
    background: url(../img/sub/sub04_bg.jpg) no-repeat center center / cover;
} 
.wp_wrap .s_sub05{
    background: url(../img/sub/sub05_bg.jpg) no-repeat center center / cover;
}  */
.wp_wrap .s_sub .sub_top_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} 
.wp_wrap .s_sub .sub_top_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: sbgImg 10s infinite ease-in-out;
}


@keyframes sbgImg {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.02) rotate(0.5deg);
    }
    50% {
        transform: scale(1.03) rotate(0deg);
    }
    75% {
        transform: scale(1.02) rotate(-0.5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* sub01 - 01 */
.wp_wrap .s_sub01 #abt_sec01 .stit_box{
    margin-bottom: 80px;
}
.wp_wrap .s_sub01 #abt_sec01 .cont_box .img_box img{
    opacity: 0.3;
}
.wp_wrap .s_sub01 #abt_sec01 .cont_box .img_box{
    margin-bottom: 45px;
}
.wp_wrap .s_sub01 #abt_sec01 .cont_box .txt_box p{
    font-size: 20px;
    font-family: var(--font-pre300);
    color: #fff;
    margin-bottom: 35px;
}
.wp_wrap .s_sub01 #abt_sec01 .cont_box .txt_box p:last-child{
    margin-bottom: 0;
}


/* sub01 - 02 */

.wp_wrap .s_sub01 #abt_sec02 {
    padding-bottom: 360px;
}
.wp_wrap .s_sub01 #abt_sec02 .stit_box{
    margin-bottom: 60px;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .txt{
    font-size: 30px;
    font-family: var(--font-pre200);
    color: #fff;
    margin-bottom: 95px;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .txt span{
    font-family: var(--font-pre700);
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box{
    display: flex;
    align-items: center;

}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .lt{}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .lt .vision_graph{
    max-width: 765px;
    width: 100%;
    aspect-ratio: auto 1/ 1.09;
    margin: 0 auto;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .lt .vision_graph svg,
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .lt .vision_graph img{
    width: 100%;
    height: 100%;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .lt .vision_graph_mo{
    display: none;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .rt{
    position: relative;
    width: 50%;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .mission_box{
    position: absolute;
    top: 0;
    left: -100px;
    width: 700px;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .mission_box li{
    position: relative;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(248, 248, 248, 0.29);
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .mission_box li::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:#457392;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .mission_box li:first-child{
    border-top: 1px solid rgba(248, 248, 248, 0.29);
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .mission_box li:first-child::before{
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:#457392;

}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .mission_box li .txt01{
    font-size: 30px;
    font-family: var(--font-pre200);
    color: #FFFFFF;
    margin-bottom: 15px;
}
.wp_wrap .s_sub01 #abt_sec02 .cont_box .vision_box .mission_box li .txt02{
    font-size: 20px;
    font-family: var(--font-pre200);
    color: #FFFFFF;
}








/* sub01 - 03 */
.wp_wrap .s_sub01 #abt_sec03 .stit_box{
    margin-bottom: 140px;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box{
    display: flex;
    align-items: center;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 40px;
    padding: 0 20px;
}

.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box{
    width: 50%;
    border-radius: 30px;
    border: 10px solid #fff;
    backdrop-filter: blur(10px);
    padding: 70px 35px 100px 35px;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
    padding-left: 50px;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span{
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
/* .wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span:nth-child(1){
    margin-right: -25px;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span:nth-child(3){
    margin-left: -25px;
} */


.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir01{
    background-color: #48B8F8;
    opacity: 0.38;
    z-index: 1;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir02{
    background-color: #159EEB;
    opacity: 0.75;
    z-index: 2;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir03{
    background-color: #0088D5;
    z-index: 3;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir04{
    background-color: #45F8E3;
    opacity: 0.38;
    z-index: 1;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir05{
    background-color: #1FE5CF;
    opacity: 0.75;
    z-index: 2;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir06{
    background-color: #1CCCB8;
    z-index: 3;
}

.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir02,
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir05 {
    position: relative;
    left: -60px;
}
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir03,
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .dot_ani span.cir06 {
    position: relative;
    left: -120px;
}








.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .txt_box .tit{
    font-size: 39px;
    font-family: var(--font-pre800);
    color: #fff;
    margin-bottom: 65px;
    text-align: center;
} 
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .txt_box .desc{
    font-size: 20px;
    line-height: 1.7;
    color: #fff;
} 
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .txt_box .desc li{
	
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
} 
.wp_wrap .s_sub01 #abt_sec03 .cont_box .itm_box .txt_box .desc li:first-child {
	padding-top: 20px;
}
.sibtxt {
	padding-top: 50px!important;
	text-align: center;
	font-size: 20px;
	color: #fff;
}
/* sub01 - 04 */
.wp_wrap .s_sub01 #abt_sec04 .stit_box{
    margin-bottom: 50px;
}
.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line{
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 70px 0 70px 25px;
    border-bottom: 1px solid #528199;
}
.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line:last-child{
    border-bottom: none;
}
.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line .lt{
    min-width: 120px;
}
.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line .lt .year{
    font-size: 50px;
    color: #fff;
    font-family: "Play", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line .rt .month_line{
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line .rt .month_line:last-child{
    margin-bottom: 0;
}
.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line .rt .month_line .month{
    font-size: 50px;
    color: #fff;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line .rt .month_line .his_list{
    margin-top: 10px;
}
.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line .rt .month_line .his_list li{
    font-size: 30px;
    font-family: var(--font-pre200);
    color: #fff;
    margin-bottom: 30px;
}
.wp_wrap .s_sub01 #abt_sec04 .cont_box .year_line .rt .month_line .his_list li:last-child{
    margin-bottom: 0;
}
/* sub02 - 01 */
.wp_wrap .s_sub02 #lct_sec01 .stit_box{
    margin-bottom: 110px;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box{
    display: flex;
    align-items: center;
    gap: 85px;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .lt{
    width: 48%;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt{
    width: 52%;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .lt .map_box{
    width: 100%;
    height: 410px;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .lt .map_box iframe{
    width: 100%;
    height: 100%;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt .info_txt .name{
    font-size: 30px;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 40px;
    color: #FEFEFE;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt .info_txt .koadrs{
    font-size: 20px;
    font-family: var(--font-pre300);
    color: #FEFEFE;
    margin-bottom: 15px;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt .info_txt .enadrs{
    font-size: 20px;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 25px;
    color: #FEFEFE;
    line-height: 1.5;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt .info_txt .contact li{
    display: flex;
    align-items: center;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt .info_txt .contact li span{
    min-width: 45px;
}
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt .info_txt .contact li,
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt .info_txt .contact li span,
.wp_wrap .s_sub02 #lct_sec01 .cont_box .location_box .rt .info_txt .contact li a{
    font-size: 20px;
    color: #E8E8E8;
}


/* sub03 - 01,02 */
.wp_wrap .s_sub03 #bsn_sec01 .stit_box,
.wp_wrap .s_sub03 #bsn_sec02 .stit_box{
    margin-bottom: 160px;
}
.wp_wrap .s_sub03 #bsn_sec01 .cont_box .ptn_itms,
.wp_wrap .s_sub03 #bsn_sec02 .cont_box .ptn_itms{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 55px 120px;
    max-width: 1250px;
    width: 100%;
}
.wp_wrap .s_sub03 #bsn_sec01 .cont_box .ptn_itms .ptn_li,
.wp_wrap .s_sub03 #bsn_sec02 .cont_box .ptn_itms .ptn_li{
    width: 100%;
    overflow: hidden;
}
.wp_wrap .s_sub03 #bsn_sec01 .cont_box .ptn_itms .ptn_li .img_box,
.wp_wrap .s_sub03 #bsn_sec02 .cont_box .ptn_itms .ptn_li .img_box{
    width: 100%;
    height: 105px;
    background: #fff;
}
.wp_wrap .s_sub03 #bsn_sec01 .cont_box .ptn_itms .ptn_li .img_box img,
.wp_wrap .s_sub03 #bsn_sec02 .cont_box .ptn_itms .ptn_li .img_box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.wp_wrap .s_sub03 #bsn_sec01 .cont_box .ptn_itms .ptn_li .img_box img.hov,
.wp_wrap .s_sub03 #bsn_sec02 .cont_box .ptn_itms .ptn_li .img_box img.hov{
    display: none;
}
.wp_wrap .s_sub03 #bsn_sec01 .cont_box .ptn_itms .ptn_li:hover .img_box img.hov,
.wp_wrap .s_sub03 #bsn_sec02 .cont_box .ptn_itms .ptn_li:hover .img_box img.hov{
    display: block;
}
.wp_wrap .s_sub03 #bsn_sec01 .cont_box .ptn_itms .ptn_li:hover .img_box img.nohov,
.wp_wrap .s_sub03 #bsn_sec02 .cont_box .ptn_itms .ptn_li:hover .img_box img.nohov{
    display: none;
}





/* sub04 - 01 */
.wp_wrap .s_sub04 #cst_sec01 .stit_box{
    margin-bottom: 100px;
}
.wp_wrap .s_sub04 #cst_sec01 .cont_box{
    padding-right: 80px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box{
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px dotted #E2E2E2;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .tit{
    font-size: 20px;
    font-family: var(--font-pre300);
    color: #FFFFFF;
    margin-bottom: 15px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .txt_box{
    padding: 30px 35px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    height: 350px;
    overflow-y: auto;
    margin-bottom: 20px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .txt_box::-webkit-scrollbar{
    width: 34px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .txt_box::-webkit-scrollbar-thumb{
    border-radius: 20px;
    background-color: #9D9D9D;
    background-clip: padding-box;
    border: 10px solid transparent;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .txt_box::-webkit-scrollbar-track{
    background: transparent;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .txt_box p{
    white-space: pre-wrap;
    font-size: 20px;
    color: #FBFBFB;
    line-height: 1.7;    
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .chk_ip_box{
    padding-left: 35px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .chk_ip_box input[type="checkbox"]{
    display: none;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .chk_ip_box input[type="checkbox"] + label{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #FCFCFC;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .chk_ip_box input[type="checkbox"] + label span{
    width: 26px;
    height: 26px;
    border: 1px solid #FFFFFF;
    background: rgba(255, 255, 255, 0.39);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .chk_ip_box input[type="checkbox"] + label span i{
    display: none;
    font-size: 20px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .agr_box .chk_ip_box input[type="checkbox"]:checked + label span i{
    display: block;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box {
    margin-bottom: 55px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box{
    display: flex;
    align-items: center;
    border: 1px solid #C1C1C1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
    padding: 8px 23px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16)
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ta_box{
    align-items: flex-start;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box:last-child{
    margin-bottom: 0;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box input,
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box select,
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box textarea{
    width: 100%;
    border: 1px solid #E2E2E2;
    outline: none;
    padding: 13px;
    font-size: 16px;
    color: #E2E2E2;
    background: transparent;
}

.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box select{
    width: 43%;
    background: url(../img/icon/select_arr.png) no-repeat 96% 50% ;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box02 input{
    width: 43%;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box select option{
    color: #000;
}
.wp_wrap .s_customer .cus_inner .form_box .info_box .box .ip_itm .answ select {
    width: 50%;
    background: #fff;
    color: #797775;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box textarea{
    min-height: 165px;
    resize: none;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box .ques{
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 20px;
    color: #FFFFFF;
    min-width: 200px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ip_box .ques span{
    color: #E11212;
}

.wp_wrap .s_sub04 #cst_sec01 .form_in .info_box .ta_box .ques{
    margin-top: 15px;
}
.wp_wrap .s_sub04 #cst_sec01 .form_in .btn_box{    
    text-align: center;
} 
.wp_wrap .s_sub04 #cst_sec01 .form_in .btn_box button{
    width: 300px;
    height: 80px;
    font-size: 16px;
    color: #E2E2E2;
    background: transparent;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #FFFFFF;
} 



/* sub05 - 01 */
.wp_wrap .s_sub05 #cst_sec02 .stit_box{
    margin-bottom: 150px;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm{
    margin-bottom: 140px;    
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm:last-child{
    margin-bottom: 0;    
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm>p{
    text-align: center;
    font-size: 30px;
    margin-bottom: 70px;
    color: #FFFFFF;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm .cus_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm .cus_list>li{
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 30px 60px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
    background: rgba(0, 0, 0, 0.15);
}

.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm .cus_list>li:nth-child(even){
    background: transparent;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm .cus_list>li .tit{
    text-align: center;
    font-size: 28px;
    color: #fff;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm:nth-child(1) .cus_list>li .tit{
    margin-bottom: 25px;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm:nth-child(2) .cus_list>li .tit{
    margin-bottom:55px;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm .cus_list>li .icon_box{
    height: 110px;
    margin-bottom: 30px;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm .cus_list>li .icon_box img{
    height: 100%;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm .cus_list>li .desc{
    text-align: center;
    font-size: 20px;
    color: #fff;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm:nth-child(2) .cus_list>li .info p{
    margin-bottom: 15px;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm:nth-child(2) .cus_list>li .info p,
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm:nth-child(2) .cus_list>li .info p a{
    font-size: 20px;
    color: #fff;
}
.wp_wrap .s_sub05 #cst_sec02 .cont_box .cus_itm:nth-child(2) .cus_list>li .info p:last-child{
    margin-bottom: 0;
}
/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* history input */
/**********************************************************************************************************************/
.wp_wrap .s_history_ip .sub_top{
    position: relative;
    height: 495px;
    background: url(../img/main/m_sec01_bg.jpg) no-repeat center center /cover;
}
.wp_wrap .s_history_ip .sub_top .shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(4,143,141,0.45) 0%, rgba(0,21,68,0.97) 100%);
}
.wp_wrap .s_history_ip .sub_top .page_tit{
    position: absolute;
    font-size: 50px;
    color: #fff;
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
    top: 160px;
    left: calc(50% - 700px);
    padding: 0 20px;
    z-index: 9;
}
.wp_wrap .s_history_ip .sub_top .sub_top_cir{
    position: absolute;
    right: -210px;
    top: -110px;
    width: 590px;
    aspect-ratio: auto 1/1;
}
.wp_wrap .s_history_ip .sub_top .sub_top_cir svg{
    width: 100%;
    height: 100%;
}
.wp_wrap .s_history_ip #history_ip{
    padding: 120px 0;
}
/**********************************************************************************************************************/


















































