/* header start */
header{
    position: fixed;
    width:100%;
    height:130px;
    min-width:1300px;
    z-index: 999;
    top:0;
    left:0;
    transition: all .3s ease-in-out;
    background-color:#fff;
  /* border-bottom:1px solid #ccc; */
}
header.on{
    position: fixed;
    width:100%;
    min-width:1440px;
    top:0;
    left:0;
    background-color: #fff;
    border-bottom:1px solid #ccc;
}

header .top_menu{
    width:100%;
    height:50px;
    background-color: #334873;
}
header .top_menu .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .top_menu .top_menu_list ul{
    display: flex;
    align-items: center;
    gap:40px;
    height:50px;
}
header .top_menu .top_menu_list ul a{
    display: block;
    font-size:16px;
    color:#fff;
    position: relative;
    transition: all .3s ease-in-out;
}
header .top_menu .top_menu_list ul a::after{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right:-20px;
    width:5px;
    height:5px;
    border-radius: 50%;
    background-color: #fff;
}
header .top_menu .top_menu_list ul li:last-child a::after{display: none;}
header .top_menu .top_menu_list ul a::before{
    content: '';
    position: absolute;
    bottom:-5px;
    left:0;
    width:0;
    height:1px;
    border-bottom:1px solid #fff;
    transition: all .3s ease-in-out;
}
header .top_menu .top_menu_list ul a:hover::before{width:100%;}


header .top_menu .top_menu_tel ul{
    display: flex;
    align-items: center;
    justify-content: end;
    gap:40px;
    height:50px;
}
header .top_menu .top_menu_tel ul a{
    font-size:16px;
    color:#fff;  
}
header .top_menu .top_menu_tel ul a span{
    font-size:26px;
    color:#fff;
    margin-right:5px;
    vertical-align: middle;
}

header .logo h1{
    position: absolute;
    width:221px;
    height:33px;
    top:22px;
    left:0;
    transition:all .3s ease-in-out;
    background: url(../img/logo.png) 50% 50% no-repeat;
    background-size: 221px;
    z-index: 9999;
}
header .logo h1.on{
    background: url(../img/logo.png) 50% 50% no-repeat;
    background-size: 221px;
}
header .logo h1 a{
    display: block;
    width:221px;
    height:33px;
}

