@charset "UTF-8"; .tt { text-transform: uppercase; } 
.nanum { font-family: 'NanumSquare'; } 

#loading { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 9999; display: flex; justify-content: center; align-items: center; } 
.spinner { border: 4px solid #eee; border-top: 4px solid #00a1ed; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; } 
@keyframes spin { 
 0% { transform: rotate(0deg); } 
 100% { transform: rotate(360deg); } 
 }


header { position:fixed; top:0; left:0; width:100%; background-color: #fff; z-index: 30; } 
header.roll { background-color: rgba(255, 255, 255, 0.7); } 
header .h-container { display:flex; align-items: center; justify-content: space-between; padding:0 80px; } 
header .h-container .logo-box { width: 145px; } 
header .h-container .logo-box a { display: block; } 
header .h-container>.lang-box { position: fixed; left: 260px; } 
header .h-container>.lang-box a { display: inline-block; vertical-align: middle; font-size: 20px; padding: 0 8px; border: 1px solid #00a1ed; border-radius: 20px; line-height: 38px; padding: 0 13px; margin-right: 8px; color: #00a1ed; text-transform: uppercase; } 
header .h-container>.lang-box a.on { color: #fff; font-weight: 800; background-color: #00a1ed; } 
header>.h-container>nav>ul { display:flex; align-items: center; } 
header>.h-container>nav>ul>li { margin:0 20px; } 
header>.h-container>nav>ul>li> a { display:block; font-size: 24px; font-weight: 500; padding: 35px 10px; } 
header>.h-container>nav>ul>li> a:hover { color: #00a1ed; } 
header>.h-container>nav>ul>li>h3 { font-size: 24px; font-weight: 500; padding: 35px 10px; cursor: pointer; } 
header>.h-container>nav>ul>li>h3:hover { color: #00a1ed; } 
header>.h-container .inquiry-link a { display: block; font-size: 24px; font-weight: bold; } 
header>.h-container>nav>ul>li > .depth02-nav { display:none; position: absolute; width: 100%; left: 0; top: 106px; background-color: #fff; border-top: 1px solid #ccc; } 
/*header>.h-container>nav>ul>li:hover .depth02-nav { display: block; } */
header>.h-container>nav>ul>li>.depth02-nav>ul { display: flex; padding-left: 15%; } 
header>.h-container>nav>ul>li>.depth02-nav>ul>li { margin: 0 10px; position: relative; } 
header>.h-container>nav>ul>li>.depth02-nav>ul>li>a { display: block; font-size: 18px; padding: 28px 25px; position: relative; } 
header>.h-container>nav>ul>li>.depth02-nav>ul>li>a:hover { color: #00a1ed; } 
header>.h-container>nav>ul>li>.depth02-nav>ul>li>h3 { display: block; font-size: 18px; padding: 28px 25px; position: relative; cursor: pointer; } 
header>.h-container>nav>ul>li>.depth02-nav>ul>li>h3:hover { color: #00a1ed; } 
/*.depth02-nav>ul>li:hover .depth03-nav { display: block; } */
.depth03-nav { display:none; position: fixed; width: 100%; left: 0; top: 190px; background-color: #fff; padding-left: 16%; padding-top: 25px; padding-bottom: 25px; border-top: 1px solid #ccc; } 
.depth03-nav>ul { display: flex } 
.depth03-nav>ul>li>a { font-size: 16px; padding: 0 15px; } 
.depth03-nav>ul>li>a:hover { color: #00a1ed; } 

.header-dim { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } 


/* index */
.main-section01 { position: relative; } 
.main-section01:before { content: ''; display: block; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.45); position: absolute; left: 0; top: 0; z-index: 1; } 
.main-section01.active:before { animation: main01_ani 1s linear forwards; } 
.main-section01 .bg img { width: 100%; } 

@keyframes main01_ani { 
 0% { width:100%; } 
 100% { width:50%; } 
 }
.main-section01 .txt-box { z-index: 2; width: 50%; height: 100%; position: absolute; left: 0; top: 0; /*background-color: rgba(255, 255, 255, 0.45); */ display: flex; align-items: center; flex-direction: column; justify-content: center; } 
.main-section01 .txt-box .inner { } 
.main-section01 .txt-box h2 { font-size: 90px; font-weight: 900; line-height: 1; margin-bottom: 50px; transform: translateY(30px); } 
.main-section01.active .txt-box h2 { animation: main01_ani_02 linear 0.2s forwards; animation-delay: 0.2s; } 
.main-section01 .txt-box p { font-size:24px; transform: translateY(30px); } 
.main-section01.active .txt-box p { animation: main01_ani_02 linear 0.4s forwards; animation-delay: 0.4s; } 
.main-section01 .txt-box .main-btn { margin-top: 90px; transform:translateY(30px); } 
.main-section01.active .txt-box .main-btn { animation: main01_ani_02 linear 0.4s forwards; animation-delay: 0.6s; } 
.main-btn { width: 352px; height: 90px; border-radius: 45px; background: #00a1ed; transition: .2s ease-in-out; } 
.main-btn a { display: block; font-size: 26px; font-weight: 800; color:#fff; text-align: center; line-height: 90px; position: relative; transition: .2s ease-in-out; } 
.main-btn:hover { box-shadow: 0 0 10px 0 #00a1ed inset, 0 0 10px 4px #00a1ed; background-color: #004364; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); transition: .2s ease-in-out; } 
.main-btn:hover a { color: #ffffff; transition: .2s ease-in-out; } 

@keyframes main01_ani_02 { 
 0% { transform: translateY(30px) } 
100% { transform: translateY(0px) } 
 }
@keyframes jelly { 25% { transform: scale(0.9, 1.1) } 
 50% { transform: scale(1.1, 0.9) } 
 75% { transform: scale(1, 1) } 
 }

.main-section02 { padding:110px 0 110px 360px; } 
.main-section02 .title-box { margin-bottom: 40px; } 
.main-section02 .title-box h2 { font-size: 42px; font-weight: 900; } 
.main-section05 .title-box h2 { font-size: 42px; font-weight: 900; } 
.main-section02 .main02-slide { overflow: hidden; } 
.main-section02 .main02-slide .swiper-wrapper { transition-timing-function: linear !important; } 
.main-section02 .main02-slide .swiper-slide { width:25%; margin-right:40px; position: relative; } 
.main-section02 .main02-slide .swiper-slide a { display: block; } 
.main-section02 .main02-slide .swiper-slide h3 { width: 100%; font-size: 31px; font-weight: 800; color: #fff; line-height: 1.13; position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%); text-align: center; z-index: 3; } 
.main-section03 { position: relative; width: 100%; height: 0; padding-bottom: 27.851%; } 
.main-section03 .bg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-repeat: no-repeat; background-size: cover; background-position: center center } 
.main-section03 .txt-box { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; text-align: center; } 
.main-section03 .txt-box h3 { font-size: 42px; font-weight: bold; color: #fff; margin-bottom: 20px; } 
.main-section03 .txt-box p { font-size: 42px; font-weight: bold; color: #fff; margin-bottom: 85px; } 
.main-section03 .txt-box .main-btn { margin: 0 auto; } 
.main-section04 .main04-slide { position: relative; overflow: hidden; } 
.main-section04 .main04-slide .swiper-slide .img-box { width: 50%; } 
.main-section04 .main04-slide .swiper-slide .txt-box { width: 50%; display: flex; align-items: center; padding: 0 70px; transform: translateX(10%); opacity: 0; } 
.main-section04 .main04-slide .swiper-slide-active .txt-box { transform: translateX(0); opacity: 1; transition: .5s; transition-delay: 1s; transition-timing-function: cubic-bezier(.47,0,.745,.715);}
.main-section04 .main04-slide .swiper-slide .txt-box span { display:inline-block; font-size: 18px; color: #00a1ed; margin-bottom: 70px; } 
.main-section04 .main04-slide .swiper-slide .txt-box h3 { font-size: 45px; font-weight: bold; line-height: 1.11; margin-bottom: 50px; } 
.main-section04 .main04-slide .swiper-slide .txt-box p { font-size: 20px; } 
.main-section04 .main04-slide .nav-box { width: 100%; max-width: 1186px; height: 131px; margin: 0 auto; position: absolute; bottom: 0; left: 50%; z-index: 2; transform: translateX(-50%); } 
.main-section04 .main04-slide .nav-box .arrow { width: 131px; height: 100%; position: absolute; bottom: 0; cursor: pointer; } 
.main-section04 .main04-slide .nav-box .prev-btn { left: 0; } 
.main-section04 .main04-slide .nav-box .next-btn { right: 0; } 
.main-section05 { padding:110px 0; } 
.main-section05 .title-box h2 { font-size: 42px; font-weight: bold; line-height: 1.27; margin-bottom: 20px; } 
.main-section05 .title-box p { font-size: 20px; } 
.main-section05 .txt-box { margin-top: 60px; } 
.main-section05 .txt-box .box { width: calc((100% - 90px) / 4); height:455px; margin-right: 30px; background-color: #f0f0f0; padding: 30px; } 
.main-section05 .txt-box .box:nth-child(2n) { margin-top: 80px; } 
.main-section05 .txt-box .box:last-child { margin-right: 0; } 
.main-section05 .txt-box .box span { display: block; } 
.main-section05 .txt-box .box span.text01 { font-size: 18px; line-height: 1; margin-bottom: 5px; } 
.main-section05 .txt-box .box span.text02 { font-size: 40px; font-weight: bold; margin-bottom: 10px; } 
.main-section05 .txt-box .box span.text03 { font-size: 14px; color: rgba(15, 15, 15, 0.52); margin-bottom: 30px; } 
.main-section05 .txt-box .box h3 { font-size: 28px; line-height: 1.22; margin-bottom: 15px; } 
.main-section05 .txt-box .box p { font-size: 18px; } 
.main-section05 .txt-box .box .line { width: 100%; height: 1px; background-color: #707070; margin: 10px 0; } 
.main-section05 .txt-box .box .btn-box { background-color: #00a1ed; border-radius: 30px; height: 62px; margin-top: 100px; } 
.main-section05 .txt-box .box .btn-box a { display: block; line-height: 62px; text-align: center; font-size: 21px; font-weight: bold; color:#fff; } 

/*
.main-popup { display: none; position: fixed; top: 160px; right: 300px; z-index: 500; } 
*/

.main-popup { position: fixed; top: 160px; z-index: 500; } 
.main-popup .inner a { display: block; } 
.main-popup .inner .img-box { width: 500px; height: 600px; background-color: #fff; } 
.main-popup .inner .img-box img { height: 100%; width: 100%; object-fit: contain; } 
.main-popup .close-btn { background-color: #000; padding: 10px 30px; cursor: pointer; } 
.main-popup .close-btn span { display: block; font-size: 18px; color: #fff; text-align: right; } 


.hidden-pc { display:none; } 
.ham-btn { display:none; } 
.ham-menu { display:none; } 

@media all and (max-width : 1680px){
 .pc_br { display:none; } 
 header>.h-container>nav>ul>li { margin: 0 10px; } 
header>.h-container>nav>ul>li> a, header>.h-container>nav>ul>li>h3 { font-size: 22px; } 
header>.h-container>nav>ul>li > .depth02-nav { top: 103px; } 
.depth03-nav { top: 187px; } 

 .main-section01 .txt-box h2 { font-size: 76px; margin-bottom: 30px; } 
 .main-section01 .txt-box p { font-size: 20px; } 
 .main-section01 .txt-box .main-btn { margin-top: 50px; } 
 .main-btn { width: 320px; height: 80px; } 
 .main-btn a { font-size: 24px; line-height: 80px; } 
 }

@media all and (max-width : 1500px) { header .h-container nav { padding-left: 12%; } 
 header .h-container nav ul li a, header>.h-container>nav>ul>li>h3 { font-size: 18px; } 
 header .h-container .inquiry-link a { font-size: 18px; } 
 .main-section03 .txt-box h3 { font-size: 38px; } 
 .main-section03 .txt-box p { font-size: 36px; margin-bottom: 25px; } 
 }

@media all and (max-width : 1200px) { header .h-container { padding: 0 30px; } 
 header .h-container .logo-box { width: 100px; } 
 header .h-container>.lang-box { left: 160px; } 
 header .h-container>.lang-box a { font-size: 16px; line-height: 32px; } 
 .main-section01 .txt-box .inner { padding-left: 30px; } 
.main-section01 .txt-box h2 { font-size: 36px; margin-bottom: 30px; } 
.main-section01 .txt-box p { font-size: 16px; } 
.main-section01 .txt-box .main-btn { margin-top: 20px; } 
.main-btn { width: 220px; height: 60px; } 
.main-btn a { font-size: 18px; line-height: 60px; } 
.main-section02 { padding: 80px 0 80px 140px; } 
.main-section02 .title-box { margin-bottom: 10px; } 
.main-section02 .title-box h2 { font-size: 45px; } 
.main-section05 .title-box h2 { font-size: 45px; } 
.main-section04 .main04-slide .swiper-slide .txt-box span { font-size: 18px; margin-bottom: 20px; } 
.main-section04 .main04-slide .swiper-slide .txt-box h3 { font-size: 35px; margin-bottom: 30px; } 
 .main-section04 .main04-slide .swiper-slide .txt-box p { font-size: 16px; } 
 .main-section04 .main04-slide .nav-box { max-width: 85%; height: 80px; } 
 .main-section04 .main04-slide .nav-box .arrow { width: 80px; } 
 .main-section04 .main04-slide .nav-box .arrow svg { display: block; width: 100%; height: 100%; } 
 .main-section05 .txt-box .box { width: calc((100% - 30px) / 2); } 
 .main-section05 .txt-box .box:nth-child(2n) { margin-right: 0; } 
 .main-section05 .txt-box .box:nth-child(3) { margin-top: -40px; } 
 .main-section05 .txt-box .box:nth-child(4) { margin-top: 40px; } 
 }

@media all and (max-width : 991px) { header .h-container { padding: 20px 30px; } 
 header .h-container .logo-box { width: 120px; } 
 header .h-container>.lang-box { display:none; } 
 header .h-container nav { display:none; } 
 header .h-container .inquiry-link { padding-right: 80px; } 
 .ham-btn { display: block; width:50px; height:50px; position:fixed; right:30px; z-index: 30; } 
 .ham-btn img { display: block; width: 100%; height: 100%; } 
 .ham-menu { display: block; position: fixed; top: 0; right: 0; z-index: 20; transform: translateX(120%); transition: 0.3s; width: 100%; height: 100vh; background-color: #fff; padding: 100px 30px; padding-bottom: 100px; overflow-x: hidden; overflow-y: auto; } 
 .ham-menu.active { transform: translateX(0%); transition: 0.3s; } 
 .ham-menu .lang-box { text-align: center; } 
.ham-menu .lang-box a { display: inline-block; vertical-align: middle; font-size: 18px; margin-right: 10px; border: 1px solid #00a1ed; border-radius: 20px; padding: 0 20px; color: #00a1ed; width: 85px; text-align: center; line-height: 35px; } 
.ham-menu .lang-box a:last-child { margin-right: 0; } 
.ham-menu .lang-box a.on { background-color: #00a1ed; color: #fff; } 
.ham-menu>ul { margin-top: 60px; } 
.ham-menu>ul>li { margin-bottom: 20px; } 
.ham-menu>ul>li>a { display: block; font-size: 28px; font-weight: 500; text-align: center; } 
.ham-menu>ul>li .depth02-nav { display:none; text-align: center; margin-top: 10px; } 
.ham-menu>ul>li .depth02-nav li a { display: block; font-size: 18px; padding: 3px 0; color: #333; } 

 .main-section01 .txt-box { justify-content: flex-end; padding-bottom: 50px; } 
 .main-section02 .main02-slide .swiper-slide { width: 42%; } 
 .main-section03 { padding-bottom: 38%; } 
 .main-section04 .main04-slide .nav-box .next-btn { right: initial; left: 90px; } 

 .main-popup { width: 80vw; top: 120px !important; right: 50%; transform: translateX(50%); left: initial !important; } 
 .main-popup .inner .img-box { width: auto; height: auto; } 
}

@media all and (max-width : 767px){
 .hidden-pc { display:block; } 
 .hidden-xs { display:none; } 
 .main-section01 .txt-box { width: 100%; } 
 .main-section01.active:before { animation:none; } 
 .main-section01 .txt-box { padding-bottom: 30px; } 
 .main-section01 .txt-box .inner { width: 100%; padding-left: 30px; padding-right: 30px; } 
 .main-section01 .bg img { height: 380px; object-fit: cover; } 
 .main-section02 { padding: 80px 30px; } 
.main-section02 .title-box h2 { font-size: 35px; } 
.main-section05 .title-box h2 { font-size: 35px; } 
.main-section02 .main02-slide .swiper-slide { width: 100%; } 
.main-section03 .txt-box h3 { font-size: 28px; margin-bottom: 0; } 
.main-section03 .txt-box p { font-size: 26px; margin-bottom: 10px; } 
.main-section04 .main04-slide .swiper-slide .img-box { width: 100%; } 
.main-section04 .main04-slide .swiper-slide .txt-box { width: 100%; padding: 60px 30px; } 
.main-section04 .main04-slide .nav-box { max-width: 100%; height: 50px; position: relative; transform: none; left: 0; margin: 0 30px; } 
.main-section04 .main04-slide .nav-box .arrow { width: 50px; } 
.main-section04 .main04-slide .nav-box .next-btn { right: initial; left: 60px; } 
.main-section05 .title-box p { font-size: 16px; } 
}

@media all and (max-width : 640px) { header .h-container { padding: 20px; } 
header .h-container .logo-box { width: 80px; } 
header .h-container .inquiry-link { padding-right: 60px; } 
.ham-btn { width: 35px; height: 35px; right:20px; } 
.ham-menu { padding: 100px 20px; } 

 .main-section02 .title-box h2 { font-size: 21px; } 
 .main-section05 .title-box h2 { font-size: 21px; } 
 .main-section02 .main02-slide .swiper-slide h3 { font-size: 18px; bottom: 30px; } 
 .main-section03 { padding-bottom: 0; height: 220px; } 
.main-section03 .txt-box h3 { font-size: 20px; margin-bottom: 0; } 
.main-section03 .txt-box p { font-size: 16px; margin-bottom: 20px; } 
.main-section05 .txt-box .box { width: 100%; margin-right: 0; } 
.main-section05 .txt-box .box:nth-child(2n) { margin-top: 30px; } 
.main-section05 .txt-box .box:nth-child(3) { margin-top: 30px; } 
.main-section05 .txt-box .box:nth-child(4) { margin-top: 30px; } 
 }