@charset "utf-8";

.cursor_c {
    border-radius: 100px;
    will-change: transform;
    position: absolute;
}
.cursor_c_2 {
	height: 6px;
	width: 6px;
	background: #01008C;
	z-index: 4;
}
#loading {
	position:fixed;
	top:0;
	left:0;
	z-index:16;
	background:#fff url("../images/intro_img_move.svg")no-repeat 50% 50% / 200px;
	width:100%;
	height:100%;
}
#loading .loading_img {
	margin: -50px 0 0 -50px;
	width: 100px;
	height: 100px;
	-ms-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	position: absolute;
	top: 50%;
	left: 50%;
	animation: loading_img 2s linear infinite;
}
#loading .loading_img .loading_front {
	width: 100%;
	height: 100%;
	background: #01008C url("../images/intro_img.svg")no-repeat 50% 50% / 100%;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#loading .loading_img .loading_back {
	width: 100%;
	height: 100%;
	background: #01008C url("../images/intro_img.svg")no-repeat 50% 50% / 100%;
	border-radius: 50%;
	transform: rotateY(180deg) translateZ(10px);
	-webkit-transform: rotateY(180deg) translateZ(10px);
	-ms-transform: rotateY(180deg) translateZ(10px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#loading .loading_img .loading_front_b {
	width: 100%;
	height: 100%;
	background: #01008C;
	border-radius: 50%;
	transform: translateZ(-1px);
	-webkit-transform: translateZ(-1px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#loading .loading_img .loading_back_b {
	width: 100%;
	height: 100%;
	background: #01008C;
	border-radius: 50%;
	transform: translateZ(-9px);
	-webkit-transform: translateZ(-9px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#loading .loading_img:before {
	content: "";
	margin-left: -5px;
	width: 10px;
	height: 100%;
	background: #01008C;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	-webkit-transform: rotateY(-90deg);
	-webkit-transform-origin: 100% 50%;
	transform: rotateY(-90deg);
	transform-origin: 100% 50%;
}
#loading .loading_img .loading_front_b:before {
	content: "";
	width: 100%;
	height: 100%;
	border: 10px solid #01008C;
	border-radius: 50%;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
#loading .loading_img .loading_front_b:after {
	content: "";
	padding: 12px 0 0 0;
	width: 100%;
	height: 100%;
	font-size: 5em;
	font-weight: bold;
	color: #01008C;
	line-height: 1;
	text-align: center;
	box-sizing: border-box;
	position: absolute;  
	top: 0;
	left: 0;
	z-index: 4;
}
#loading .loading_img .loading_back:before {
	content: "";
	width: 100%;
	height: 100%;
	border: 10px solid #01008C;
	border-radius: 50%;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -3;
}
#loading .loading_img .loading_back:after {
	content: "";
	padding: 27px 0 0 0;
	width: 100%;
	height: 100%;
	font-size: 3em;
	font-weight: bold;
	color: #01008C;
	line-height: 1;
	text-align: center;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -4;
}
@keyframes loading_img {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}


#wrap {
	position: relative;
}


.inner {
	position: relative;
	max-width:1290px;
	padding:0 15px;
	box-sizing: border-box;
	margin:0 auto;
}



#header {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	z-index: 16;
	padding:0 5%;
	background: #F2F2F9;
	box-sizing: border-box;
	transition:all .3s;
	font-family: 'NanumSquareRound';
}
#header .gnb {
	align-items:center;
	height: 100px;
}
#header .gnb h1 {
	font-family: 'LeferiPointBlack';
	text-transform: uppercase;
}
#header .gnb h1 a {
	color: #01008C;
	font-size: 48px;
}
#header .gnb h1 img {
	display: inline-block;
	vertical-align: -14px;
	height: 70px;
	margin-right: 10px;
}
#header .gnb .depth01 {
	position: relative;
	flex:1;
	text-align:center;
	justify-content: end;
	align-items: center;
}
#header .gnb .depth01 li a {
	position:relative;
	color: #01008C;
	font-size: 18px;
	font-weight: 700;
	padding: 0 15px;
	border-radius: 100px;
	transition: all .3s;
}
#header .gnb .depth01.on li a {
	opacity: .5;
}
#header .gnb .depth01.on li.active a {
	opacity: 1;
}
#header .menu {
	display:none;
	position: absolute;
	top: 28px;
    right: 20px;
	z-index: 12;
}
#header .menu a {
	position: relative;
    display: block;
    width: 30px;
    height: 28px;
}
#header .menu a span {
	position: absolute;
	right: 0;
	display: block;
	width: 23px;
	height: 3px;
	background: #01008C;
	border-radius: 100px;
	transition: all .3s;
}
#header .menu a span:nth-child(1) {
	top: 3px;
}
#header .menu a span:nth-child(2) {
    top: 12px;
    width: 30px;
}
#header .menu a span:nth-child(3) {
	top: 21px;
}
#header .menu.on a span:nth-child(1) {
	transform: rotate(-45deg);
	top: 15px;
	width: 30px;
}
#header .menu.on a span:nth-child(2) {
	display: none;
}
#header .menu.on a span:nth-child(3) {
	transform: rotate(45deg);
	top: 15px;
	width: 30px;
}