header:hover{background-color: #fff; transition: all .3s ease-in-out;}
header:hover .logo h1{background: url(../img/logo.png) 50% 50% no-repeat; background-size:221px; transition:all .3s ease-in-out;}
header:hover .gnb li a{color:#333;  transition:all .3s ease-in-out;}
header:hover .menubtn_wrap ul li{background-color: #333;}


.pos{position: relative;}
.bar{
    width:0;
    height: 3px;
    background-color: #334873;
    position: absolute;
    left: 0;
    bottom: 0;
}
nav{
    width:100%;
    width:90%;
    margin:0 auto;
    z-index: 999;
    position: relative;
}
.gnb{
    display: flex;
    align-items: center;
    justify-content: end;
    gap:90px;
    margin-right:300px;
}
.gnb > li{
    transition: all .2s ease-in-out;
    text-align: center;
}
.gnb > li > .gnb_wrap > a.on{color:#333;}

.gnb > li > .gnb_wrap > a{
    color:#333;
    font-size:20px;
    font-weight: 600;
    height:80px;
    line-height: 80px;
    position: relative;
}
.gnb > li > .gnb_wrap > a::after{content:'';
    display:block;
    width:0;
    height:2px;
    position: absolute;
    bottom:-10px;
    left:50%;
    background-color: #334873;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.menu_bg{
    position: absolute;
    left: 0;
    top: 130px;
    width: 100%;
    height: 265px;
    display: none;
    z-index: 9;
    background-color: #fff;
    border-top:1px solid #ccc;
    border-bottom:3px solid #334873;
}

.gnb > li > .gnb_wrap{position: relative;}
.sub_menu{
    font-size:0;
    display:none;
    position: absolute;
    z-index:99;
    left:50%;
    transform: translateX(-50%);
    width:100%;
    width:160px;
}
.sub_menu li{transition: all .2s ease-in-out;}
.sub_menu a{
    font-size:16px;
    font-weight: 400;
    color: #464243 !important;
    line-height: 36px;
    display: block;
    position: relative;
    transition: all .2s ease-in-out;
    overflow: hidden;
}
.sub_menu a::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 200%;
    border-radius: 50%;
    transform: translate3d(-50%,-50%,0) scale3d(0,0,0);
    transition: opacity .4s cubic-bezier(.19,1,.22,1),transform .75s cubic-bezier(.19,1,.22,1);
    /* background-color: #bf0b2c; */
    background-color: #153b7a;
    opacity: 0;
    z-index: -1;
    transition: all .2s ease-in-out;
}
.sub_menu a:hover::before{
    opacity: 1;
    transition-duration: .85s;
    transition: all .2s ease-in-out;
    transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}
.sub_menu a:hover{color: #fff !important; transition: all .2s ease-in-out;}


.sf_menu{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right:0;
}
.sf_menu ul{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: end;
    gap:40px;
}
.sf_menu .sf_green{
    display: block;
    padding:10px 55px;
    border-radius: 200px;
    border:1px solid #a9cf52;
    font-size:18px;
    color:#333;
    text-align: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.sf_menu .sf_green::before{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    transition: all .3s ease-in-out;
    background-color: #a9cf52;
    z-index: -1;
}
.sf_menu .sf_green:hover{color:#fff;}
.sf_menu .sf_green:hover::before{width:100%;}

.sf_menu .sf_search span{
    font-size:32px;
    color:#333;
}

/* search */
.top_search_wrap{
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999999;
    display: none;
}
.top_search_wrap .top_search{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    padding:70px 100px;
    background-color: #fff;
}
.top_search_wrap .top_search .close{
    display: inline-block;
    font-size:18px;
    background-color: #92b445;
    color:#fff;
    padding:5px 10px;
    position: absolute;
    top:10px;
    right:10px;
}

.top_search_wrap .top_search > form{
    display: flex!important;
    align-items: center;
    gap:5px;
}
.top_search_wrap .top_search .search{
    display: none;
}
.top_search_wrap .top_search > form input{height:35px; line-height: 35px; padding-left:10px; width:200px; border:1px solid #92b445;}
.top_search_wrap .top_search .search_btn{
    transition: all .3s ease-in-out;
    padding:0 20px;
    height:35px;
    line-height: 35px;
    font-size: 16px;
    font-weight: 400;
    background-color: #92b445;
    color:#fff;
    border:1px solid #92b445;
}
.top_search_wrap .top_search .search_btn:hover{color:#fff; background-color: #002163; border:1px solid #002163;}
/* search */



/* header menu active */
header.active1 .gnb > li:nth-child(1) .gnb_wrap > a,
header.active2 .gnb > li:nth-child(2) .gnb_wrap > a,
header.active3 .gnb > li:nth-child(3) .gnb_wrap > a,
header.active4 .gnb > li:nth-child(4) .gnb_wrap > a,
header.active5 .gnb > li:nth-child(5) .gnb_wrap > a,
header.active6 .gnb > li:nth-child(6) .gnb_wrap > a{color: #334873;}

header.active1 .gnb > li:nth-child(1) > .gnb_wrap a::after,
header.active2 .gnb > li:nth-child(2) > .gnb_wrap a::after,
header.active3 .gnb > li:nth-child(3) > .gnb_wrap a::after,
header.active4 .gnb > li:nth-child(4) > .gnb_wrap a::after,
header.active5 .gnb > li:nth-child(5) > .gnb_wrap a::after,
header.active6 .gnb > li:nth-child(6) > .gnb_wrap a::after{width:100%;}
/* header end */

/* header end */

/* visual swiper start */
.visual{
    width:100%;
    height:900px;
    margin-top:130px;
    position: relative;
}

.typo{
    width:50%;
    position: absolute;
    top:42%;
    transform: translateY(-50%);
    left:50%;
    z-index: 99;
    text-align: left;
}

/* .typo > span.up{opacity:1; transform:translate(0,0);} */

.typo span{
    display:block;
    transition:all 1s ease-in-out;
    color:#fff
}
.typo span:first-child{
    font-size:64px;
    line-height:80px;
    transition-delay:0s;
    font-weight: 800;
}
.typo span:nth-child(2){
    font-size:32px;
    transition-delay:0.5s;
    padding:20px 0 30px 0;
}
.typo span:last-child{
    transition-delay:1s;
}
.typo span:last-child a{
    display: inline-block;
    font-size:24px;
    color:#fff;
    position: relative;
    padding:10px 0;
}
.typo span:last-child a::after{
    content: '';
    position: absolute;
    bottom:0px;
    left:0;
    width:120%;
    height:2px;
    background-color: #fff;
    transition: all .3s ease-in-out;
}
.typo span:last-child a::before{
    content: '→';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right:-30px;
    font-size:24px;
    color:#fff;
    transition: all .3s ease-in-out;
}
.typo span:last-child a:hover{color: #bf0b2c;}
.typo span:last-child a:hover::before{right:-40px; color: #bf0b2c;}



.visual .swiper-slide > img{width:100%; transform:scale(1.2); transition:all 5s ease;}
.visual .swiper-slide.swiper-slide-active > img.zoom{transform:scale(1);}

/* .visual .swiper-slide.swiper-slide-active .typo > span.up{opacity:1; transform:translate(0,0);} */

.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:first-child{animation:bounceInRight 1s .2s both;}
.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:nth-child(2){animation:bounceInRight 1s .4s both;}
.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:last-child{animation:bounceInRight 1s .6s both;}

.visual .visual_cont{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:0;
    width:50%;
    z-index: 1;
}
.visual .visual_cont .visual_cont_list{padding:0 80px;}

.visual .visual_cont .visual_cont_list .visual_cont_logo{text-align: center;}
.visual .visual_cont .visual_cont_list .visual_cont_logo img{width:450px;}
.visual .visual_cont .visual_cont_list ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    margin-top:30px;
}
.visual .visual_cont .visual_cont_list ul li{width:31.333%;}
.visual .visual_cont .visual_cont_list ul li a{
    display: block;
    border:2px solid #fff;
    border-radius: 15px;
    padding:40px 20px;
    transition: all .3s ease-in-out;
}

.visual .visual_cont .visual_cont_list ul li a .icon span{
    display: block;
    font-size:48px;
    color:#fff;
    text-align: center;
    transition: all .3s ease-in-out;
}
.visual .visual_cont .visual_cont_list ul li a .tit p{
    font-size:20px;
    color:#fff;
    text-align: center;
    margin-top:20px;
    transition: all .3s ease-in-out;
}

/* 첫 번째 기본 강조용 클래스 */
.visual .visual_cont .visual_cont_list ul li a.default-active {background-color: #01b2a9;}

/* hover 중일 때 첫 번째 기본 강조는 끈다 */
/* .visual .visual_cont .visual_cont_list ul li a.default-active.hover-off {background-color: transparent;} */

/* .visual .visual_cont .visual_cont_list ul li:nth-of-type(1) a:hover{background-color: #01b2a9;}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(2) a:hover{background-color: #92b445;}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(3) a:hover{background-color: #33a139;}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(4) a:hover{background-color: #01b2a9;}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(5) a:hover{background-color: #92b445;}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(6) a:hover{background-color: #33a139;} */

.visual .visual_cont .visual_cont_list ul li:nth-of-type(1) a{background-color: rgba(1, 178, 169, 0.5)}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(2) a{background-color: rgba(146, 180, 69, 0.5)}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(3) a{background-color: rgba(146, 180, 69, 0.5)}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(4) a{background-color: rgba(146, 180, 69, 0.5)}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(5) a{background-color: rgba(146, 180, 69, 0.5)}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(6) a{background-color: rgba(146, 180, 69, 0.5)}

.visual .visual_cont .visual_cont_list ul li a:hover p{color:#b46c45;}
.visual .visual_cont .visual_cont_list ul li a:hover span{color:#b46c45;}
.visual .visual_cont .visual_cont_list ul li:hover a{background-color: #92b445;}
.visual .visual_cont .visual_cont_list ul li:nth-of-type(1):hover a{background-color: #01b2a9;}

.visual .swiper {
    width: 100%;
    height: 900px !important;
    position: relative;
    overflow: hidden;
}

.visual .swiper-slide {
    width:100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;

  /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.visual .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual .swiper-slide::before{
    position: absolute;
    content: '';
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.visual .swiper .swiper-pagination span{margin:0 3px;}

.visual .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border:1px solid #fff;
    background: none;
    border-radius: 100%;
}

.visual .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}
.visual .swiper .swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    left:50%;
    bottom:50px;
    transform: translate(-50%, 100%);
}
.visual .swiper-button-prev,
.visual .swiper-container-rtl .swiper-button-next {
    /* background-image: url("../img/swiper_prev.png"); */
    left: 10px;
    right: auto;
    width:20px;
    color:#fff
}
.visual .swiper-button-next,
.visual .swiper-container-rtl .swiper-button-prev {
    /* background-image: url("../img/swiper_next.png"); */
    right: 10px;
    left: auto;
    width:20px;
    color:#fff
}
.visual .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:44px;}
.visual .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:44px;}

.visual .swiper-button-next,
.visual .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 40px 60px;
    background-position: center;
    background-repeat: no-repeat
}

.visual .arrow{
    width: 180px;
    bottom: 235px;
    position: absolute;
    left: 50%;
}

.visual .arrow .swiper-button-next, 
.visual .arrow .swiper-button-prev {
	top: 50%;
	transform: scale(1) translateY(-50%);
	transition: all 0.4s;
	background-color: #FFFFFF00;
	backdrop-filter: blur(20px);
	height: 75px;
	width: 75px;
	line-height: 75px;
	border-radius: 50%;
	transition: all 0.4s;
}
.visual .arrow .swiper-button-next {
	right: 0px;
}
.visual .arrow .swiper-button-prev {
	left: 0px;
}
.visual .arrow .swiper-button-next:hover, 
.visual .arrow .swiper-button-prev:hover {
	background: #FFFFFF0D;
}
/* visual swiper end */

/*****************  버튼 공통 *****************/
/* button */
.button{
    position: absolute;
    bottom:300px;
    left:50%;
    transform: translateX(-50%);
    z-index: 999;
    width:190px;
}
.button .btn{
    position: relative;
    color: #fff;
    overflow: hidden;
    display: block;
    overflow: hidden;
    padding:15px 0px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #fff;
}

.button .btn::before,
.button .btn::after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}
.button .btn::before {
    left: -20px;
    transform: translate(-50%, -50%);
}
.button .btn::after {
    right: -20px;
    transform: translate(50%, -50%);
}
.button .btn:hover {
    color: #000;
}
.button .btn:hover::before {
    animation: criss-cross-left 0.8s both alternate;
}
.button .btn:hover::after {
    animation: criss-cross-right 0.8s both alternate;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
        width: 20px;
        height: 20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
        width: 20px;
        height: 20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
/* button */
/*****************  버튼 공통 *****************/

/* image_show_wrap 공통 */
section .image_show_wrap,
section .image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
section .image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
section .image_show_wrap2{animation-duration: 1.4s;}

section .show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
section .show_img06{animation-name: show_img06;}
@keyframes show_img06{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
section section .show_img07{animation-name: show_img07;}
@keyframes show_img07{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
section section .show_img08{animation-name: show_img08;}
@keyframes show_img08{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
/* image_show_wrap 공통 */

/* image 확대 공통 */
.clip-animation {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    animation: clipExpand 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) forwards;
}
@keyframes clipExpand {
    from {
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
/* image 확대 공통 */

/* ------------------------------------- section ------------------------------------- */
/* cont1 */
.cont1{
    padding:60px 0;
}
.cont1 .inner > ul{
    display: flex;
    flex-wrap: nowrap;
    gap:40px;
    justify-content: space-between;
}
.cont1 .inner > ul > li:nth-of-type(1){width:50%;}
.cont1 .inner > ul > li:nth-of-type(2){width:25%;}
.cont1 .inner > ul > li:nth-of-type(3){width:25%;}
.cont1 .inner > ul > li { min-width: 0; }

.cont1 .inner > ul li .cont1_tab{position: relative;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu{margin:10px 0;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul{
    display: flex;
    justify-content: start;
    align-items: center;
    gap:10px;
    margin-right:120px;
}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li{width:33.333%;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a{
    display: block;
    font-size:18px;
    color:#fff;
    text-align: center;
    height:60px;
    line-height:60px;
    transition: all .3s ease-in-out;
    border-radius: 10px 10px 0 0;
    position: relative;
}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a::before{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:20px;
    background: url(../img/leaf3.png) no-repeat;
    background-size: cover;
    width:13px;
    height:15px;
    opacity: 0;
}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li:first-child a{background-color: #53b04e;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li:nth-of-type(2) a{background-color: #02b9ad;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li:nth-of-type(3) a{background-color: #1580c3;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li:nth-of-type(4) a{background-color: #b7c61b;}

.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li:first-child a.on{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li:first-child a.on::before{opacity: 1;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a.active0{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a.active0::before{opacity: 1;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a.active1{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a.active1::before{opacity: 1;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a.active2{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a.active2::before{opacity: 1;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a.active3{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont1 .inner > ul li .cont1_tab .cont1_tab_tabmenu ul li a.active3::before{opacity: 1;}


.cont1 .cont1_tab_container{
    border: 3px solid #dddddd;
    padding:20px;
    margin-top:-13px;
    border-radius: 0px 20px 20px 20px;
}
.cont1 .cont1_tab_container .more{
    position: absolute;
    top:0;
    right:0;
    width:50px;
    height:50px;
    line-height:50px;
    background-color: #dddddd;
    border-radius: 10px;
    text-align: center;
    transition: all .3s ease-in-out;
}
.cont1 .cont1_tab_container .more img{
    width:30px;
    opacity: .5;
    position: absolute;
    top:10px;
    right:10px;
    transition: all .3s ease-in-out;
}
.cont1 .cont1_tab_container .more:hover{background-color: #d2d1d1;}
.cont1 .cont1_tab_container .more:hover img{transform: rotate(-180deg);}

.cont1 .cont1_tab_container .cont1_tab_tabcontents .board > a{
    display: block;
    padding:5px 0;
}
.cont1 .cont1_tab_container .cont1_tab_tabcontents .board .tit{
    display: flex;
    flex-wrap: nowrap;
    align-items: end;
    justify-content: space-between;
}
.cont1 .cont1_tab_container .cont1_tab_tabcontents .board .tit h3{
    display: inline-block;
    font-size:18px;
    color:#333;
    text-align: left;
    line-height:32px;
    font-weight: 400;
    padding-bottom:10px;
    position: relative;
    transition: all .3s ease-in-out;
}
.cont1 .cont1_tab_container .cont1_tab_tabcontents .board .tit h3::before{
    content: '';
    position: absolute;
    left:0;
    bottom:0;
    width:0;
    height:1px;
    background-color: #334873;
    transition: all .3s ease-in-out;
}
.cont1 .cont1_tab_container .cont1_tab_tabcontents .board .tit h3:hover{color:#334873;}
.cont1 .cont1_tab_container .cont1_tab_tabcontents .board .tit h3:hover::before{width:100%;}

.cont1 .cont1_tab_container .cont1_tab_tabcontents .board .tit span{
    display: block;
    font-size:16px;
    color:#333;
    opacity: .8;
    text-align: right;
}
.cont1 .cont1_tab_container .cont1_tab_tabcontents .board > a:nth-of-type(2){margin-top:20px;}
.cont1 .cont1_tab_container .cont1_tab_tabcontents .board > a:first-child{
    padding:20px 0;
    border-bottom:1px dotted #ccc;
}
.cont1 .cont1_tab_container .cont1_tab_tabcontents .board a:first-child .tit h3{
    font-size:28px;
    color:#000;
}


.cont1 .cont1_tab .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cont1 .cont1_tab .swiper-slide {
    width:100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont1 .cont1_tab .swiper-slide a{
    display: block;
    width:100%;
    height:100%;
}
.cont1 .cont1_tab .swiper-slide a .img{
    position: relative;
    width:100%;
    height:270px;
}

.cont1 .cont1_tab .swiper-slide img{
    display: block;
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top:0;
    left:0;
}
.cont1 .cont1_tab .swiper-slide .tit{
    padding-top:10px;
}
.cont1 .cont1_tab .swiper-slide .tit p{
    width:100%;
    font-size:18px;
    color:#000;
    text-align: center;
}


.cont1 .cont1_tab .swiper-button-prev,
.cont1 .cont1_tab .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
    width:20px;
    color:#333
}
.cont1 .cont1_tab .swiper-button-next,
.cont1 .cont1_tab .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
    width:20px;
    color:#333
}
.cont1 .cont1_tab .swiper-button-prev,
.cont1 .cont1_tab .swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
    width:20px;
    color:#fff
}
.cont1 .cont1_tab .swiper-button-next,
.cont1 .cont1_tab .swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
    width:20px;
    color:#fff
}
.cont1 .cont1_tab .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:44px;}
.cont1 .cont1_tab .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:44px;}

.cont1 .cont1_tab .swiper-button-next,
.cont1 .cont1_tab .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 40px 60px;
    background-position: center;
    background-repeat: no-repeat
}






.cont1 .cont1_banner{margin-top:30px;}
.cont1 .cont1_banner ul{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    border: 3px solid #dddddd;
    border-radius: 20px;
    padding:30px 20px;
}
.cont1 .cont1_banner ul li{width:33.333%;}
.cont1 .cont1_banner ul li a{
    display: block;
    border-right:1px solid #dddddd;
    text-align: center;
}
.cont1 .cont1_banner ul li:last-child a{border:none;}
.cont1 .cont1_banner ul li a .icon{position: relative;}
.cont1 .cont1_banner ul li a .icon img{width:50px;}
.cont1 .cont1_banner ul li a .tit{margin-top:10px;}
.cont1 .cont1_banner ul li a .tit p{
    font-size:18px;
    color:#333;
    text-align: center;
}
.cont1 .cont1_banner ul li:last-child a .tit p{
    color: #1580c3;
}
.cont1 .cont1_banner ul li:last-child a .icon .icon_h{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    animation: shiny .5s alternate ease-in-out infinite;
} 
@keyframes shiny {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


.cont1 .fc_news h3{
    font-size:32px;
    color:#000;
    text-align: left;
    padding-left:30px;
    margin-top: 10px;
    position: relative;
}
.cont1 .fc_news h3::before{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:0px;
    background: url(../img/leaf3.png) no-repeat;
    background-size: cover;
    width:15px;
    height:17px;
}
.cont1 .fc_news a{
    display: block;
    margin-top:15px;
    background-color: #000;
    transition: all .3s ease-in-out;
    border-radius: 20PX;
    overflow: hidden;
    transition: all .3 ease-in-out;
    width:100%;
    height:535px;
    position: relative;
}
.cont1 .fc_news a::before{
    content: '';
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:95%;
    height:95%;
    border:1px solid #fff;
    border-radius: 20px;
    z-index: 99;
}
.cont1 .fc_news a img{
    transition: all .3s ease-in-out;
    position: absolute;
    top:0;
    left:0;
    object-fit: cover;
    width:100%;
    height:100%;
}
.cont1 .fc_news a:hover img{transform: scale(1.1); opacity: .8;}

.cont1 .fc_news .tit{
    position: absolute;
    top:30px;
    left:30px;
    z-index: 99;
}
.cont1 .fc_news .tit span{
    display: block;
    font-size:32px;
    color:#fff;
    font-family: 'yg-jalnan';
    line-height:40px;
}
.cont1 .fc_news .txt{
    position: absolute;
    top:380px;
    left:-65px;
    z-index: 99;
}
.cont1 .fc_news .txt span{
    display: block;
    font-size:12px;
    font-weight: 600;
    color:#fff;
    transform: rotate(90deg);
}






.cont1 .cont1_pop h3{
    font-size:32px;
    color:#000;
    text-align: left;
    padding-left:30px;
    margin-top: 10px;
    position: relative;
}
.cont1 .cont1_pop h3::before{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:0px;
    background: url(../img/leaf3.png) no-repeat;
    background-size: cover;
    width:15px;
    height:17px;
}

.cont1 .cont1_pop .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top:60px;
    margin-top:-50px;
}

.cont1 .cont1_pop .swiper-slide {
    width:100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont1 .cont1_pop .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    height:540px;
    border-radius: 20px;
}

.cont1 .cont1_pop .swiper-button-prev,
.cont1 .cont1_pop .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
    width:20px;
    color:#333
}
.cont1 .cont1_pop .swiper-button-next,
.cont1 .cont1_pop .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
    width:20px;
    color:#333
}
.cont1 .cont1_pop .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:24px;}
.cont1 .cont1_pop .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:24px;}

.cont1 .cont1_pop .swiper-button-next,
.cont1 .cont1_pop .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 40px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 30px 40px;
    background-position: center;
    background-repeat: no-repeat
}

.cont1 .cont1_pop .arrow{
    width: 120px;
    position: absolute;
    top: 50px;
    right:0;
}

.cont1 .cont1_pop .arrow .swiper-button-next, 
.cont1 .cont1_pop .arrow .swiper-button-prev {
	top: 50%;
	transform: scale(1) translateY(-50%);
	transition: all 0.4s;
	background-color: #e1e6e8;
	/* backdrop-filter: blur(20px); */
	height: 50px;
	width: 50px;
	line-height: 50px;
	border-radius: 50%;
	transition: all 0.4s;
}
.cont1 .cont1_pop .arrow .swiper-button-next {
	right: 0px;
}
.cont1 .cont1_pop .arrow .swiper-button-prev {
	left: 0px;
}
.cont1 .cont1_pop .arrow .swiper-button-next:hover, 
.cont1 .cont1_pop .arrow .swiper-button-prev:hover {
	background: #d2d1d1;
}
/* cont1 */



/* cont2 */
.cont2{padding:60px 0;}
.cont2 .inner > ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap:40px;
}
.cont2 .inner > ul > li:nth-of-type(1){width:65%;}
.cont2 .inner > ul > li:nth-of-type(2){width:35%;}



.cont2 .inner > ul li .cont2_tab{position: relative;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu{margin:10px 0;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul{
    display: flex;
    justify-content: start;
    align-items: center;
    gap:10px;
    margin-right:140px;
}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li{width:25%;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a{
    display: block;
    font-size:18px;
    color:#fff;
    text-align: center;
    height:60px;
    line-height:60px;
    transition: all .3s ease-in-out;
    border-radius: 10px 10px 0 0;
    position: relative;
}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a::before{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:20px;
    background: url(../img/leaf3.png) no-repeat;
    background-size: cover;
    width:13px;
    height:15px;
    opacity: 0;
}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li:first-child a{background-color: #53b04e;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li:nth-of-type(2) a{background-color: #02b9ad;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li:nth-of-type(3) a{background-color: #1580c3;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li:nth-of-type(4) a{background-color: #b7c61b;}

.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li:first-child a.on{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li:first-child a.on::before{opacity: 1;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a.active0{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a.active0::before{opacity: 1;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a.active1{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a.active1::before{opacity: 1;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a.active2{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a.active2::before{opacity: 1;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a.active3{color:#000; background-color: #fff; border: 3px solid #dddddd; border-bottom:none;}
.cont2 .inner > ul li .cont2_tab .cont2_tab_tabmenu ul li a.active3::before{opacity: 1;}


.cont2 .cont2_tab_container{
    border: 3px solid #dddddd;
    padding:20px;
    margin-top:-12.5px;
    border-radius: 0px 20px 20px 20px;
}
.cont2 .cont2_tab_container .more{
    position: absolute;
    top:0;
    right:0;
    width:50px;
    height:50px;
    line-height:50px;
    background-color: #dddddd;
    border-radius: 10px;
    text-align: center;
    transition: all .3s ease-in-out;
}
.cont2 .cont2_tab_container .more img{
    width:30px;
    opacity: .5;
    position: absolute;
    top:10px;
    right:10px;
    transition: all .3s ease-in-out;
}
.cont2 .cont2_tab_container .more:hover{background-color: #d2d1d1;}
.cont2 .cont2_tab_container .more:hover img{transform: rotate(-180deg);}



.cont2 .cont2_tab .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cont2 .cont2_tab .swiper-slide {
    width:100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont2 .cont2_tab .swiper-slide a{
    display: block;
    width:100%;
    height:100%;
}
.cont2 .cont2_tab .swiper-slide a .img{
    position: relative;
    width:100%;
    height:305px;
}

.cont2 .cont2_tab .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top:0;
    left:0;
}
.cont2 .cont2_tab .swiper-slide .tit{
    padding-top:10px;
}
.cont2 .cont2_tab .swiper-slide .tit p{
    font-size:18px;
    color:#000;
    text-align: center;
}


.cont2 .cont2_tab .swiper-button-prev,
.cont2 .cont2_tab .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
    width:20px;
    color:#333
}
.cont2 .cont2_tab .swiper-button-next,
.cont2 .cont2_tab .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
    width:20px;
    color:#333
}
.cont2 .cont2_tab .swiper-button-prev,
.cont2 .cont2_tab .swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
    width:20px;
    color:#fff
}
.cont2 .cont2_tab .swiper-button-next,
.cont2 .cont2_tab .swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
    width:20px;
    color:#fff
}
.cont2 .cont2_tab .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:44px;}
.cont2 .cont2_tab .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:44px;}

.cont2 .cont2_tab .swiper-button-next,
.cont2 .cont2_tab .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 40px 60px;
    background-position: center;
    background-repeat: no-repeat
}


.cont2 .q_menu h3{
    font-size:32px;
    color:#000;
    text-align: left;
    padding-left:30px;
    position: relative;
    margin-top:10px;
}
.cont2 .q_menu h3::before{
    content: '';
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:0px;
    background: url(../img/leaf3.png) no-repeat;
    background-size: cover;
    width:15px;
    height:17px;
}

.cont2 .q_menu .q_menu_box{
    border: 3px solid #dddddd;
    border-radius: 20px;
    margin-top:10px;
    padding:20px;
    display: flex;
    flex-wrap: wrap;

}
.cont2 .q_menu .q_menu_box a{
    display: block;
    width:33.333%;
    padding:39px 0;
    text-align: center;
}
.cont2 .q_menu .q_menu_box a:nth-of-type(1){border-bottom:1px solid #ccc; border-right:1px solid #ccc;}
.cont2 .q_menu .q_menu_box a:nth-of-type(2){border-bottom:1px solid #ccc; border-right:1px solid #ccc;}
.cont2 .q_menu .q_menu_box a:nth-of-type(3){border-bottom:1px solid #ccc;}
.cont2 .q_menu .q_menu_box a:nth-of-type(4){border-right:1px solid #ccc;}
.cont2 .q_menu .q_menu_box a:nth-of-type(5){border-right:1px solid #ccc;}

.cont2 .q_menu .q_menu_box a .icon img{width:60px;}

.cont2 .q_menu .q_menu_box a .tit{margin-top:10px;}
.cont2 .q_menu .q_menu_box a .tit p{
    font-size:16px;
    color:#000;
    text-align: center;
}
/* cont2 */



/* cont3 */
.cont3{padding:30px 0}
.cont3 .banner_slide .swiper-wrapper {transition-timing-function: linear;}
.cont3 .banner_slide .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.cont3 .banner_slide .swiper-slide {
    width:100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont3 .banner_slide .swiper-slide img{
    display: block;
    width: 100%;
    height: 40px;
    object-fit: cover;
    /* border:1px solid #ccc; */
}

.swiper,
.swiper-wrapper,
.swiper-slide{
  height:auto !important;   /* 고정 높이/비율 CSS가 있었으면 덮어씀 */
}
/* cont3 */





.footer_top{
    padding:15px 0;
    background-color: #1d2b40;
}
.footer_top a{
    display: inline-block;
    font-size:18px;
    color:#fff;
    margin-right:30px;
    transition: all .3s ease-in-out;
}
.footer_top a:hover{color:#bf0b2c;}


.footer_bottom{
    padding:30px 0;
    background-color: #2f3e55;
}
.footer .footer_bottom{
    display: flex;
    gap:40px;
}
.footer .footer_bottom .logo_f{width:250px;}
.footer .footer_bottom .tit p{
    font-size:14px;
    color:#ccc;
    text-align: left;
    line-height:28px;
}
.footer .footer_bottom .tit span{
    display: block;
    font-size:13px;
    color:#fff;
    text-align: left;
    margin-top:10px;
}
/* ------------------------------------- section ------------------------------------- */


/* top_btn */
.topbtn{
    position: fixed;
    bottom:60px;
    right:60px;
    z-index:9999999999999;
    width:50px;
    height:50px;
    border-radius: 40px;
    background-color:#01b2a9;
    transition: all 0.5s ease;
    opacity: 0;
}
.topbtn.on{opacity: 1;}

.topbtn img{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:30px;
}

.topbtn:hover{
    transition: all 0.5s ease;
    background-color: #151515;
}
/* top_btn */
