@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* 색 설정 */
:root {
    --main-color: #00A8A8;
    --black-color : #222;
    --white-color : #fff;
    --text-green : #407070;
    --font-48px : 48px;
    --font-32px : 32px;
    --font-28px : 28px;
    --font-24px : 24px;
    --font-20px : 20px;
    --font-18px : 18px;
    --font-16px : 16px;
    --font-14px : 14px;
}
/* size */
@media screen and (max-width: 1250px) {
    :root {
        --font-48px : 42px;
        --font-32px : 28px;
        --font-28px : 24px;
        --font-24px : 22px;
        --font-20px : 18px;
    }
}
@media screen and (max-width: 960px) { 
    :root {
        --font-48px : 28px;
        --font-32px : 24px;
        --font-28px : 20px;
        --font-24px : 18px;
        --font-20px : 18px;
        --font-18px : 16px;
        --font-16px : 15px;
    }
} /* tablet */
@media screen and (max-width: 650px) {
    :root {
        --font-48px : 24px;
        --font-32px : 20px;
        --font-28px : 18px;
        --font-24px : 16px;
        --font-20px : 15px;
        --font-16px : 14px;
        --font-14px : 12px;
    }
 } /* mobile */

/* 스크롤 커스텀 */
html::-webkit-scrollbar {width: 8px;}
html::-webkit-scrollbar-thumb {background-color: var(--main-color); border-radius: 10px;}