.side-wrap {
	width: 100%;
	max-height: 90%;
	position: fixed; 
	top: -100%;
	left: 0;
	z-index: 15;
	background: #F2F2F9;
	overflow-y: auto;
	transition: all .2s;
}
.side-wrap.on {
	top: 75px;
}
.side-wrap .depth {
	padding: 20px;
}
.side-wrap .depth li a {
    display: block;
    padding: 18px 30px;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    color: #01008C;
}
.side-wrap .depth01 {
	position: relative; 
}
.side-wrap .depth01 > a:after {
    content: '';
    position: absolute;
    top: 20px;
    transform: translateY(-50%);
    right: 0;
    display: block;
    background: url("../images/arrow-more-gray.svg")no-repeat 50% 50% / 15px;
    width: 20px;
    height: 20px;
}
.side-wrap .depth01.noChild > a:after {
	display: none;
}
.side-wrap .depth01.active .depth02 {
	max-height: 500px;  
	margin-bottom: -1px;
}
.side-wrap .depth01 > a {
	color:#666; 
	font-size:18px; 
	position: relative;
}
.side-wrap .depth02 { 
	max-height: 0; 
	overflow: hidden; 
	-webkit-transition: max-height .3s; 
	-moz-transition: max-height .3s; 
	transition: max-height .3s;
}
.side-wrap .depth01.active .depth02 .hidden {
	position: absolute;
    top: -1px;
    width: 100%;
    z-index: 2;
}
.side-wrap .depth01.active .depth02 .hidden a {
	font-size: 0;
	height: 24px;
}
.side-wrap .depth02 > li > a {
    padding-left: 30px;
    font-size: 14px;
}
.side-wrap .side-close {
	background: url("../../images/ico-close-black.png")no-repeat 50% 50% / 22px;
	width: 30px;
	height: 30px;
	text-indent: -99999px;
	position: absolute;
	top: 15px;
    left: 5%;
}
.black-bg {
	position: fixed;
	width:100%;
	height: 100%;
	left:0;
	top:0;
	z-index: 14;
	background: rgba(0,0,0,0.5);
	display: none;
}
.not_scroll {
	overflow: hidden;
}




#container {
	width: 100%;
	padding-top: 100px;
}

.title_area {
	background: #f5f5f5;
	text-align: center;
	padding: 17px 0;
	margin-bottom: 30px;
}







.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 16;
}
.modal .modal-cont {
    width: 90%;
    max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 16;
	background: #fff;
}
.modal .modal-cont .scroll {
	background: #fff;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.modal .modal-cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 20px; 
	right: 20px;
	z-index: 1;
	transform: rotate(0deg);
	transition: all .5s ease-in-out;
}
.modal .close:hover {
	transform: rotate(180deg);
}
.modal .close img {
	vertical-align: middle;
}

