/* common */
#fullpage {height: 100%; width: 100%; position: relative; transition: transform 0.8s ease;}
.section {position: relative; height: 100vh;}
.inner {position: relative; margin: 0 auto; width: 1600px;}
h2.title {font-size: 84px; font-family: 'Poppins'; text-align: center; letter-spacing: -0.25px}

.controls button {width: 50px; height: 50px; border: 1px solid #646867; transition: all 0.3s;}
.controls .next {border-left: none;}
.controls .next img {transform: rotate(180deg) translateY(1px);}

h2.title {opacity: 0; transform: translateY(100%);}
h2.title.on {animation: textClip 2s both;}

@media (max-width: 1680px) {
    .inner {width: 90%;}
    h2.title {font-size: 78px;}
}

@media (max-width: 1360px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    h2.title {font-size: 40px;}
}

/* animation */
@keyframes visualCover {
    0% { transform: scaleX(0); opacity: 1; }
    100% { transform: scaleX(1); opacity: 0; }
}

@keyframes textBlur {
    0% {
        filter: blur(15px);
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        filter: blur(0);
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textClip {
    0% {
        opacity: 0;
        transform: translateY(100%);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes textOpacity {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes moveLeft {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes moveRight {
    0% {
        opacity: 0;
        transform: translateX(50%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

/* header */
.header {width: 100%; height: 120px; background-color: #ff7f2c; font-family: 'Poppins'; z-index: 10;}
.header .inner {display: flex; justify-content: space-between; align-items: center; width: 1680px; height: 120px;}
.header .inner .logo {padding-top: 10px;}

.header .gnb {display: flex; align-items: center;}
.header .gnb .menu {padding: 0 30px; font-size: 20px; color: #fff; cursor: pointer;}
.header .gnb .menu:hover {color: #ffefd0;}

.header .gnb .hamburger {padding: 0 0 0 30px; cursor: pointer;}
.header .gnb .hamburger .bar {display: block; width: 22px; height: 2px; background: #fff;}
.header .gnb .hamburger .bar + .bar {margin-top: 5px;}

@media (max-width: 1680px) {
    .header .inner {width: 90%;}
}

@media (max-width: 1360px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .header {height: 80px;}
    .header .inner {height: 100%;}
    .header .inner .logo {padding-top: 4px;}
    .header .inner .logo img {width: 100px;}
    .header .gnb .menu {display: none;}
}

/* main */
.main {width: 100%;}
.main .swiper {width: 100%; height: calc(100vh - 120px); overflow: hidden; box-sizing: border-box;}
.main .swiper .bg {width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.2); transition: transform 2s ease;}
.main .swiper .swiper-slide-active .bg {transform: scale(1);}
.main .swiper .swiper-slide::before, .main_swiper .swiper-slide::after {content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.5); transform: scaleX(0); opacity: 1; z-index: 2; pointer-events: none;}
.main .swiper .swiper-slide::before {transform-origin: left; }
.main .swiper .swiper-slide::after {transform-origin: right; }
.swiper-slide-active::before, .swiper-slide-active::after {animation: visualCover 1s both;}

.main .swiper .title_wrap {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%;}
.main .swiper .title_wrap .title {color: #fff; font-size: 84px; font-family: 'Poppins'; font-weight: 800; text-align: center; letter-spacing: 0;}
.main .swiper .title span {display: inline-block; filter: blur(15px); opacity: 0;}
.main .swiper .swiper-slide-active .title span {animation: textBlur 2s forwards;}
.main .swiper .title_wrap p {padding-top: 20px; font-family: 'Pretendard'; font-size: 24px; color: #fff; font-weight: 500; text-align: center; opacity: 0; transform: translateY(100%);}
.main .swiper .swiper-slide-active .title_wrap p {animation: textClip 1.5s both; animation-delay: 2.5s;}

.main .swiper-pagination-bullets.swiper-pagination-horizontal{bottom: 60px;}
.main .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {margin: 0 12px;}
.main .swiper-pagination-bullet {position: relative; opacity: 1; background-color: #fff;}
.main .swiper-pagination-bullet-active::after {content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 24px; height: 24px; border: 1px solid #fff; border-radius: 50%;}

@media (max-width: 1680px) {
    .main .swiper .title_wrap .title {font-size: 70px;}
}

@media (max-width: 1360px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .main .swiper {height: calc(100vh - 80px);}
    .main .swiper .title_wrap {width: 80%;}
    .main .swiper .title_wrap .title {font-size: 40px; line-height: 50px;}
    .main .swiper .title_wrap p {font-size: 18px;}
}

/* section1 */
.section1 {height: 100vh; text-align: center; background: url("../images/section1_bg.png") no-repeat center; background-size: contain; overflow: hidden;}
.section1 .inner{display: flex; align-items: center; justify-content: space-between; width: 1210px; height: 100%;}
.section1 .txt {opacity: 0; font-size: 24px;}
.section1 .txt.left.on {animation: moveLeft 2.5s both; animation-delay: 1s;}
.section1 .txt.right.on {animation: moveRight 2s both; animation-delay: 2s;}
.section1 .title {opacity: 0; font-size: 84px; font-family: 'Poppins'; font-weight: 800; color: #ff7f2c; letter-spacing: 0; transform: scale(0.8);}
.section1 .title.on {animation: textOpacity 2.5s both;}

@media (max-width: 1680px) {
    .section1 .inner {width: 90%;}
}

@media (max-width: 1360px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .section1 .inner {flex-direction: column; justify-content: center;}
    .section1 .title {font-size: 60px; line-height: 60px;}
    .section1 .txt {font-size: 20px;}
}

/* section2 */
.section2 {height: 100vh;}
.section2 .content {display: flex; height: 100%;}
.section2 .content > div {width: 50%;}
.section1 .title.on {animation: textOpacity 3s both;}
.section2 .content .con_l {background: url("../images/section2_left_img.png") no-repeat right center; background-size: cover;}
.section2 .content .con_r {display: flex; justify-content: center; flex-direction: column; align-items: center; background-color: #f5f5f5;}
.section2 .content .con_r .txt_wrap { text-align: right;}
.section2 .content .con_r .hanja {opacity: 0;}
.section2 .content .con_r .hanja.on {animation: textOpacity 2s both;}
.section2 .content .con_r p {color: #686868; font-size: 24px; line-height: 36px;}
.section2 .content .con_r p.title {padding: 40px 0 30px; font-family: 'Poppins'; color: #ff7f2c; font-size: 48px;}

@media (max-width: 1680px) {
    .section2 .content .con_r .hanja {width: 80%;}
    .section2 .content .con_r p {font-size: 20px; line-height: 34px;}
}

@media (max-width: 1360px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .section2 {height: auto;}
    .section2 .content {display: block;}
    .section2 .content > div {width: 100%; height: 70vh;}
    .section2 .content .con_r .txt_wrap {padding: 30px;}
    .section2 .content .con_r p.title {font-size: 36px;}
    .section2 .content .con_r p {font-size: 14px; line-height: 24px;}
}

/* section3 */
.section3 {height: 100vh; padding: 7.3394vh 0 11.9266vh; background: url("../images/section3_bg.png") no-repeat center; background-size: cover; overflow: hidden;}
.section3 .sec_title {padding-bottom: 5.5046vh; text-align: center;}
.section3 .sec_title p {font-size: 24px;}

.section3 .swiper-initialized [id*=swiper-wrapper] {display: -webkit-box; display: -ms-flexbox; display: flex; overflow: visible !important;}
.section3 .swiper-initialized [id*=swiper-wrapper] > * {display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-negative: 0; flex-shrink: 0;}

.section3 .swiper-slide-active{justify-content: end;}
.section3 .swiper-slide-active .txts{opacity: 1;  pointer-events: auto; }

.section3 .sec3_slide{position: relative; z-index: 0; width: 88rem; max-width: calc(100% - 10rem); margin-left: auto !important; margin-right: auto !important; overflow: visible; font-size: 14px;}
.section3 .sec3_slide li {position: relative; flex: 0 0 100%; padding-right: 60px; box-sizing: border-box;}
.section3 .sec3_slide li[class*=prev] {-webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse;}

.section3 .txts {position: absolute; top: 0; left: 0; min-width: 34rem; margin-left: 9rem;}

.section3 .sec3_slide .txts .bar {display: block; margin: 7vw 0 20px; width: 0; height: 4px; background-color: #008384;}
.section3 .sec3_slide .txts .title {display: block; font-family: 'Poppins'; font-size: 48px; -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0);}
.section3 .sec3_slide .txts p {position: relative; padding: 3.6697vh 0 4.5872vh; line-height: 36px; color: #686868; font-size: 24px; overflow: hidden; opacity: 0;}
.section3 .sec3_slide .info {display: flex; position: relative; top: -10px; padding-top: 30px; opacity: 0;  border-top: 1px solid #686868; }
.section3 .sec3_slide .info > div {display: flex; color: #5a5f6a; font-size: 18px;}
.section3 .sec3_slide .info img {padding: 0 15px 0 60px;}
.section3 .sec3_slide .info div:first-child img {padding-left: 0;}
.section3 .sec3_slide i {border-radius: 500px 500px 0 0; overflow: hidden;}
.section3 .sec3_slide i img {height: 58.7156vh;}

.section3 li[class*=active] .txts .bar {width: 80px; -webkit-transition: all 0.25s 0.5s; transition: all 0.25s 0.5s;}
.section3 li[class*=active] .txts .title {-webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); -webkit-transition: all 1s 1s; transition: all 1s 1s;}
.section3 li[class*=active] .txts .title + p {opacity: 1; letter-spacing: 0; -webkit-transition: all 1s 1.25s; transition: all 1s 1.25s;}
.section3 li[class*=active] .txts .info {top: 0px; opacity: 1; -webkit-transition: all 1s 2s; transition: all 1s 2s;}

.section3 .controls {display: flex; position: absolute; bottom: 0; left: 9rem;}

@media (max-width: 1680px) {

}

@media (max-width: 1360px) {
    .section3 .sec_title p {font-size: 18px;}
    .section3 .sec3_slide li {}
    .section3 .sec3_slide .txts {margin-left: 3rem}
    .section3 .sec3_slide .txts .bar {margin-bottom: 14px;}
    .section3 li[class*=active] .txts .bar {width: 44px;}
    .section3 .sec3_slide .txts .title {font-size: 34px; letter-spacing: -.5px;}
    .section3 .sec3_slide .txts p {padding: 10px 0 20px; line-height: 22px; font-size: 20px;}
    .section3 .sec3_slide .info {width: 60%;}
    .section3 .sec3_slide .info img {padding: 0 15px 0 40px;}
    .section3 .sec3_slide i img {height: 40vh;}
    .section3 .controls {left: 3rem;}
}

@media (max-width: 1024px) {
    .section3 .sec3_slide .info {width: 54%;}
    .section3 .txts {margin-left: 0;}
    .section3 .sec3_slide .txts .title {font-size: 24px; letter-spacing: -.5px;}
    .section3 .sec3_slide .txts p {padding: 10px 0 20px; line-height: 22px; font-size: 16px;}
    .section3 .sec3_slide i img {height: 28.7156vh;}
}

@media (max-width: 640px) {
    .section3 {padding-top: 13vh}
    /* .section3 {height: auto;} */
    .section3 .sec3_slide {width: 100%; max-width: none;}
    .section3 .swiper-slide-active {justify-content: center;}
    .section3 .sec3_slide li {flex: 0 0 auto; padding-right: 0;}
    .section3 .sec3_slide .txts {display: none;}
    .section3 .sec3_slide i img {max-width: 100%; height: 40vh;}
    .section3 .controls {left: 50%; transform: translateX(-50%); bottom: -120px; }
    /* .section3 .controls {top: 50%; bottom: inherit; transform: translateY(-50%); left: 0; width: 100%;}
    .section3 .controls .prev {position: absolute; top:0; left: 20px;}
    .section3 .controls .next {position: absolute; top:0; right: 20px; border-left: 1px solid #646867;} */
}

/* section4 */
.section4 {display: flex; flex-direction: column; justify-content: center; padding: 9.2593vh 0 16.6667vh; background-color: #ff7f2c;}

.section4 h2.title {padding-bottom: 5.5556vh; color: #fff;}

.section4 .sec4_swiper {position: relative;}

.section4 .sec4_slide .swiper-slide {display: flex;}
.section4 .sec4_slide .bar {display: block; width: 80px; height: 4px; background-color: #ff7f2c;}
.section4 .sec4_slide .txt_area {width: 600px;padding: 50px; background-color: #fff;}
.section4 .sec4_slide .txt_area .txt_p {margin-bottom: 34px; padding: 30px 0 90px; border-bottom: 1px solid #686868; line-height: 36px; font-size: 24px; color: #686868;}
.section4 .sec4_slide .txt_area .txt {display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 7; overflow: hidden; text-overflow: ellipsis;}
.section4 .sec4_slide .txt_area .date {}
.section4 .sec4_slide .txt_area .date img {padding-right: 15px; vertical-align: -3px;}

.section4 .controls {display: flex; position: absolute; bottom: 50px; left: 50px; z-index: 2;}

@media (max-width: 1680px) {
    .section4 .sec4_slide .swiper-slide {justify-content: center; height: 31.2500vw;}
    .section4 .sec4_slide {margin: 0; width: 100%;}
    .section4 .sec4_slide .txt_area {padding: 40px;}
    .section4 .sec4_slide .txt_area .txt_p {margin-bottom: 20px; padding: 20px 0 20px; line-height: 28px; font-size: 20px;}
    .section4 .controls {left: 40px; bottom: 30px;}
    .main_img, .img_wrap {width: 400px; height: 31.25vw; overflow: hidden;}
    .main_img img, .img_wrap img {width: 100%; height: 100%; object-fit: cover; object-position: center;}
}

@media (max-width: 1360px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 640px) {
    .section4 {height: 100vh; justify-content: flex-start; padding: 7vh 0 8vh;}
    .section4 h2.title {padding-bottom: 2vh;}
    .section4 .inner {width: 80%;}
    .section4 .sec4_slide .swiper-slide {flex-direction: column; height: auto;}
    .section4 .sec4_slide .txt_area {width: 100%; padding: 30px 24px;}
    .section4 .sec4_slide .bar {width: 54px;}
    .section4 .sec4_slide .txt_area .txt_p {line-height:24px; font-size: 16px; }
    .section4 .sec4_slide .date {font-size: 14px;}
    .section4 .sec4_slide .txt_area .date img {width: 16px; padding-right: 6px;}
    .main_img, .img_wrap {width: 100%; height: 24vh;}
    .img_wrap {display: none;}
    .section4 .controls {left: 50%; bottom: -60px; transform: translateX(-50%);}
    .section4 .controls button {border-color: #fff;}
}

/* section5 */
.section5 {display: flex; align-items: center; justify-content: center; height: calc(100vh - 380px); background: url('../images/section5_bg.png') center no-repeat; background-size: cover;}
.section5 h2.title {color: #00c5b0;}

.section5 button {display: block; margin: 40px auto 0; width: 400px; height: 80px; border: 1px solid #fff; color: #fff; font-family: 'Poppins'; font-size: 28px; transition: all 1s;}
.section5 button:hover {background-color: rgba(255,255,255,0.3);}

@media (max-width: 1680px) {

}

@media (max-width: 1360px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .section5 {height: calc(100vh - 260px);}
    .section5 button {width: 70%; height: 54px;}
}

/* footer */
footer {height: 380px; padding: 60px 0 ; background-color: #00c5b0; box-sizing: border-box;}
footer .top_footer {display: flex; justify-content: space-between;}

footer .top_footer .list_terms {display: flex;}
footer .top_footer .list_terms div, footer .top_footer .list_terms a, footer .top_footer .contact .title {color: #fff; font-weight: 700; font-size: 24px; letter-spacing: 0;}
footer .top_footer .list_terms div {padding-right: 52px;}
footer .top_footer .list_terms div:last-child {padding-right: 0;}
footer .top_footer .list_terms a:hover {opacity: 0.9;}

footer .top_footer .contact {text-align: right;}
footer .top_footer .contact .title {padding-bottom: 40px;}
footer .top_footer .contact .info {line-height: 36px; font-size: 24px; letter-spacing: 0;}

footer .bottom_footer {display: flex; justify-content: space-between; padding-top: 24px; font-size: 24px; letter-spacing: 0;}

@media (max-width: 1680px) {
    footer .top_footer .list_terms div, footer .top_footer .list_terms a, footer .top_footer .contact .title ,footer .top_footer .contact .info, footer .bottom_footer {font-size: 22px;}
    footer .top_footer .contact .info {line-height: 32px;}
}

@media (max-width: 1360px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    footer {height: 260px; padding: 40px 0;}
    footer .top_footer .list_terms div, footer .top_footer .list_terms a, footer .top_footer .contact .title, footer .top_footer .contact .info, footer .bottom_footer {font-size: 12px;}
    footer .top_footer .list_terms div {padding-right: 10px;}
    footer .top_footer .contact .info {line-height: 18px;}
}