/* 드래그 블록 커스텀 */
::selection { background-color:var(--main-color); color:#fff; }


/* default */
*{
    font-size: 16px;
    font-weight:400;
    font-family: 'Pretendard', sans-serif;
    color : #333;
    box-sizing: border-box;
    letter-spacing: -0.04em;
    line-height: 1.5;
}
html{scroll-behavior: smooth;}
body{overflow-x: hidden; font-family: 'Pretendard', sans-serif; font-weight:400; font-size: 16px; }
section{ display:block; }
a{ color:inherit; }
a:hover{ text-decoration: none; color: inherit;  }

.inner{ width:1200px; margin:0 auto;  }

.paging_box{ margin-top: 20px; padding:10px 0; display:flex; align-items: center; justify-content: center; }
.paging_box .pg_page{ background-color:#FFF; border:1px solid #e6e6e6; }
.paging_box .pg_current{ background-color: #0F1C2E; color:#fff; border:1px solid #0F1C2E; }

select{
    -webkit-appearance: none; -moz-appearance: none;  appearance: none;
    background: url('../img/common/select-icon.png') no-repeat 98% 50% #fff; 
}
select::-ms-expand{ display:none; }
p{ word-break: keep-all; }

@media screen and (max-width: 1250px) { 
    .inner{ width:100%; padding:0 10px; }
} /* tablet */
@media screen and (max-width: 650px) { 
    .paging_box{ font-size: 13px; }
} /* mobile */
/*common*/
.floating-menu{width: 80px; position: fixed; z-index: 99999; bottom: 30px; right: 30px; display: inline-block;}
.floating-menu .floating-item{margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 80px; border-radius: 50%; background-color: #00A8A8; filter: drop-shadow(0 2px 2px rgba(0, 168, 168, 0.25));}
.floating-menu .floating-item img{width: 40px; height: 40px; object-fit: contain;}
.floating-menu .floating-item p{text-align: center; font-size: var(--font-14px); color: var(--white-color);}
.floating-item.white{background-color: var(--white-color); filter: drop-shadow(0 2px 2px rgba(0, 168, 168, 0.25));}
.floating-item.white p{color: var(--main-color);}
@media screen and (max-width: 1250px) {
    .floating-menu{bottom: 24px; right: 24px;}
}
@media screen and (max-width: 960px) {
    .floating-menu{bottom: 20px; right: 20px; gap: 14px; width: 70px;}
    .floating-menu .floating-item{height: 70px;}
    .floating-menu .floating-item img{width: 35px; height: 35px;}
}
@media screen and (max-width: 650px) {
    .floating-menu{width: 60px;left: 10px;right: 10px; justify-content: center; gap: 10px; margin-left: auto;}
    .floating-menu .floating-item{height: 60px; margin-bottom: 10px;}
    .floating-menu .floating-item img{width: 30px; height: 30px;}
    .floating-menu .floating-item p{font-size: 11px; line-height: 1.2;}
}
/*header*/
header{position: fixed; top: 0; left: 0; width: 100%; height: 100px; z-index: 9999; display: flex; justify-content: space-between; align-items: center; padding: 30px; transition: 0.3s;}
header .logo-box{width: 200px; height: auto;}
header .logo-box img{width: 100%; height: 100%; object-fit: contain;}
header .logo-box .logo-g{display: none;}
header .gnb{display: flex; align-items: center; gap: 40px;}
header .gnb li a{color: var(--white-color); font-size: var(--font-18px); font-weight: 500;}
header.white-header{background-color: var(--white-color);}
header.white-header .logo-box .logo-w{display: none;}
header.white-header .logo-box .logo-g{display: block;}
header.white-header .gnb li a{color: var(--black-color);}
header.white-header .menu-btn span{background-color: var(--black-color);}
header .menu-btn{width: 25px; height: 20px; position: relative; display: none;}
header .menu-btn span{width: 100%; height: 2px; background-color: var(--white-color); border-radius: 2px; position: absolute;}
header .menu-btn span:nth-child(1){top: 0; left: 0;}
header .menu-btn span:nth-child(2){top: 50%; left: 0; transform: translateY(-50%);}
header .menu-btn span:nth-child(3){bottom: 0; left: 0;}
header .menu-btn span{transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;}
header .menu-btn.on span:nth-child(1){top: 50%; transform: translateY(-50%) rotate(45deg);}
header .menu-btn.on span:nth-child(2){opacity: 0;}
header .menu-btn.on span:nth-child(3){top: 50%; bottom: auto; transform: translateY(-50%) rotate(-45deg);}
@media screen and (max-width: 1250px) {
    header{padding: 24px;}
    header .logo-box{width: 180px;}
    header .gnb{gap: 28px;}
}
@media screen and (max-width: 960px) {
    header{height: 80px; padding: 20px;}
    header .logo-box{width: 160px;}
    header .gnb{gap: 16px;}
}
@media screen and (max-width: 650px) {
    header{padding: 16px 20px;}
    header .logo-box{width: 140px;}
    header .menu-btn{display: block; cursor: pointer; flex-shrink: 0; z-index: 10001;}
    header .gnb{ opacity: 0; visibility: hidden; pointer-events: none; transition: 0.3s ease; position: fixed; top: 70px; right: -100%; width: 100%; flex-direction: column; align-items: stretch; gap: 0; background-color: var(--white-color); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); height: 100vh; overflow-y: auto; }
    header .gnb.on{opacity: 1; visibility: visible; pointer-events: auto; right: 0;}
    header .gnb li{border-bottom: 1px solid #eee;}
    header .gnb li:last-child{border-bottom: 0;}
    header .gnb li a{display: block; padding: 14px 20px; color: var(--black-color);}
    html.gnb-open,
    body.gnb-open{overflow: hidden; height: 100%;}
    body.gnb-open #smooth-wrapper{overflow: hidden !important; touch-action: none;}
}
/*footer*/
footer{padding: 50px 0; background-color: #333;}
footer .top{display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #858585;}
footer .top .logo-box{display: flex; align-items: center; gap: 30px;}
footer .top .logo-box img{width: 200px; object-fit: contain;}
footer .top .slogan{font-size: var(--font-18px); font-weight: 500; color: #fff;}
footer .top .sns-box{display: flex; align-items: center; gap: 20px; align-items: center;}
footer .top .sns-box a{display: block; width: 30px; height: 30px;}
footer .top .sns-box a img{width: 100%; height: 100%; object-fit: contain;}
footer .bottom .info-box{display: flex; align-items: center; gap: 30px; margin-bottom: 10px;}
footer .bottom .info-box span{font-size: var(--font-16px); font-weight: 500; color: #fff;}
footer .bottom .info-box span:first-child{color: #858585;}
footer .bottom .info-box-wrap{display: flex; align-items: center; gap: 50px;}
footer .bottom .copyright{font-size: var(--font-16px); color: #858585;}
@media screen and (max-width: 1250px) {
    footer{padding: 40px 0;}
    footer .top .logo-box{gap: 24px;}
    footer .top .logo-box img{width: 170px;}
    footer .bottom .info-box{gap: 20px;}
    footer .bottom .info-box-wrap{gap: 32px; flex-wrap: wrap;}
}
@media screen and (max-width: 960px) {
    footer{padding: 30px 0;}
    footer .top .logo-box img{width: 160px;}
    footer .top .sns-box a{width: 24px; height: 24px;}
}
@media screen and (max-width: 650px) {
    footer .top .logo-box{flex-direction: column; gap: 12px;  align-items:flex-start;}
    footer .top .logo-box img{width: 140px;}
    footer .top .sns-box{gap: 16px;}
    footer .bottom{display: flex; flex-direction: column;}
    footer .bottom .info-box{ width: 100%;}
    footer .bottom .info-box span:last-child{word-break: keep-all;}
    footer .bottom .info-box-wrap{width: 100%; gap: 10px;}
    footer .bottom .info-box-wrap .info-box{align-items: center;}
    footer .bottom .copyright{margin-top: 8px;}
}
/* ##############################index.html############################ */
.sec1{ position: fixed; left: 0; top: 0; width: 100%; height: 100%; z-index: 99999; display: flex; justify-content: center; align-items: center; background:#F4F9F9 url('../img/main/main1-bg1.png') no-repeat center center / cover; }
.sec1 .logo{text-align: center; }
.sec1 .logo img{width: 280px; height: 100%; object-fit: contain;}
.sec1 .inner h1{margin: 30px 0 50px 0; font-size: var(--font-48px); font-weight: 300; text-align: center;}
.sec1 .inner h1 b{font-weight: 700; font-size: var(--font-48px);}
.sec1 .inner .link-wrap{display: flex; gap: 24px; justify-content: center; align-items: center;}
.sec1 .inner .link-wrap .link-item{overflow: hidden; position: relative; width: 380px; height: 300px; padding: 20px; border-radius: 50px 10px 10px 10px; background-color: #00A8A8;}
.sec1 .inner .link-wrap .text-box h2{font-size: var(--font-32px); font-weight: 600; color: var(--white-color);}
.sec1 .inner .link-wrap .text-box p{font-size: var(--font-24px); color: var(--white-color); margin: 10px 0 20px 0;}
.sec1 .inner .link-wrap .text-box .btn{display: flex; justify-content: center; align-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 255, 255, 0.80); box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);}
.sec1 .inner .link-wrap .text-box .btn i{color: var(--main-color); font-size: var(--font-20px);}
.sec1 .inner .link-wrap .img-box{position: absolute; bottom: -20px; right: -20px;}
.sec1 .inner .link-wrap .img-box img{max-width: 100%; height: auto; object-fit: contain;}
.sec1 .inner .link-wrap .link-item:last-child{background-color: var(--white-color); border-radius: 10px 10px 50px 10px;}
.sec1 .inner .link-wrap .link-item:last-child h2,
.sec1 .inner .link-wrap .link-item:last-child p{color: var(--black-color);}
.sec1 .inner .link-wrap .link-item:last-child .btn{background: #F7F7F7; box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);}
.sec1 .inner .link-wrap .link-item:last-child .btn i{color: var(--black-color);}    
.sec1 .top-logo{position: absolute; top: 30px; right: 30px; width: 85px; height: auto;}
.sec1 .top-logo img{width: 100%; height: 100%; object-fit: contain;}
@media screen and (max-width: 1250px) {
    .sec1 .logo img{width: 220px;}
    .sec1 .inner h1{margin: 20px 0 40px 0;}
}
@media screen and (max-width: 960px) {
    .sec1 .logo img{width: 180px;}
    .sec1 .inner h1{margin: 20px 0 30px 0;}
    .sec1 .inner .link-wrap .link-item{height: 260px;}
    .sec1 .inner .link-wrap .img-box{bottom: -10px; right: -10px;}
    .sec1 .inner .link-wrap .img-box img{max-width: 150px;}
    .sec1 .top-logo{top: 20px; right: 20px; width: 70px;}
}
@media screen and (max-width: 650px) {
    .sec1{background: #F4F9F9;}
    .sec1 .inner h1 b{display: block;}
    .sec1 .logo img{width: 150px;}
    .sec1 .inner .link-wrap{gap: 12px;}
    .sec1 .inner .link-wrap .link-item{max-width: 100%; height: 220px; padding: 16px; border-radius: 30px 8px 8px 8px;}
    .sec1 .inner .link-wrap .link-item:last-child{border-radius: 8px 8px 30px 8px;}
    .sec1 .inner .link-wrap .text-box h2{font-size: 19px;}
    .sec1 .inner .link-wrap .text-box p{margin: 5px 0 10px 0;}
    .sec1 .inner .link-wrap .img-box img{max-width: 100px;}
    .sec1 .top-logo{top: 10px; right: 10px; width: 50px;}
}

/* ##############################main2.html############################ */
.main2{background-color: #F4F9F9;}
/*main2-sec1*/
.main2-sec1{height: 100vh; display: flex; justify-content: center; align-items: center; background:#F4F9F9 url('../img/main2/main2-sec1-bg.jpg') no-repeat center center / cover; position: relative; }
.main2-sec1 .inner h1{font-size: 52px; font-weight: 300; color: var(--white-color); text-align: center;}
.main2-sec1 .inner h1 b{font-weight: 700; font-size: 52px; color: var(--white-color);}
.main2-sec1 .scroll-box{position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.main2-sec1 .scroll-box div{font-size: var(--font-14px); color: var(--white-color);}
.main2-sec1 .scroll-box i{font-size: 40px; color: var(--white-color);}
@media screen and (max-width: 1250px) {
    .main2-sec1 .inner h1{font-size: 42px;}
    .main2-sec1 .inner h1 b{font-size: 42px;}
}
@media screen and (max-width: 960px) {
    .main2-sec1 .inner h1{font-size: 32px;}
    .main2-sec1 .inner h1 b{font-size: 32px;}
    .main2-sec1 .scroll-box i{font-size: 30px;}
}
@media screen and (max-width: 650px) {
    .main2-sec1 .inner h1 b{display: block;}
    .main2-sec1 .scroll-box i{font-size: 20px;}
}
/*main2-sec2*/
.main2-sec2 {height: 100vh; position: relative; }
.main2-sec2 .title{position: absolute; top: 15vh; left: 50%; transform: translateX(-50%); text-align: center; z-index: 2; width: 100%;} 
.main2-sec2 .title img{width: 65px; height:65px; object-fit: contain;}
.main2-sec2 .title h1{font-size: var(--font-48px); font-weight: 500; color: #006935; text-align: center;}
.main2-sec2 .title h1 b{font-size: var(--font-48px); font-weight: 700; color: #006935;}
.main2-sec2 .swiper{width: 100%; height: 100%; overflow: hidden;}
.main2-sec2 .swiper-slide{width: 20%;}
.main2-sec2 .swiper-slide .slide-item {width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; position: relative;}
.main2-sec2 .swiper-slide .slide-item::before{content: ' '; position: absolute; top: 0; right: 0; width: 3px; height: 100%; background: linear-gradient(180deg, #F4F9F9 0%, #5BC0BE 80%, #F4F9F9 100%);}
.main2-sec2 .swiper-slide:last-child .slide-item::before{display: none;}
.main2-sec2 .swiper-slide .slide-item .text-box{margin: 50px 20px; height: 25%;}
.main2-sec2 .swiper-slide .slide-item .text-box .num{color: #A8DADC; font-family: Roboto; font-size: 52px; font-weight: 700; line-height: normal; border-bottom: 3px solid #A8DADC; padding-bottom: 30px; margin-bottom: 30px; }
.main2-sec2 .swiper-slide .slide-item .text-box h2{color: var(--text-green); font-size: var(--font-32px); font-weight: 700; line-height: normal; margin-bottom: 20px;}
.main2-sec2 .swiper-slide .slide-item .text-box p{font-size: var(--font-18px); color: #899E9E;}
.main2-sec2 .swiper-slide .slide-item .img-box{width: 100%; height: 35%;}
.main2-sec2 .swiper-slide .slide-item .img-box img{width: 100%; height: 100%; object-fit: cover;}
@media screen and (max-width: 1250px) {
    .main2-sec2 .swiper-slide{width: 25%;}
    .main2-sec2 .title h1 b{display: block;}
    .main2-sec2 .swiper-slide .slide-item .text-box{margin: 30px;}
    .main2-sec2 .swiper-slide .slide-item .text-box .num{font-size: 42px;}
}
@media screen and (max-width: 960px) {
    .main2-sec2 .swiper-slide{width: 33.3333%;}
    .main2-sec2 .title img{width: 50px; height: 50px;}
    .main2-sec2 .swiper-slide .slide-item .text-box{margin: 20px;}
    .main2-sec2 .swiper-slide .slide-item .text-box .num{font-size: 32px;}
}
@media screen and (max-width: 650px) {
    .main2-sec2 .title{width: 100%; }
    .main2-sec2 .title img{width: 40px; height: 40px;}
    .main2-sec2 .swiper-slide{width: 50%;}
    .main2-sec2 .swiper-slide .slide-item .text-box{ min-height: 200px; margin: 10px;}
    .main2-sec2 .swiper-slide .slide-item .text-box .num{font-size: 28px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 2px solid #A8DADC;}
    .main2-sec2 .swiper-slide .slide-item .text-box h2{margin-bottom: 10px;}
    .main2-sec2 .swiper-slide .slide-item .img-box{height: 25%;}
}
/*main2-common-sec*/
.main2-common-sec{height: 880px; display: flex; justify-content: center; align-items: center;}
.main2-common-sec .title-box{text-align: center; margin-bottom: 80px;}
.main2-common-sec .title-box .num span{font-size: 30px; font-weight: 900; color: #fff;}
.main2-common-sec .title-box .num{width: 100px; height: 40px; margin: 0 auto 10px auto;}
.main2-common-sec .title-box h1{font-size: 40px; font-weight: 700;}
.main2-common-sec .content{position: relative;}
.main2-common-sec .swiper{width: 100%; height: 100%; overflow: hidden;}
.main2-common-sec .swiper-slide{width: 100%;}
.main2-common-sec .content .slide-item{ display: block; width: 100%; border-radius: 5px; padding: 20px; position: relative; height: 350px;}
.main2-common-sec .content .slide-item .text-box{height: 100%; display: flex; justify-content: space-between; flex-direction: column;}
.main2-common-sec .content .slide-item .text-box h2{font-size: var(--font-32px); color: #fff; font-weight: 600; line-height: normal;}
.main2-common-sec .content .slide-item .text-box p{font-size: var(--font-18px); color: #fff; font-weight: 500;}
.main2-common-sec .content .slide-item .img-box{position: absolute; bottom: 0; right: 0; width: 100%; height: 100%;}
.main2-common-sec .content .slide-item .img-box img{width: 100%; height: 100%; object-fit: contain; object-position: right bottom;}
.main2-common-sec .main2-common-sec-pagination{width: 1200px; top: auto !important; height: 8px; border-radius: 10px; overflow: hidden; background: rgba(0, 168, 168, 0.10); margin-top: 50px;}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background-color: var(--main-color) !important;}
.main2-common-sec-btns div{width: 50px; height: 50px; border-radius: 50%; background: #FFF; box-shadow: 2px 6px 6px 0 rgba(0, 0, 0, 0.15); display: flex; justify-content: center; align-items: center; position: absolute; top: 60%; transform: translateY(-50%);}
.main2-common-sec-btns div i{font-size: 24px; color:#222;}
.main2-common-sec-btns .prev-btn{left: -100px;}
.main2-common-sec-btns .next-btn{right: -100px;}
.main2-common-sec.green .title-box .num{background: url('../img/common/main2-ellipse.png') no-repeat center center / contain; display: flex; align-items: center; justify-content: center;}
.main2-common-sec.green .title-box h1{color: var(--text-green);}
.main2-common-sec.green .content .slide-item{background-color: #1A7575;}
.main2-common-sec.blue .title-box .num{background: url('../img/common/main2-ellipse-blue.png') no-repeat center center / contain; display: flex; align-items: center; justify-content: center;}
.main2-common-sec.blue .title-box h1{color: #1A4B75;}
.main2-common-sec.blue .content .slide-item{background-color: #1A4B75;}
.main2-common-sec.blue .main2-common-sec-pagination{background: #fff !important;}
.main2-common-sec.blue .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background-color:#1A4B75 !important;}
.main2-sec3.main2-common-sec{background: url('../img/main2/main2-sec3-bg.jpg') no-repeat center center / cover; }
.main2-sec4.main2-common-sec{background: url('../img/main2/main2-sec4-bg.jpg') no-repeat center center / cover; }
.main2-sec5.main2-common-sec{background: url('../img/main2/main2-sec5-bg.jpg') no-repeat center center / cover; }
.main2-sec6.main2-common-sec{background: url('../img/main2/main2-sec6-bg.jpg') no-repeat center center / cover; }
.main2-sec7.main2-common-sec{background: url('../img/main2/main2-sec7-bg.jpg') no-repeat center center / cover; }
.main2-sec8.main2-common-sec{background: url('../img/main2/main2-sec8-bg.jpg') no-repeat center center / cover; }
.main2-sec9.main2-common-sec{background: url('../img/main2/main2-sec9-bg.jpg') no-repeat center center / cover; }
.main2-sec10.main2-common-sec{background: url('../img/main2/main2-sec10-bg.jpg') no-repeat center center / cover; }
.main2-sec13.main2-common-sec{background: url('../img/main2/main2-sec13-bg.jpg') no-repeat center center / cover; }
.main2-sec14.main2-common-sec{background: url('../img/main2/main2-sec14-bg.jpg') no-repeat center center / cover; }
.main2-sec15.main2-common-sec{background: url('../img/main2/main2-sec15-bg.jpg') no-repeat center center / cover; }
.main2-common-sec.three-card .swiper-wrapper,
.main2-common-sec.four-card .swiper-wrapper,
.main2-common-sec.two-card .swiper-wrapper{justify-content: center;}
.main2-common-sec.three-card .main2-common-sec-btns, 
.main2-common-sec.three-card .main2-common-sec-pagination,
.main2-common-sec.four-card .main2-common-sec-btns, 
.main2-common-sec.four-card .main2-common-sec-pagination,
.main2-common-sec.two-card .main2-common-sec-btns, 
.main2-common-sec.two-card .main2-common-sec-pagination{display: none;}

@media screen and (max-width: 1250px) {
    .main2-common-sec{height: 60vh; padding: 80px 0; min-height: 800px;}
    .main2-common-sec .title-box{margin-bottom: 60px;}
    .main2-common-sec .title-box .num span{font-size: 24px;}
    .main2-common-sec .title-box h1{font-size: 32px;}
    .main2-common-sec .content{margin: 0 100px;}
    .main2-common-sec .content .slide-item{height: 330px;}
    .main2-common-sec .main2-common-sec-pagination{width: 100%; margin-top: 40px;}
    .main2-common-sec-btns .prev-btn{left: -80px;}
    .main2-common-sec-btns .next-btn{right: -80px;}
    .main2-common-sec.four-card .swiper-wrapper {justify-content: flex-start;}
    .main2-common-sec.four-card .main2-common-sec-btns, 
    .main2-common-sec.four-card .main2-common-sec-pagination{display: block;}
}
@media screen and (max-width: 960px) {
    .main2-common-sec{padding: 70px 0; min-height: 600px;}
    .main2-common-sec .title-box{margin-bottom: 40px;}
    .main2-common-sec .title-box .num{width: 85px; height: 34px;}
    .main2-common-sec .title-box .num span{font-size: 20px;}
    .main2-common-sec .title-box h1{font-size: 28px;}
    .main2-common-sec .content{margin: 0 60px;}
    .main2-common-sec .content .slide-item{height: 300px; padding: 16px;}
    .main2-common-sec .main2-common-sec-pagination{ width: 100%;}
    .main2-common-sec-btns div{width: 45px; height: 45px; top: 55%;}
    .main2-common-sec-btns div i{font-size: 20px;}
    .main2-common-sec-btns .prev-btn{left: -60px;}
    .main2-common-sec-btns .next-btn{right: -60px;}
    .main2-common-sec .content .slide-item .img-box img{object-position: center center; object-fit: cover;}
    .main2-common-sec.three-card .swiper-wrapper {justify-content: flex-start;}
    .main2-common-sec.three-card .main2-common-sec-btns, 
    .main2-common-sec.three-card .main2-common-sec-pagination{display: block;}
}
@media screen and (max-width: 650px) {
    .main2-common-sec{padding: 60px 0px; height: 50vh; min-height: 500px;}
    .main2-common-sec .title-box{margin-bottom: 30px;}
    .main2-common-sec .title-box .num{width: 70px; height: 30px;}
    .main2-common-sec .title-box .num span{font-size: 18px;}
    .main2-common-sec .title-box h1{font-size: 24px;}
    .main2-common-sec .content{padding: 0;}
    .main2-common-sec .content .slide-item{height: 260px; padding: 14px; border-radius: 4px;}
    .main2-common-sec .main2-common-sec-pagination{margin-top: 24px;}
    .main2-common-sec-btns div{ width: 35px; height: 35px;}
    .main2-common-sec .content .slide-item .img-box img{object-position: center center; object-fit: cover;}   
    .main2-common-sec.two-card .swiper-wrapper {justify-content: flex-start;}
    .main2-common-sec.two-card .main2-common-sec-btns, 
    .main2-common-sec.two-card .main2-common-sec-pagination{display: block;}
}
/*main2-common-banner*/
.main2-common-banner{position: relative; background-color: #333;}
.main2-common-banner .slide-item {width: 100%; background-color: #333; height: 700px;}
.main2-common-banner .slide-item .inner{display: flex; justify-content: space-between; height: 100%;}
.main2-common-banner .left{flex: 7;}
.main2-common-banner .right{flex: 5;}
.main2-common-banner .left h1{font-size: 52px; font-weight: 700; color: #fff; margin-bottom: 10px;}
.main2-common-banner .left h1 b{font-size: 52px; font-weight: 700; display: block; color: #fff;}
.main2-common-banner .left span{font-size: var(--font-14px); color: #fff;}
.main2-common-banner .slide-item .right {display: flex; flex-direction: column; gap: 50px;}
.main2-common-banner .slide-item .right .item{display: flex; justify-content: space-between; align-items: center;}
.main2-common-banner .slide-item .right .item .text p{font-size: var(--font-28px); color: #fff; font-weight: 500;}
.main2-common-banner .slide-item .right .item .text h2{font-size: var(--font-32px); color: #fff; font-weight: 500;}
.main2-common-banner .slide-item .right .item .text h2 b{font-size: 52px; color: #E76F51; font-weight: 600;}
.main2-common-banner .slide-item .right .item .img {width: 120px; height: 120px;}
.main2-common-banner .slide-item .right .item .img img{width: 100%; height: 100%; object-fit: contain;}
.main2-common-banner .slide-item.type1{padding: 80px 0;}
.main2-common-banner .slide-item.type2 .left img{width: 50%; height: auto; object-fit: contain; display: inline-block; }
.main2-common-banner .slide-item.type2,
.main2-common-banner .slide-item.type3{padding-top: 80px;}
.main2-common-banner .slide-item.type2 .left{display: flex; flex-direction: column; align-items: center; justify-content: space-between;}
.main2-common-banner .slide-item.type3 .left{display: flex; flex-direction: column; justify-content: space-between;}
.main2-common-banner .slide-item.type2 .left h1 b{color: #A8DADC;}
.main2-common-banner .slide-item.type3 .left img{width: 60%; object-fit: contain; object-position: bottom center;}
.main2-common-banner .slide-item.type2 .right .item .text h2,
.main2-common-banner .slide-item.type3 .right .item .text h2{ margin-bottom: 10px; color: #E76F51; font-weight: 600; font-size: var(--font-28px);}
.main2-common-banner .slide-item.type2 .right .item .text p,
.main2-common-banner .slide-item.type3 .right .item .text p{font-size: var(--font-20px); color: #fff; font-weight: 500;}
.main2-common-banner .swiper-button-next,
.main2-common-banner .swiper-button-prev{width: 50px; height: 50px; border-radius: 50%; border: 1px solid #fff; display: flex; justify-content: center; align-items: center; background-image: none !important;}
.main2-common-banner .swiper-button-next svg,
.main2-common-banner .swiper-button-prev svg{display: none;}
.main2-common-banner .swiper-button-next{right: 5% !important;}
.main2-common-banner .swiper-button-prev{left: 5% !important;}
.main2-common-banner .swiper-button-next i,
.main2-common-banner .swiper-button-prev i{font-size: 24px; color:#fff !important;}
@media screen and (max-width: 1400px) {
    .main2-common-banner .swiper-button-next{right: 3% !important;}
    .main2-common-banner .swiper-button-prev{left: 3% !important;}
}
@media screen and (max-width: 1250px) {
    .main2-common-banner .slide-item{height: 40vh; min-height: 580px;}
    .main2-common-banner .slide-item .inner{width: 80%;}
    .main2-common-banner .slide-item .right{gap: 30px;}
    .main2-common-banner .slide-item .right .item .img {width: 100px; height: 100px;}
    .main2-common-banner .left h1, 
    .main2-common-banner .left h1 b,
    .main2-common-banner .slide-item .right .item .text h2 b{font-size: 36px;}
    .main2-common-banner .slide-item.type1{padding: 60px 0;}
    .main2-common-banner .slide-item.type2,
    .main2-common-banner .slide-item.type3{padding-top: 60px;}
    .main2-common-banner .swiper-button-next{right: 40px !important; width: 40px; height: 40px;}
    .main2-common-banner .swiper-button-prev{left: 40px !important; width: 40px; height: 40px;}
}
@media screen and (max-width: 960px) {
    .main2-common-banner .slide-item{height: 50vh; min-height: 600px;}
    .main2-common-banner .slide-item .inner{flex-direction: column; justify-content: flex-start; gap: 20px; height: auto;}
    .main2-common-banner .left,
    .main2-common-banner .right{flex: none; width: 100%;}
    .main2-common-banner .slide-item .right{gap: 20px;}
    .main2-common-banner .slide-item .right .item{margin-bottom: 10px;}
    .main2-common-banner .slide-item .right .item p br{display: none;}
    .main2-common-banner .slide-item .right .item{margin-bottom: 10px;}
    .main2-common-banner .left h1, 
    .main2-common-banner .left h1 b,
    .main2-common-banner .slide-item .right .item .text h2 b{font-size: 36px;}
    .main2-common-banner .slide-item.type1{padding: 50px 0;}
    .main2-common-banner .slide-item.type2,
    .main2-common-banner .slide-item.type3{padding-top: 50px;}
    .main2-common-banner .slide-item.type1 .right{display: flex; flex-direction: column; gap: 24px;}
    .main2-common-banner .slide-item.type2 .left,
    .main2-common-banner .slide-item.type3 .left{align-items: flex-start; gap: 30px;}
    .main2-common-banner .slide-item.type2 .left img,
    .main2-common-banner .slide-item.type3 .left img{display: none;}
    .main2-common-banner .swiper-button-next,
    .main2-common-banner .swiper-button-prev{width: 44px; height: 44px;}
    .main2-common-banner .swiper-button-next{right: 24px !important;}
    .main2-common-banner .swiper-button-prev{left: 24px !important;}
}
@media screen and (max-width: 650px) {
    .main2-common-banner .slide-item{height: 50vh; min-height: 600px;}
    .main2-common-banner .slide-item .right{gap: 10px;}
    .main2-common-banner .left h1, 
    .main2-common-banner .left h1 b,
    .main2-common-banner .slide-item .right .item .text h2 b{font-size: 24px;}
    .main2-common-banner .slide-item .right .item .img {width: 80px; height: 80px;}
    .main2-common-banner .slide-item.type1{padding: 30px 0;}
    .main2-common-banner .slide-item.type2,
    .main2-common-banner .slide-item.type3{padding-top: 30px;}
    .main2-common-banner .slide-item .inner{gap: 28px;}
    .main2-common-banner .left h1 b{display: block;}
    .main2-common-banner .slide-item.type1 .right{gap: 20px;}
    .main2-common-banner .slide-item.type2 .left img,
    .main2-common-banner .slide-item.type3 .left img{width: 100%; max-width: 280px;}
    .main2-common-banner .slide-item.type2 .right .item .text h2,
    .main2-common-banner .slide-item.type3 .right .item .text h2{margin-bottom: 6px;}
    .main2-common-banner .swiper-button-next,
    .main2-common-banner .swiper-button-prev{width: 30px; height: 30px; margin-top: 0; transform: none;}
    .main2-common-banner .swiper-button-next{top: 95% !important; right: 40% !important;}
    .main2-common-banner .swiper-button-prev{top: 95% !important; left: 40% !important;}
    .main2-common-banner .swiper-button-next i,
    .main2-common-banner .swiper-button-prev i{font-size: 18px;}
}
/*main2-sec12*/
.main2-sec12.main2-sec2 .swiper-slide{width: 33.3333%;}
@media screen and (max-width: 650px) {
    .main2-sec12.main2-sec2 .swiper-slide{width: 50%;}
}
/*main2-sec16*/
.main2-sec16.main2-common-banner .slide-item {width: 100%; background-color: #333; height: 600px;}
@media screen and (max-width: 1250px) {
    .main2-sec16.main2-common-banner .slide-item {height: 50vh; min-height: 400px; max-height: 500px;}
    .main2-sec16.main2-common-banner .left{ flex: 1; }
    .main2-sec16.main2-common-banner .right{flex: 1;}
    .main2-sec16.main2-common-banner .slide-item.type2 .left img{width: 80%;}
}
@media screen and (max-width: 960px) {
    .main2-sec16.main2-common-banner .slide-item {height: 50vh; min-height: 520px; max-height: 600px;}
}
/*main2-sec17*/
.main2-sec17{ position: relative; overflow: hidden; background: url('../img/main2/main2-sec17-bg.jpg') no-repeat center center / cover; padding: 150px 0; }
.main2-sec17 .menuBox{padding: 20px;}
.main2-sec17 .menuBox .menuList .item{background: transparent;}
.main2-sec17 .content > .title{text-align: center; margin-bottom: 50px;}
.main2-sec17 .title h1{display: inline-block; font-size: 40px; font-weight: 700; color: var(--text-green); line-height: normal; position: relative; margin-bottom: 10px;}
.main2-sec17 .title h1::before{content: ' '; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);  width: 70%; height: 4px; background-color: var(--text-green);}
.main2-sec17 .title p{font-size: var(--font-18px); font-weight: 500; color: #555; line-height: normal;}
.main2-sec17 .swiper{width: 100%; height: 100%;}
.main2-sec17 .swiper-slide{ width: 620px; height: auto; display: flex; justify-content: center; align-items: center;}
.main2-sec17 .swiper-slide .slide-item{padding: 20px; width: 95%; height: 95%; background-color: rgba(255, 255, 255, 0.5); backdrop-filter: blur(5px); border-radius: 20px; box-shadow: 0 0 4px rgba(91, 192, 190, 0.80); display: flex; flex-direction: column; justify-content: space-between; gap: 30px;  transform: scale(0.7); opacity: 0.7; transition: all 0.3s ease;}
.main2-sec17 .swiper-slide-active .slide-item{transform: scale(1); opacity: 1;}
.main2-sec17 .swiper-slide .slide-item .text-box .label{display: flex; justify-content: space-between; align-items: center;}
.main2-sec17 .swiper-slide .slide-item .text-box .label span{font-size: var(--font-18px); color: var(--main-color); font-weight: 500;}
.main2-sec17 .swiper-slide .slide-item .text-box .label span.date{flex-shrink: 0; font-size: var(--font-16px); color: #555; font-weight: 400;}
.main2-sec17 .swiper-slide .slide-item .text-box .title{overflow: hidden; text-overflow: ellipsis; font-size: 22px; font-weight: 500; line-height: normal; margin: 10px 0 20px 0;}
.main2-sec17 .swiper-slide .slide-item .text-box p{overflow: hidden; display: -webkit-box; text-overflow: ellipsis; -webkit-line-clamp: 4; -webkit-box-orient: vertical; font-size: var(--font-18px);}
.main2-sec17 .swiper-slide .slide-item .img-box{width: 100%; height: 320px; border-radius: 10px; overflow: hidden;}
.main2-sec17 .slide-button-wrap{position: absolute; z-index: 100; top: 55%; left: 50%; transform: translate(-50%,-55%); display: flex; justify-content: space-between; width: 800px;}
.main2-sec17 .slide-button-next,
.main2-sec17 .slide-button-prev{width: 60px; height: 60px; border-radius: 50%; background-color: var(--main-color); display: flex; justify-content: center; align-items: center;}
.main2-sec17 .slide-button-next i,
.main2-sec17 .slide-button-prev i{font-size: 40px; color:#fff !important;}
@media screen and (max-width: 1250px) {
    .main2-sec17{padding: 120px 0;}
    .main2-sec17 .content > .title{margin-bottom: 40px;}
    .main2-sec17 .title h1{font-size: 36px;}
    .main2-sec17 .swiper-slide{width: 520px;}
    .main2-sec17 .swiper-slide .slide-item{gap: 24px; padding: 18px;}
    .main2-sec17 .swiper-slide .slide-item .img-box{height: 280px;}
    .main2-sec17 .slide-button-wrap{width: 700px;}
    .main2-sec17 .slide-button-next,
    .main2-sec17 .slide-button-prev{width: 54px; height: 54px;}
    .main2-sec17 .slide-button-next i,
    .main2-sec17 .slide-button-prev i{font-size: 34px;}
}
@media screen and (max-width: 960px) {
    .main2-sec17{padding: 100px 0;}
    .main2-sec17 .content > .title{margin-bottom: 32px;}
    .main2-sec17 .title h1{font-size: 32px;}
    .main2-sec17 .title h1::before{top: -16px; height: 3px;}
    .main2-sec17 .swiper-slide{width: min(480px, 88vw);}
    .main2-sec17 .swiper-slide .slide-item{gap: 20px; padding: 16px; border-radius: 16px;}
    .main2-sec17 .swiper-slide .slide-item .text-box .title{margin: 8px 0 14px 0;}
    .main2-sec17 .swiper-slide .slide-item .img-box{height: 240px;}
    .main2-sec17 .slide-button-wrap{width: min(600px, 95vw);}
    .main2-sec17 .slide-button-next,
    .main2-sec17 .slide-button-prev{width: 48px; height: 48px;}
    .main2-sec17 .slide-button-next i,
    .main2-sec17 .slide-button-prev i{font-size: 28px;}
}
@media screen and (max-width: 650px) {
    .main2-sec17{padding: 80px 0;}
    .main2-sec17 .content > .title{margin-bottom: 24px;}
    .main2-sec17 .title h1{font-size: 28px;}
    .main2-sec17 .title h1::before{width: 80%; top: -14px;}
    .main2-sec17 .swiper-slide{width: min(360px, 92vw);}
    .main2-sec17 .swiper-slide .slide-item{gap: 16px; padding: 14px; border-radius: 14px; transform: scale(0.92);}
    .main2-sec17 .swiper-slide-active .slide-item{transform: scale(1);}
    .main2-sec17 .swiper-slide .slide-item .text-box .label{flex-direction: column; align-items: flex-start; gap: 6px;}
    .main2-sec17 .swiper-slide .slide-item .text-box .title{font-size: 18px; margin: 6px 0 10px 0;}
    .main2-sec17 .swiper-slide .slide-item .img-box{height: 200px; border-radius: 8px;}
    .main2-sec17 .slide-button-wrap{display: none;}
}
/*main2-sec18*/
.main2-sec18{padding: 150px 0; background: url('../img/main2/main2-sec18-bg.jpg') no-repeat center center / cover;}
.main2-sec18-sec1 .title{text-align: center; margin-bottom: 80px; }
.main2-sec18 .main2-sec18-sec1 h1{display: inline-block; font-size: var(--font-48px); font-weight: 700; color: var(--text-green); line-height: normal; position: relative;}
.main2-sec18 .main2-sec18-sec1 h1::before{content: ' '; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);  width: 30%; height: 4px; background-color: var(--text-green);}
.main2-sec18-sec1 .content{display: flex; justify-content: space-between; gap: 24px;}
.main2-sec18-sec1 .content .left{flex: 7;}
.main2-sec18-sec1 .content .left .text-box:nth-of-type(1){padding-top: 20px; border-top: 5px solid #A8DADC;}
.main2-sec18-sec1 .content .left .text-box:nth-of-type(2){padding-top: 30px;  margin-top: 30px; border-top: 1px solid #A8DADC;}
.main2-sec18-sec1 .content .left .text-box h3{font-size: var(--font-28px); color: var(--main-color); font-weight: 700; line-height: normal; margin-bottom: 20px;}
.main2-sec18-sec1 .content .left .text-box p,
.main2-sec18-sec1 .content .left .text-box p b{font-size: var(--font-18px);}
.main2-sec18-sec1 .content .left .text-box p b{color: var(--main-color);}
.main2-sec18-sec1 .content .left > p{font-size: var(--font-20px); font-weight: 600; margin-top: 40px;}
.main2-sec18-sec1 .content .right{flex: 5;}
.main2-sec18-sec1 .content .right img{width: 100%; height: 100%; object-fit: cover;}
/*main2-sec18-sec2*/
.main2-sec18-sec2{margin-top: 200px; }
.main2-sec18-sec2 > h3{text-align: center; color: var(--main-color); font-size: var(--font-32px); font-weight: 700;}
.main2-sec18-sec2 .content{margin-top: 50px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;}
.main2-sec18-sec2 .content .item{width: 100%; height: 100%; background-color: #fff; border: 1px solid var(--main-color); border-radius: 20px; height: 150px; display: flex; justify-content: center;}
.main2-sec18-sec2 .content .item .item-inner{display: flex; justify-content: space-between; align-items: center; gap: 24px; width: 80%;}
.main2-sec18-sec2 .content .item .item-inner .img-box{width: 100px; height: 100px; border-radius: 50%; background-color: var(--main-color); display: flex; justify-content: center; align-items: center;}
.main2-sec18-sec2 .content .item .item-inner .img-box img{width: 50%; height: 50%; object-fit: contain;}
.main2-sec18-sec2 .content .item .item-inner .text-box{flex: 1;}
.main2-sec18-sec2 .content .item .item-inner .text-box h4{font-size: var(--font-24px); font-weight: 700; color: #E76F51;}
.main2-sec18-sec2 .content .item .item-inner .text-box p{font-size: var(--font-24px);}
@media screen and (max-width: 1250px) {
    .main2-sec18{padding: 120px 0;}
    .main2-sec18-sec1 .title{margin-bottom: 60px;}
    .main2-sec18-sec1 .content{gap: 20px;}
    .main2-sec18-sec1 .content .left .text-box:nth-of-type(2){margin-top: 24px; padding-top: 24px;}
    .main2-sec18-sec1 .content .left > p{margin-top: 32px;}
    .main2-sec18-sec1 .content .right img{min-height: 400px;}
    .main2-sec18-sec2{margin-top: 150px;}
    .main2-sec18-sec2 .content{margin-top: 40px; gap: 20px;}
    .main2-sec18-sec2 .content .item{height: 140px;}
    .main2-sec18-sec2 .content .item .item-inner{width: 85%;}
}
@media screen and (max-width: 960px) {
    .main2-sec18{padding: 100px 0;}
    .main2-sec18-sec1 .title{margin-bottom: 48px;}
    .main2-sec18 .main2-sec18-sec1 h1::before{top: -16px; height: 3px; width: 40%;}
    .main2-sec18-sec1 .content{flex-direction: column; gap: 32px;}
    .main2-sec18-sec1 .content .left,
    .main2-sec18-sec1 .content .right{flex: none; width: 100%;}
    .main2-sec18-sec1 .content .right{display: none;}
    .main2-sec18-sec1 .content .left .text-box h3 br{display: block;}
    .main2-sec18-sec1 .content .left .text-box:nth-of-type(1){padding-top: 16px;}
    .main2-sec18-sec1 .content .left .text-box:nth-of-type(2){margin-top: 20px; padding-top: 20px;}
    .main2-sec18-sec1 .content .left .text-box h3{margin-bottom: 14px;}
    .main2-sec18-sec1 .content .left > p{margin-top: 24px;}
    .main2-sec18-sec2{margin-top: 100px;}
    .main2-sec18-sec2 .content{margin-top: 32px;gap: 16px;}
    .main2-sec18-sec2 .content .item{height: auto; min-height: 130px; padding: 20px 0;}
    .main2-sec18-sec2 .content .item .item-inner{width: 90%; gap: 16px;}
    .main2-sec18-sec2 .content .item .item-inner .img-box{width: 80px; height: 80px; flex-shrink: 0;}
}
@media screen and (max-width: 650px) {
    .main2-sec18{padding: 80px 0;}
    .main2-sec18-sec1 .title{margin-bottom: 32px;}
    .main2-sec18 .main2-sec18-sec1 h1::before{width: 50%; top: -14px;}
    .main2-sec18-sec1 .content{gap: 24px;}
    .main2-sec18-sec1 .content .left .text-box:nth-of-type(1){padding-top: 14px; border-top-width: 4px;}
    .main2-sec18-sec1 .content .left .text-box:nth-of-type(2){margin-top: 16px; padding-top: 16px;}
    .main2-sec18-sec1 .content .left .text-box h3{margin-bottom: 10px;}
    .main2-sec18-sec1 .content .left > p{margin-top: 20px;}
    .main2-sec18-sec1 .content .left .text-box p br{display: none;}
    .main2-sec18-sec1 .content .right img{min-height: 220px; max-height: 280px; border-radius: 10px;}
    .main2-sec18-sec2{margin-top: 72px;}
    .main2-sec18-sec2 > h3{line-height: 1.4; padding: 0 4px;}
    .main2-sec18-sec2 .content{margin-top: 24px; gap: 12px; grid-template-columns: 1fr; }
    .main2-sec18-sec2 .content .item{min-height: auto; padding: 16px 0; border-radius: 14px;}
    .main2-sec18-sec2 .content .item .item-inner .img-box{width: 72px; height: 72px;}
    .main2-sec18-sec2 .content .item .item-inner .text-box h4,
    .main2-sec18-sec2 .content .item .item-inner .text-box p{line-height: 1.35;}
}
/* main2-sec19 — 무한 가로 흐름 */
.main2-sec19{overflow: hidden; padding: 60px 0; background-color: #fff; }
.main2-sec19 .animation-viewport{overflow: hidden; width: 100%;}
.main2-sec19 .animation-track{ display: flex; width: max-content; animation: main2-sec19-marquee 45s linear infinite; will-change: transform;}
.main2-sec19 .animation-track:hover{animation-play-state: paused;}
.main2-sec19 .animation-wrap{ display: flex;flex-direction: row; flex-shrink: 0; align-items: center; gap: 40px; padding: 0 20px;}
.main2-sec19 .animation-wrap .img-box{ flex-shrink: 0; display: flex;  align-items: center; justify-content: center;}
.main2-sec19 .animation-wrap .img-box img{ display: block; width: auto;height: 80px; max-width: 200px; object-fit: contain;}
.main2-sec19 .animation2{margin-top: 24px;}
.main2-sec19 .animation2 .animation-wrap .img-box img{height: 50px; max-width: 160px;}
@keyframes main2-sec19-marquee{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
    .main2-sec19 .animation-track{animation: none; transform: none;}
}
@media screen and (max-width: 960px){
    .main2-sec19{padding: 48px 0;}
    .main2-sec19 .animation-wrap{gap: 28px; padding: 0 14px;}
    .main2-sec19 .animation-wrap .img-box img{height: 64px; max-width: 160px;}
    .main2-sec19 .animation2{margin-top: 20px;}
    .main2-sec19 .animation2 .animation-wrap .img-box img{height: 42px; max-width: 130px;}
}
@media screen and (max-width: 650px){
    .main2-sec19{padding: 40px 0;}
    .main2-sec19 .animation-wrap{gap: 20px; padding: 0 10px;}
    .main2-sec19 .animation-wrap .img-box img{height: 52px; max-width: 140px;}
    .main2-sec19 .animation-track{animation-duration: 35s;}
    .main2-sec19 .animation2{margin-top: 16px;}
    .main2-sec19 .animation2 .animation-wrap .img-box img{height: 34px; max-width: 110px;}
}
/*main2-sec20*/
.main2-sec20{padding: 100px 0;  background: url('../img/main2/main2-sec20-bg.jpg') no-repeat center center / cover; }
.main2-sec20 .inner{display: flex; justify-content: space-between; gap: 24px;}
.main2-sec20 .inner > div{display: flex; flex-direction: column; align-items: center; flex: 1;}
.main2-sec20 .inner .title-box{text-align: center; display: flex; width: 250px; align-items: center; justify-content: center; height: 70px;  background-color: var(--text-green); border-radius: 20px 20px 0 0;}
.main2-sec20 .inner .title-box h4{font-size: var(--font-24px); font-weight: 700; color: #fff;}
.main2-sec20 .inner .title-box h4 b{display: block; font-size: var(--font-16px); font-weight: 500; color: #fff; line-height: normal;}
.main2-sec20 .inner .left .content{height: 100%; width: 100%; display: flex; flex-direction: column; gap: 12px;}
.main2-sec20 .inner .left .content .item{height: calc((100% -  48px) / 5); display: flex; align-items: center; gap: 30px; background-color: #fff; border-radius: 10px; box-shadow: 3px 8px 12px 0 rgba(0, 0, 0, 0.25); padding-left: 20px; border-radius: 10px;}
.main2-sec20 .inner .left .content .item .step{ position: relative; font-size: var(--font-18px); font-weight: 500; color: #fff; line-height: normal; background-color: var(--main-color); border-radius: 10px; padding: 8px 22px;}
.main2-sec20 .inner .left .content .item .step::before{content: url('../img/main2/main2-sec20-arrow.png'); position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); }
.main2-sec20 .inner .left .content .item:first-child .step::before{display: none;}
.main2-sec20 .inner .left .content .item .desc{flex: 1; display: flex; align-items: center; gap: 18px;}
.main2-sec20 .inner .left .content .item .desc img{width: 65px; height:65px; object-fit: contain;}
.main2-sec20 .inner .left .content .item .desc p{font-size: var(--font-20px); font-weight: 600; color: #EA7E63;}
.main2-sec20 .inner .right{flex: 1; display: flex; flex-direction: column; align-items: center; }
.main2-sec20 .inner form{ flex: 1; }
.main2-sec20 .inner .right .form-box{background-color: #fff;border-radius: 20px; padding: 30px; width: 100%;}
.main2-sec20 .inner .right .form-box > .input-box{margin-bottom: 10px;}
.main2-sec20 .inner .right .form-box .input-box p{font-size: var(--font-18px); font-weight: 500; margin-bottom: 10px;}
.main2-sec20 .inner .right .form-box .input-box p b{color: #EB5757;}
.main2-sec20 .inner .right .form-box .input-box p em{font-size: var(--font-16px); font-style: normal;}
.main2-sec20 .inner .right .form-box .input-box input{width: 100%; height: 50px; border: none; padding: 0 20px; background-color: #F3F3F3; border-radius: 4px;} 
.main2-sec20 .inner .right .form-box .input-box input::placeholder{font-size: var(--font-16px); color: #999;}
.main2-sec20 .inner .right .form-box .half-wrap.input-box{display: flex; gap: 24px;}
.main2-sec20 .inner .right .form-box .half-wrap.input-box .input-box{flex: 1;}
.main2-sec20 .inner .right .form-box .agreement{display: flex; align-items: center; gap: 10px; margin-bottom: 20px;}
.main2-sec20 .inner .right .form-box .agreement label{display: flex; align-items: center; gap: 10px; color: #767D88; font-size: var(--font-14px);}
.main2-sec20 .inner .right .form-box .agreement label input{ position: relative; border: 1px solid #ddd;appearance: none; width: 18px; height: 18px;}
.main2-sec20 .inner .right .form-box .agreement label input:checked{background-color: var(--main-color);}
.main2-sec20 .inner .right .form-box .agreement label input:checked::before{ content: '\F633'; font-family: 'bootstrap-icons'; position: absolute; top: 30%;left: 55%; transform: translate(-50%, -50%); width: 16px; height: 16px; color: #fff; display: block;}
.main2-sec20 .inner .right .form-box .agreement a,
.main2-sec20 .inner .right .form-box .agreement .privacyPopupBtn{color: #767D88; font-size: var(--font-14px); }
.main2-sec20 .inner .right .form-box .submit-btn{text-align: center;}
.main2-sec20 .inner .right .form-box .submit-btn button{border-radius: 50px; background: #00A8A8; border: none; padding: 15px 35px; color:#fff; font-size:var(--font-14px); font-weight: 700;}  
@media screen and (max-width: 1250px) {
    .main2-sec20{padding: 80px 0;}
    .main2-sec20 .inner{gap: 20px;}
    .main2-sec20 .inner .title-box{width: 220px; height: 64px;}
    .main2-sec20 .inner .left .content .item{gap: 20px; padding-left: 16px;}
    .main2-sec20 .inner .left .content .item .step{padding: 8px 16px;}
    .main2-sec20 .inner .left .content .item .desc{gap: 14px;}
    .main2-sec20 .inner .left .content .item .desc img{width: 56px; height: 56px;}
    .main2-sec20 .inner .right .form-box{padding: 24px;}
    .main2-sec20 .inner .right .form-box .half-wrap.input-box{gap: 16px;}
}
@media screen and (max-width: 960px) {
    .main2-sec20{padding: 70px 0; }
    .main2-sec20 .inner{flex-direction: column; gap: 30px;}
    .main2-sec20 .inner > div{width: 100%; flex: none;}
    .main2-sec20 .inner .title-box{width: 300px;}
    .main2-sec20 .inner .left .content{height: auto;}
    .main2-sec20 .inner .left .content .item{ height: 130px; min-height: 76px; }
    .main2-sec20 .inner .left .content .item .step::before{bottom: calc(100% + 4px);}
    .main2-sec20 .inner .left .content .item .desc img{width: 52px; height: 52px;}
    .main2-sec20 .inner .right .form-box{padding: 24px 20px; border-radius: 16px;}
}
@media screen and (max-width: 650px) {
    .main2-sec20{padding: 56px 0;}
    .main2-sec20 .inner{gap: 24px;}
    .main2-sec20 .inner .left .content{gap: 10px;}
    .main2-sec20 .inner .left .content .item {height: 80px;}
    .main2-sec20 .inner .left .content .item .step{padding: 4px 10px; }
    .main2-sec20 .inner .left .content .item .step::before{ display: none; }
    .main2-sec20 .inner .left .content .item .desc{ gap: 12px;}
    .main2-sec20 .inner .left .content .item .desc img{width: 48px; height: 48px;}
    .main2-sec20 .inner .right .form-box{padding: 10px; border-radius: 14px;}
    .main2-sec20 .inner .right .form-box .input-box input{height: 46px; padding: 0 15px;}
    .main2-sec20 .inner .right .form-box .agreement{flex-wrap: wrap; align-items: flex-start; gap: 8px;}
    .main2-sec20 .inner .right .form-box .submit-btn button{width: 100%; max-width: 280px; padding: 14px 24px;}
}
/* ##############################s-category1-1.html############################ */
.subpage {background-color: #fff;}
.subpage .subpage-sec1{max-width: 1920px; margin: 0 auto; padding: 120px 20px; display: flex; justify-content: center; gap: 30px; align-items: flex-start;}
.subpage .link-box{ border-radius: 30px; width: 24%; background: #FFF; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20); padding: 60px 20px;}
.subpage .link-box h3{font-size: 26px; font-weight: 500; color: var(--main-color); margin-bottom: 15px;}
.subpage .link-box h3 i{display: none; font-size: 32px;}

.subpage .link-box .dropdown-title{font-size: var(--font-18px); border-radius: 10px; background: #F4F9F9; padding: 12px 20px; cursor: pointer; margin: 10px 0;}
.subpage .link-box .dropdown-wrap.active .dropdown-title{background: var(--main-color); color: #fff; font-weight: 600;}
.subpage .link-box .dropdown-content{display: none; margin-top: 10px; border-radius: 10px; padding: 15px 20px; background: #EBF8F8; flex-direction: column; gap: 10px; overflow: hidden;}
.subpage .link-box .dropdown-wrap.active .dropdown-content{display: flex;}
.subpage .link-box .dropdown-content a{font-size: var(--font-16px); color: #555;}
.subpage .link-box .dropdown-content a.active{color: var(--main-color); font-weight: 700;}
.subpage .content{flex: 1; background: #FFF; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20); padding: 60px 40px; border-radius: 30px;}
.subpage .content > h3{font-size: 32px; font-weight: 700; color: var(--main-color);}
.subpage .content > h3 i{font-size: var(--font-24px); color: var(--main-color); display: inline-block; margin: 0 20px;}
.subpage .content .img-box{width: 100%; height: 510px; border-radius: 5px; display: flex; align-items: flex-end; overflow: hidden; margin: 15px 0 40px 0}
.subpage .content .text-box{width: 100%; height: 20%; background: rgba(26, 117, 117, 0.8); padding: 0 30px; display: flex; flex-direction: column; justify-content: center; gap: 10px;}
.subpage .content .text-box.blue{background: rgba(26, 75, 117, 0.8);}
.subpage .content .text-box h1{font-size: var(--font-32px); font-weight: 600; color: #fff; padding-left: 20px; position: relative; line-height: normal;}
.subpage .content .text-box h1::before{content: ' '; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background-color: #fff;}
.subpage .content .text-box p{font-size: var(--font-18px); color: #fff; font-weight: 500; line-height: normal;}
.subpage .desc{width: 100%; display: flex; flex-direction: column; gap: 40px;}
.subpage .desc .desc-item {position: relative}
.subpage .desc .desc-item .list{margin-top: 40px; width: 100%;}
.subpage .desc .desc-item .list:nth-of-type(1){margin-top: 0;}
.subpage .desc .desc-item h3{ color: var(--main-color); font-size: var(--font-24px); font-weight: 500; margin-bottom: 20px; line-height: normal;}
.subpage .desc .desc-item ul {display: flex; flex-direction: column; gap: 5px;}
.subpage .desc .desc-item ul li{font-size: var(--font-20px); }
.subpage .desc .desc-item ul li.bold{font-weight: 700;}
.subpage .desc .desc-item .right{position: absolute; bottom: 0; right: 0; width: 280px;}
.subpage .desc .desc-item .right img{width: 100%; height: 100%; object-fit: contain;}
.subpage .desc .desc-item .info{width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;}
.subpage .desc .desc-item .info > div{height: 50px; display: flex; align-items: center; gap: 50px; padding-left: 16px; background: #F7F7F7; border-radius: 5px;}
.subpage .desc .desc-item .info div span{font-size: var(--20px);}
.subpage .desc .desc-item .info div span:nth-of-type(1){display: flex; align-items: center; gap: 10px; width: 80px;}
.subpage .desc .desc-item .info div span:nth-of-type(2){flex: 1;}
.subpage .desc .desc-item .info div span img{width: 24px; height: 24px; object-fit: contain;}
.subpage .s-category1-1-sec1 .content .img-box{ background: url('../img/sub/s-category1-img1.jpg') no-repeat center center / cover;}
.subpage .s-category1-2-sec1 .content .img-box{ background: url('../img/sub/s-category1-img2.jpg') no-repeat center center / cover;}
.subpage .s-category1-3-sec1 .content .img-box{ background: url('../img/sub/s-category1-img3.jpg') no-repeat center center / cover;}
.subpage .s-category1-4-sec1 .content .img-box{ background: url('../img/sub/s-category1-img4.jpg') no-repeat center center / cover;}
.subpage .s-category1-5-sec1 .content .img-box{ background: url('../img/sub/s-category1-img5.jpg') no-repeat center center / cover;}
.subpage .s-category1-6-sec1 .content .img-box{ background: url('../img/sub/s-category1-img6.jpg') no-repeat center center / cover;}
.subpage .s-category2-1-sec1 .content .img-box{ background: url('../img/sub/s-category2-img1.jpg') no-repeat center center / cover;}
.subpage .s-category2-2-sec1 .content .img-box{ background: url('../img/sub/s-category2-img2.jpg') no-repeat center center / cover;}
.subpage .s-category2-3-sec1 .content .img-box{ background: url('../img/sub/s-category2-img3.jpg') no-repeat center center / cover;}
.subpage .s-category2-4-sec1 .content .img-box{ background: url('../img/sub/s-category2-img4.jpg') no-repeat center center / cover;}
.subpage .s-category2-5-sec1 .content .img-box{ background: url('../img/sub/s-category2-img5.jpg') no-repeat center center / cover;}
.subpage .s-category2-6-sec1 .content .img-box{ background: url('../img/sub/s-category2-img6.jpg') no-repeat center center / cover;}
.subpage .s-category3-1-sec1 .content .img-box{ background: url('../img/sub/s-category3-img1.jpg') no-repeat center center / cover;}
.subpage .s-category3-2-sec1 .content .img-box{ background: url('../img/sub/s-category3-img2.jpg') no-repeat center center / cover;}
.subpage .s-category3-3-sec1 .content .img-box{ background: url('../img/sub/s-category3-img3.jpg') no-repeat center center / cover;}
.subpage .s-category3-4-sec1 .content .img-box{ background: url('../img/sub/s-category3-img4.jpg') no-repeat center center / cover;}
.subpage .s-category3-5-sec1 .content .img-box{ background: url('../img/sub/s-category3-img5.jpg') no-repeat center center / cover;}
.subpage .s-category3-6-sec1 .content .img-box{ background: url('../img/sub/s-category3-img6.jpg') no-repeat center center / cover;}
.subpage .s-category3-7-sec1 .content .img-box{ background: url('../img/sub/s-category3-img7.jpg') no-repeat center center / cover;}
.subpage .s-category3-8-sec1 .content .img-box{ background: url('../img/sub/s-category3-img8.jpg') no-repeat center center / cover;}
.subpage .s-category4-1-sec1 .content .img-box{ background: url('../img/sub/s-category4-img1.jpg') no-repeat center center / cover;}
.subpage .s-category4-2-sec1 .content .img-box{ background: url('../img/sub/s-category4-img2.jpg') no-repeat center center / cover;}
.subpage .s-category4-3-sec1 .content .img-box{ background: url('../img/sub/s-category4-img3.jpg') no-repeat center center / cover;}
.subpage .s-category4-4-sec1 .content .img-box{ background: url('../img/sub/s-category4-img4.jpg') no-repeat center center / cover;}
.subpage .s-category4-5-sec1 .content .img-box{ background: url('../img/sub/s-category4-img5.jpg') no-repeat center center / cover;}
.subpage .s-category4-6-sec1 .content .img-box{ background: url('../img/sub/s-category4-img6.jpg') no-repeat center center / cover;}
.subpage .s-category4-7-sec1 .content .img-box{ background: url('../img/sub/s-category4-img7.jpg') no-repeat center center / cover;}
.subpage .s-category4-8-sec1 .content .img-box{ background: url('../img/sub/s-category4-img8.jpg') no-repeat center center / cover;}
.subpage .s-category5-1-sec1 .content .img-box{ background: url('../img/sub/s-category5-img1.jpg') no-repeat center center / cover;}
.subpage .s-category5-2-sec1 .content .img-box{ background: url('../img/sub/s-category5-img2.jpg') no-repeat center center / cover;}
.subpage .s-category5-3-sec1 .content .img-box{ background: url('../img/sub/s-category5-img3.jpg') no-repeat center center / cover;}
.subpage .s-category5-4-sec1 .content .img-box{ background: url('../img/sub/s-category5-img4.jpg') no-repeat center center / cover;}
.subpage .s-category5-5-sec1 .content .img-box{ background: url('../img/sub/s-category5-img5.jpg') no-repeat center center / cover;}
.subpage .s-category5-6-sec1 .content .img-box{ background: url('../img/sub/s-category5-img6.jpg') no-repeat center center / cover;}
.subpage .s-category6-1-sec1 .content .img-box{ background: url('../img/sub/s-category6-img1.jpg') no-repeat center center / cover;}
.subpage .s-category6-2-sec1 .content .img-box{ background: url('../img/sub/s-category6-img2.jpg') no-repeat center center / cover;}
.subpage .s-category6-3-sec1 .content .img-box{ background: url('../img/sub/s-category6-img3.jpg') no-repeat center center / cover;}
.subpage .s-category6-4-sec1 .content .img-box{ background: url('../img/sub/s-category6-img4.jpg') no-repeat center center / cover;}
.subpage .s-category6-5-sec1 .content .img-box{ background: url('../img/sub/s-category6-img5.jpg') no-repeat center center / cover;}
.subpage .s-category6-6-sec1 .content .img-box{ background: url('../img/sub/s-category6-img6.jpg') no-repeat center center / cover;}
.subpage .s-category7-1-sec1 .content .img-box{ background: url('../img/sub/s-category7-img1.jpg') no-repeat center center / cover;}
.subpage .s-category7-2-sec1 .content .img-box{ background: url('../img/sub/s-category7-img2.jpg') no-repeat center center / cover;}
.subpage .s-category7-3-sec1 .content .img-box{ background: url('../img/sub/s-category7-img3.jpg') no-repeat center center / cover;}
.subpage .s-category7-4-sec1 .content .img-box{ background: url('../img/sub/s-category7-img4.jpg') no-repeat center center / cover;}
.subpage .s-category7-5-sec1 .content .img-box{ background: url('../img/sub/s-category7-img5.jpg') no-repeat center center / cover;}
.subpage .s-category7-6-sec1 .content .img-box{ background: url('../img/sub/s-category7-img6.jpg') no-repeat center center / cover;}
.subpage .s-category8-1-sec1 .content .img-box{ background: url('../img/sub/s-category8-img1.jpg') no-repeat center center / cover;}
.subpage .s-category8-2-sec1 .content .img-box{ background: url('../img/sub/s-category8-img2.jpg') no-repeat center center / cover;}
.subpage .s-category8-3-sec1 .content .img-box{ background: url('../img/sub/s-category8-img3.jpg') no-repeat center center / cover;}
.subpage .c-category1-1-sec1 .content .img-box{ background: url('../img/sub/c-category1-img1.jpg') no-repeat center center / cover;}
.subpage .c-category1-2-sec1 .content .img-box{ background: url('../img/sub/c-category1-img2.jpg') no-repeat center center / cover;}
.subpage .c-category1-3-sec1 .content .img-box{ background: url('../img/sub/c-category1-img3.jpg') no-repeat center center / cover;}
.subpage .c-category1-4-sec1 .content .img-box{ background: url('../img/sub/c-category1-img4.jpg') no-repeat center center / cover;}
.subpage .c-category2-1-sec1 .content .img-box{ background: url('../img/sub/c-category2-img1.jpg') no-repeat center center / cover;}
.subpage .c-category2-2-sec1 .content .img-box{ background: url('../img/sub/c-category2-img2.jpg') no-repeat center center / cover;}
.subpage .c-category2-3-sec1 .content .img-box{ background: url('../img/sub/c-category2-img3.jpg') no-repeat center center / cover;}
.subpage .c-category2-4-sec1 .content .img-box{ background: url('../img/sub/c-category2-img4.jpg') no-repeat center center / cover;}
.subpage .c-category3-1-sec1 .content .img-box{ background: url('../img/sub/c-category3-img1.jpg') no-repeat center center / cover;}
.subpage .c-category3-2-sec1 .content .img-box{ background: url('../img/sub/c-category3-img2.jpg') no-repeat center center / cover;}
.subpage.company .content > h3,
.subpage.company .content > h3 i,
.subpage.company .content h3{color: #5088FE;}
@media screen and (max-width: 1250px) {
    .subpage .link-box{width: 28%; padding: 40px 16px; border-radius: 24px;}
    .subpage .link-box h3{font-size: 22px;}
    .subpage .content{padding: 40px 20px;}
    .subpage .content h3{font-size: 20px;}
    .subpage .content h3 i{margin: 0 12px;}
    .subpage .content .img-box{height: 400px; margin: 15px 0 30px;}
    .subpage .s-category1-1-sec1 .content .text-box{padding: 20px; height: auto;}
    .subpage .desc{gap: 32px;}
    .subpage .desc .desc-item .list{margin-top: 32px;}
    .subpage .desc .desc-item .right{display: none;}
    .subpage .desc .desc-item .info > div{gap: 30px;}
}
@media screen and (min-width: 961px) {
    .subpage .link-box .dropdown-box{ min-height: auto !important; padding-top: 0 !important; margin-top: 0 !important; display: block !important; height: auto !important; }
}
@media screen and (max-width: 960px) {
    .subpage .subpage-sec1{flex-direction: column; padding: 90px 20px 50px; gap: 20px; align-items: stretch;}
    .subpage .link-box{width: 100%; padding: 20px;}
    .subpage .link-box h3{font-size: 20px; margin-bottom: 0px; display: flex; justify-content: space-between; align-items: center;}
    .subpage .link-box h3 i{display: inline-block; font-size: 18px; cursor: pointer; transition: transform 0.3s ease; flex-shrink: 0; color:var(--main-color); transform: rotate(180deg); transform-origin: center center;}
    .subpage .link-box h3 i.active{transform: rotate(0deg);}
    .subpage .link-box .dropdown-box{margin-top: 10px; display: none;}
    .subpage .link-box .dropdown-title{padding: 10px 16px;}
    .subpage .link-box .dropdown-content{padding: 12px 16px;}
    .subpage .content{width: 100%; padding: 32px 24px;}
    .subpage .content h3{font-size: 18px; word-break: keep-all;}
    .subpage .content .text-box{height: auto; padding: 10px;}
    .subpage .content .img-box{height: 320px;}
    .subpage .desc{gap: 28px;}
    .subpage .desc .desc-item .right{width: 100%; max-width: 240px; margin: 0 auto;}
    .subpage .desc .desc-item .list{margin-top: 28px;}
    .subpage .desc .desc-item h3{margin-bottom: 16px;}
    .subpage .desc .desc-item .info{grid-template-columns: 1fr;}
    .subpage .desc .desc-item .info > div{height: auto; min-height: 50px; padding: 12px 16px; gap: 20px;}
}
@media screen and (max-width: 650px) {
    .subpage .link-box h3{font-size: 18px; }
    .subpage .desc .desc-item .info{gap: 10px;}
    .subpage .desc .desc-item .info div span img{width: 20px; height: 20px; object-fit: contain;}
}
/*#########################review.html#########################*/
.boardArti .title{text-align: center; margin: 50px 0;}
.boardArti .title h1{display: inline-block; font-size: 40px; font-weight: 700; color: var(--text-green); line-height: normal; position: relative; margin-bottom: 10px;}
.boardArti .title h1::before{content: ' '; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);  width: 70%; height: 4px; background-color: var(--text-green);}
.boardArti .title p{font-size: var(--font-18px); font-weight: 500; color: #555; line-height: normal;}
.boardArti .img-box{width: 100%; height: 400px; background-size: cover; background-position: center; background-repeat: no-repeat; margin-bottom: 30px;}
.boardArti .btnBox{text-align: center; margin-top: 50px;}
.boardArti .btnBox a{display: inline-block; width: 400px; padding: 15px 0; background: #1A7575; color: #fff; font-size: var(--font-16px); font-weight: 600;}
@media screen and (max-width: 960px) {
    .boardArti .title h1{font-size: 32px;}
    .boardArti .img-box{height: 320px;}
}
@media screen and (max-width: 650px) {
    .boardArti .title{margin: 30px 0;}
    .boardArti .title h1{font-size: 24px; margin-bottom: 5px;}
    .boardArti .btnBox a{width: 100%;}
}