.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #01008C;
	color: #fff;
	padding: 100px 5% 0;
	box-sizing: border-box;
}
#footer .flex > div:first-child {
	flex: 1;
}
#footer h1 {
	font-family: 'LeferiPointBlack';
	text-transform: uppercase;
	margin-bottom: 50px;
}
#footer h1 a {
	color: #fff;
	font-size: 56px;
}
#footer h1 img {
	display: inline-block;
	vertical-align: -16px;
	height: 80px;
	margin-right: 10px;
}
#footer .btn-download a {
	width: 423px;
	height: 54px;
	line-height: 54px;
	border: 1px solid #fff;
	color: #fff;
}
#footer .info > div:first-child {
	margin-right: 60px;
}
#footer .info > div h4 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 50px;
}
#footer .info > div ul li {
	margin-bottom: 25px;
	font-size: 18px;
}
#footer .info > div ul li:last-child {
	margin-bottom: 0;
}
#footer .info > div ul li a {
	color: #fff;
}
#footer .info > div ul li.addr {
	background: url("../images/location.svg")no-repeat 0 50% / 24px;
}
#footer .info > div ul li.tel {
	background: url("../images/call-calling.svg")no-repeat 0 50% / 24px;
}
#footer .info > div ul li.mail {
	background: url("../images/sms-edit.svg")no-repeat 0 50% / 24px;
}
#footer .info > div:last-child ul li {
	padding-left: 32px;
}
#footer .copy {
	font-size: 16px;
	font-weight: 400;
	border-top: 1px solid rgba(255,255,255,0.5);
	padding: 30px 0;
	margin-top: 90px;
}





.top_btn {
	position: fixed;
	bottom: 50px;
	left: -100%;
	z-index: 5;
	transition: all 1s;
}
.top_btn.on {
	left: 95%;
}
.top_btn a {
	display: block;
	width: 50px;
	height: 50px;
	background: url("../images/top_sc.svg")no-repeat 50% 50% / 100%;
}




@media screen and (max-width: 1600px) {
	#header {
		padding: 0 2%;
	}
	
	#footer {
		padding: 70px 2% 0;
	}
}
@media screen and (max-width: 1280px) {
	#header {
		padding: 0 20px;
	}
	#header .gnb {
		height: 80px;
	}
	#header .gnb .depth01 li a {
		padding: 0 8px;
	}
	#header .gnb h1 a {
		font-size: 38px;
	}
	#header .gnb h1 img {
		height: 55px;
	}
	
	
	#container {
		padding-top: 80px;
	}
	
	
	
	#footer {
		padding: 70px 20px 0;
	}
	#footer .info > div:first-child {
		margin-right: 40px;
	}
	#footer h1 a {
		font-size: 42px;
	}
	#footer h1 img {
		height: 65px;
	}
	#footer .btn-download a {
		width: 285px;
	}
	#footer .info > div h4 {
		font-size: 22px;
		margin-bottom: 35px;
	}
	#footer .info > div ul li {
		margin-bottom: 20px;
		font-size: 16px;
	}
	#footer .copy {
		font-size: 14px;
		padding: 25px 0;
		margin-top: 45px;
	}
}
@media screen and (max-width: 1024px) {
	#header .gnb h1 a {
		font-size: 30px;
		letter-spacing: 2px;
	}
	#header .gnb h1 img {
		height: 50px;
		margin-right: 5px;
	}
	#header .gnb .depth01 {
		display: none;
	}
	#header .menu {
		display: block;
	}
	
	.cursor_c_2 {
		display: none;
	}
	
	
	
	#footer > .flex {
		display: block;
	}
	#footer > .flex > div:first-child {
		margin-bottom: 20px;
		text-align: center;
	}
	#footer h1 {
		margin-bottom: 25px;
	}
	#footer h1 a {
		font-size: 35px;
		letter-spacing: 2px;
	}
	#footer h1 img {
		height: 50px;
	}
	#footer .btn-download a {
		width: 260px;
		margin: 0 auto;
	}
	#footer .flex > div {
		flex: 1;
		text-align: left;
	}
	#footer .info {
		padding: 30px 55px 0;
	}
	#footer .info > div:first-child {
		margin-right: 20px;
	}
	
	
	.top_btn {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.modal .close {
		top: 0px;
		right: 0px;
		background: #fff;
		padding: 5px 5px 2px;
	}
	
	
	#footer .info {
		display: block;
		padding: 30px 0 0;
	}
	#footer .info > div:first-child {
		margin-right: 0;
		margin-bottom: 30px;
	}
	#footer .info > div h4 {
		font-size: 18px;
		margin-bottom: 25px;
	}
	#footer .info > div ul li {
		margin-bottom: 15px;
		font-size: 14px;
	}
	#footer .info > div:last-child ul li {
		padding-left: 25px;
		background-size: 18px!important;
	}
	#footer .btn-download a {
		width: 100%;
	}
}
@media screen and (max-width: 380px) {
	.side-wrap .s_qna span {
		margin-right: 0;
	}
	.side-wrap .s_qna a {
		display: block;
		margin-top: 5px;
	}
}