@charset "utf-8";
/* layout.css는 전체적인 레이아웃 스타일을 정의합니다. */

#skipToContent a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skipToContent a:focus,
#skipToContent a:active {width:200px;height:50px;background:#21272e;color:#fff;font-size:14px;font-weight:bold;text-align:center;text-decoration:none;line-height:50px}

.only-desktop-tablet {display:block;}
.only-desktop {display:block;}
.only-tablet {display:none;}
.only-mobile {display:none;}

#container {min-height: auto !important;}
.contain {max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}

/* header */
#header {position:fixed; top: 0; width:100%; background:#fff; border-bottom:1px solid #ddd; z-index:100;}
#header .contain {position:relative; display:flex; align-items:center; justify-content:space-between; height:100px; z-index:10; max-width: 1460px;}

#gnb {text-align:center; flex:1 1 auto; min-width:0; width:1%; padding-right: 61px;}
#gnb>ul {display:flex; justify-content:flex-end;}
#gnb>ul>li {position:relative; padding:0 61px;}
#gnb>ul>li>a {font-family: 'SBAggro'; position:relative; display:flex; align-items:center; flex-direction: column; justify-content:center; height:100px; color:#242424; font-size:20px; font-weight:500; letter-spacing:-.03em; line-height:1.3em; text-transform: uppercase;}
#gnb>ul>li.active>a {color: #5572b4;}
#gnb .submenu {position:absolute; left:0; width:100%; height:0; overflow:hidden; text-align:center;}
#gnb .submenu>ul {padding:25px 5px;}
#gnb .submenu>ul>li>a {display:block; padding:7px 0; color:#fff; font-size:16px; line-height:1.33em; text-transform: uppercase;}
#gnb .submenu>ul>li>a:hover {text-decoration:underline; text-underline-offset: 4px;}
.submenu-bg {display:none; position:absolute; width:100%; left:0; background:linear-gradient(to bottom, #5573b4, #41bad5); border-top:1px solid #ddd;}

#global {position: relative; height: 100%; display: flex; align-items: center; gap: 8px; font-family: 'Pretendard'; font-size: 12px; font-weight: 700; color: #fff;}
#global a {display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 100%; background: #b7b7b7;}
#global a.active {background: #41bad5;}

/* for mobile */
.btn-m-menu {display:block; position:relative; margin-left: 30px; width:30px; height:26px;}
.btn-m-menu span {position:absolute; right:0; top:50%; height:2px; margin-top:-1px; width: 20px; background:#41bad5; overflow: hidden; text-indent: -9999em;}
.btn-m-menu:before,
.btn-m-menu:after {content:" "; position:absolute; left:0; right:0; height:2px; background:#242424;}
.btn-m-menu:before {top:0;}
.btn-m-menu:after {bottom:0;}

.mobile-navigation {display:block; position:fixed; top:0; right:0; width:300px; height:100%; overflow:auto; transition:.2s linear; -ms-transform:translateX(100%); transform:translateX(100%); background:#fff; z-index:102;}
.mobile-navigation .home {display:flex; align-items:center; height:80px; padding:0 20px; color:#242424; font-size:19px; font-weight:700; line-height:1.5em;}
.mobile-navigation .home img {height: 40px;}
.mobile-navigation .nav-menu>ul {border-top:1px solid #ddd;}
.mobile-navigation .nav-menu>ul>li {border-bottom:1px solid #ddd;}
.mobile-navigation .nav-menu>ul>li>a {position:relative; padding:10px 48px 10px 20px; display:block; color:#242424; font-size:19px; font-weight:700; line-height:1.5em; text-transform: uppercase;}
.mobile-navigation .nav-menu>ul>li>a:after {content:""; position:absolute; top:50%; right:20px; transform:translateY(-75%) rotate(45deg); width:11px; height:11px; border-right:2px solid #505050; border-bottom:2px solid #505050;}
.mobile-navigation .nav-menu>ul>li.active>a {color:#fff; background:#3fbdd6}
.mobile-navigation .nav-menu>ul>li.active>a:after {transform:translateY(-35%) rotate(-135deg); border-color:#fff;}
.mobile-navigation .nav-menu .submenu {display:none; background:#f8f8f8; color:#454545; font-size:16px; font-weight:400; line-height:1.5em;}
.mobile-navigation .nav-menu .submenu ul li {border-top:1px solid #e5e5e5;}
.mobile-navigation .nav-menu .submenu ul li a {display:block; padding:12px 20px;}
.mobile-navigation .nav-menu .submenu ul li a:hover {color:#3fbdd6;}
.mobile-navigation .close {position:absolute; top:25px; right:15px; width:26px; height:26px; text-indent:-9999em; overflow:hidden;}
.mobile-navigation .close:before,
.mobile-navigation .close:after {content:" "; position:absolute; top:12px; left:0; width:100%; height:3px; background:#242424; border-radius:3px;}
.mobile-navigation .close:before {transform:rotate(45deg);}
.mobile-navigation .close:after {transform:rotate(-45deg);}
.mobile-overlay {display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:#000; opacity:0.6; z-index:101;}

html.menu-opened {overflow:hidden;}
html.menu-opened .mobile-navigation {-ms-transform:translateX(0); transform:translateX(0);}
html.menu-opened .mobile-overlay {display:block;}

@media (max-width: 1024px) {
	#header .contain {height:80px;}
	#gnb {display:none;}
	.btn-m-menu {display:block;}
	.mobile-navigation {display:block;}
}
@media (max-width: 640px) {
	.contain {padding-left:16px; padding-right:16px;}
	#header .contain {height:60px;}
	.mobile-navigation .home {height:60px;}
	.mobile-navigation .close {top:17px;}
}

/* main */
.main-visual {position:relative; overflow:hidden; text-align:center; color:#fff;}
.main-visual .item {position:relative; overflow:hidden; height:100vh;}
.main-visual .item img {position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; transition:5s; transform:scale(1.1);}
.main-visual .caption {position:absolute;  bottom:50%; left:0; width:100%; line-height:1.3em; letter-spacing:-.03em; transition:1.4s; transform:translateY(50%); font-size: 30px; font-weight: 500; text-shadow: 3px 3px 5px rgba(0,0,0,.4); transition: .3s; padding: 0 30px;}
.main-visual .caption h2 {font-family: 'SBAggro'; opacity: 0; font-weight: 700; font-size: 70px; line-height: 1em; margin-bottom: 25px;}
.main-visual .caption p {opacity: 0;}
.mv-arrows {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 1780px;}
.main-visual .slick-arrow {position:absolute; display:flex; align-items:center; color:#fff; font-size:18px; font-weight:700; border:0; z-index:50; text-indent: -9999em; overflow: hidden;  width:70px; height:70px; border-radius: 100%; border: 1px solid rgba(255,255,255,.3); transition: .2s;}
.main-visual .slick-prev {left:30px; background:url("../images/main/mv_prev.png") 50% 50% no-repeat;}
.main-visual .slick-next {right:30px; background:url("../images/main/mv_next.png") 50% 50% no-repeat;}
.main-visual .slick-arrow:hover {background-color: #41bad5; border-color: #41bad5;}
.main-visual .active .item img {transform:scale(1);}
.main-visual .slick-current .caption h2 {animation: TextUp 1s; animation-delay: .2s; animation-fill-mode: forwards;}
.main-visual .slick-current .caption p {animation: TextUp 1s; animation-delay: .5s; animation-fill-mode: forwards;}

@keyframes TextUp {
	0% {transform: translateY(25px); opacity: 0;}
	100% {transform: translateY(0); opacity: 1;}
}

.scroll {position:absolute; bottom: 20px; left:50%; transform: translateX(-50%); margin-top:25px; z-index:50; display: flex; flex-direction: column; align-items: center; font-size: 13px; letter-spacing: .05em;}
.scroll span {width: 11px; height: 14px; margin-top: 10px; background: url('../images/main/scroll_down.png') no-repeat center center; animation:1.5s scrollUpDown linear infinite;}
@keyframes scrollUpDown{
	0%,100% {transform:translateY(-5px);}
	50% {transform:translateY(10px);}
}

.main-inner {max-width: 1460px; padding: 120px 30px 0; margin: 0 auto;}
.main-tit {text-align: center; margin-bottom: 60px;}
.main-tit .tit {color: #fff; font-size: 50px; font-weight: 500; font-family: 'SBAggro'; line-height: 1em;}
.main-tit .caption {color: #fff; font-size: 15px; font-weight: 400; font-family: 'SBAggro'; margin-top: 13px;	}
.main-tit .txt {margin-top: 35px; line-height: 1.875em;}

.main-flex .main-inner {display: flex;}
.main-flex .main-tit {text-align: left; margin-bottom: 0;}
.main-flex .main-tit .tit {color: #242424;}
.main-flex .main-tit .caption {color: #686868;}
.main-flex .left-cnt {flex: 1; display: flex; flex-direction: column; justify-content: center; padding-right: 40px;}
.main-flex .right-cnt {width: 64.2857%}

.m-company-swiper {position: relative; overflow: hidden;}
.m-company-swiper .img {position: relative; width: 100%; height: 0; padding-bottom: 65%; border-radius: 40px; overflow: hidden;}
.m-company-swiper .img img {position: absolute; width: 100%; height: auto; left: 0; top: 50%; transform: translateY(-50%); max-width: 100%; min-height: 100%; object-fit: cover;}
.m-company-swiper .swiper-pagination {bottom: 40px; top: auto; height: 15px; display: flex; justify-content: center;}
.m-company-swiper .swiper-pagination-bullet {margin: 0 10px !important; width: 15px; height: 15px; background: #fff; opacity: 1;}
.m-company-swiper .swiper-pagination-bullet-active {background: #5572b4;}
.btn-m-company {display: flex; gap: 30px; text-align: center; margin-top: 35px; margin-bottom: 55px; color: #242424; font-size: 17px; font-weight: 600; line-height: 1.3em;}
.btn-company .ico {width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; background: #f8f8f8; border: 1px solid #ddd; border-radius: 100%; margin-bottom: 15px; transition: .2s;}
.btn-company:hover {color: #41bad5;}
.btn-company:hover .ico {background: linear-gradient(to bottom, #5573b4, #41bad5);}
.btn-company:hover .ico img {filter: brightness(10);}

.btn-more {display: flex; letter-spacing: -.01em; background: #41bad5; width: 170px; height: 50px; justify-content: space-between; align-items: center; padding: 10px 30px; border-radius: 25px; color: #fff; }

.main-business {background: url('../images/main/bg_mb.jpg') no-repeat center center; background-size: cover;}
.mb-cnt {display: flex; gap: 100px;}
.mb-cnt .item {flex: 1; text-align: center; color :#fff; display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 45px; border-radius: 40px; background: rgba(0,0,0,.4); padding: 70px 15px;}
.mb-cnt .item:hover {background: linear-gradient(to bottom, #5573b4, #41bad5);;}
.mb-tit {font-weight: 700; font-size: 35px; line-height: 1em; margin-bottom: 12px;}
.mb-cnt .btn-more {background: none; border: 1px solid #fff;}
.mb-cnt .btn-more img {filter: grayscale(1) brightness(10);}
.mb-cnt .item:hover .btn-more {color: #41bad5; background: #fff;}
.mb-cnt .item:hover .btn-more img {filter: none;}

.ms-items {display: flex; gap: 40px;}
.ms-items .item {border: 1px solid #ddd; border-radius: 40px; overflow: hidden;}
.ms-items .info {padding: 40px;}
.ms-items .caption {font-family: 'SBAggro'; font-size: 14px;}
.ms-tit {font-weight: 700; font-size: 28px; color: #242424; margin: 10px 0 20px;}
.ms-items .btn-more {width: 100%; justify-content: center; gap: 20px; border-radius: 0; height: 67px; font-weight: 500; font-size: 18px;}
.ms-items .item:last-child .btn-more {background: #5573b4;}
.ms-items p {line-height: 1.625em;}

.main-community {background: url('../images/main/bg_mm.jpg') no-repeat center center; background-size: cover;}
.mm-swiper {position: relative; overflow: hidden;}
.mm-swiper .swiper-container {margin: 0 -15px;}
.mm-swiper .item {display: flex; flex-direction: column; justify-content: space-between; letter-spacing: -.01em; background: #fff; border-radius: 15px; padding: 40px; margin: 0 15px;}
.mm-swiper .tag {font-weight: 600; font-size: 15px;}
.mm-swiper .tit {margin: 10px 0 20px; font-weight: 600; font-size: 20px; color: #242424; overflow: hidden; white-space: normal; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; word-break: keep-all;}
.mm-swiper .txt {line-height: 1.625em; overflow: hidden; white-space: normal; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; word-break: keep-all;}
.mm-swiper .date {margin-top: 40px; color: #686868;}

.mm-arrows {position: relative; width: 100%; display: flex; justify-content: center; gap: 30px; margin-top: 70px;}
.mm-arrows > div {position: relative; left: auto; right: auto; top: auto; bottom: auto; width: 50px; height: 50px; border-radius: 100%; overflow: hidden; text-indent: -9999em; transition: .2s;}
.mm-arrows .swiper-button-prev {background: url('../images/main/mm_prev.png') no-repeat center center;}
.mm-arrows .swiper-button-prev:hover {background: url('../images/main/mm_prev_on.png') no-repeat center center;}
.mm-arrows .swiper-button-next {background: url('../images/main/mm_next.png') no-repeat center center;}
.mm-arrows .swiper-button-next:hover {background: url('../images/main/mm_next_on.png') no-repeat center center;}

#main .section {position: relative;}
#main-menu {position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;}
#main-menu li {position: relative; padding-left: 50px; color: #cfd1d7; font-weight: 500; font-size: 15px; margin-bottom: 10px;}
#main-menu li:last-child {margin-bottom: 0;}
#main-menu li a {position: relative; padding-left: 25px;}
#main-menu li a:before {position: absolute; content: ''; width: 10px; height: 10px; border-radius: 100%; background: #cfd1d7; left: 0; top: 50%; margin-top: -5px; margin-left: -5px; }
#main-menu li.active a {color:#0f1836;}
#main-menu li.active a:before {background: #0f1836; }
#main-menu li.active a:after {position: absolute; content: ''; width: 30px; height: 30px; border-radius: 100%; left: 0; top: 50%; border: 1px solid #0f1836; margin-left: -15px; margin-top: -15px;}
#main-menu li.active:before {position: absolute; content: ''; width: 55px; height: 1px; background: #0f1836; left: 0; top: 50%;}

#main-menu.color li {color: #a9acb7;}
#main-menu.color li a:before {background: #a9acb7;}
#main-menu.color li.active a:before {background: #0f1836;}

#community #main-menu li a:before{opacity:.2;}
#community #main-menu li.active a {opacity: 1; color: #41bad5;}
#community #main-menu li.active a:after {border-color: #41bad5;}
#community #main-menu li.active a:before, #community #main-menu li.active:before {background: #41bad5; opacity: 1;}

/* sub */
.sub-visual {position:relative; height:300px; color:#fff; text-align:center; overflow:hidden; background:#333; margin-top: 100px;}
.sub-visual .bg {position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden; transition:2s; opacity:0; transform:scale(1.1); background-repeat:no-repeat; background-position:50% 0; background-size:cover;}
.sub-visual .inner {position:absolute; top:50%; left:0; width:100%; transform:translateY(-50%); text-shadow: 3px 3px 5px rgba(0,0,0,.4);}
.sub-visual h2 {font-family: 'SBAggro'; font-size:50px; font-weight:700; line-height:1em; letter-spacing:-.03em; margin-bottom: 10px;}
.sub-visual .bg1 {background-image:url("../images/common/sv1.jpg");}
.sub-visual .bg2 {background-image:url("../images/common/sv2.jpg");}
.sub-visual .bg3 {background-image:url("../images/common/sv3.jpg");}
.sub-visual .bg4 {background-image:url("../images/common/sv4.jpg");}
.sub-visual.none-lnb .inner {padding:0;}
.loaded .sub-visual .bg {transform:scale(1); opacity:1;}

.lnb-wrap {position:relative;text-align:center;}
.lnb {margin:0 auto; max-width:1200px;}
.lnb ul {justify-content:flex-start;}
.lnb ul li {flex: 1;}
.lnb ul li a {position: relative; display:flex; align-items:center; justify-content:center; width:100%; height:60px; padding:0 15px; color:#fff; font-size:18px; font-weight:600; line-height:1.2em; letter-spacing:-.03em; background: #0f1836; text-transform: uppercase;}
.lnb ul li.active a {background: #3fbdd6;}

.subtab {margin: -20px 0 30px;}
.subtab ul{display: flex; gap: 20px; justify-content: center;}
.subtab ul li a {display: flex; align-items: center; justify-content: center; width: 140px; height: 45px; border-radius: 22px; color: #5573b4; border: 1px solid #5573b4;}
.subtab ul li.active a {color :#fff; background: #5573b4;}

.sub-title {padding-top: 100px; padding-bottom: 60px; max-width: 1260px; margin: 0 auto; font-family: 'SBAggro'; text-align: center; color: #686868; font-size: 15px; font-weight: 300;}
#contArea.wide .sub-title {padding-left: 30px; padding-right: 30px;}
.sub-title h2 {font-size: 35px; line-height: 1em; margin-bottom: 10px; color: #242424; font-weight: 500; text-transform: uppercase;}

#contArea {max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}
#contArea.wide {max-width:100%; padding:0;}

.real-cont {padding-bottom:100px;}
.ico img {vertical-align: middle; margin-top: -.02em;}
.point1 {color: #40bcd6 !important;}
.point2 {color: #5573b4 !important;}

/* footer */
#footer {background: #282828; padding: 45px 0; font-weight: 300; font-size: 14px; letter-spacing: 0; color:#c8c8c8; line-height: 1.7142em;}
#footer .contain {max-width: 1460px;}
.f-top {display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;}
.f-top .pop_terms {display: flex; gap: 8px; align-items: center; font-weight: 400; font-size: 15px;}
.f-info address span {font-style: normal; position: relative; padding-left: 15px; margin-left: 15px;}
.f-info address span:first-child {padding-left: 0; margin-left: 0;}
.f-info address span:not(:first-child):before {position: absolute; content: ''; width: 1px; height: 10px; left: 0; top: 50%; margin-top: -5px; background: rgba(255,255,255,.3);}
.copyright span {font-weight: 300; font-size: 12px; color: #5a5a5a;}
.scroll-top {z-index:20;position: fixed; width: 60px; height: 60px; background: url('../images/common/scroll_top.png') no-repeat center center; background-size: contain; right: 20px; bottom: 20px;}

