@charset "utf-8";

#container { 
	width: 100%;
	padding-top: 0;
}

/*───────────────────────────────────────────────────────────
    메인
───────────────────────────────────────────────────────────*/
/* 인트로 */
#intro {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 1s ease;
}

#intro.fade-out {
	opacity: 0;
	pointer-events: none;
}

#introLogo {
	width: auto;
	height: auto;
	filter: blur(10px);
	opacity: 0;
	transition: filter 1.3s ease, opacity 1.3s ease;
	transition-delay: 0.5s;
}

#introLogo.show {
	filter: blur(0);
	opacity: 1;
}



#main {

}

/* 메인 슬라이더 */
#visual {
	position: relative;
	overflow: hidden;
}

#visual .swiper-slide img {
	width: 100%;
	transform: scale(1.1);
	transition: transform 1s ease;
}

#visual .swiper-slide-active img {
	transform: scale(1);
}


@keyframes zoomFadeIn {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}


#visual .swiper-pagination {
	bottom: 30px;
}

#visual .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background: #6f6f6f;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	transition: all ease 0.2s 0s;
	opacity: 1;
}

#visual .swiper-pagination-bullet-active {
	background: #fff;
}

/* 내용 */
#main .txt {
	padding: 170px 0;
	text-align: center;
}


/*───────────────────────────────────────────────────────────
    메인 헤더
───────────────────────────────────────────────────────────*/
.mainBody #header,
.mainBody #m_hd {
	border-bottom: 0;
	background-color: transparent;
}

.mainBody #header.fixUp:before {
	transform: translateY(0);
}

.mainBody #header .topArea h1 a {
	background: url(../img/logo_wt.png) no-repeat 0 0;
}

.mainBody #header .top_login li a {
	color: #fff;
}

.mainBody #header .top_login li + li:before {
	background: #fff;
}

.mainBody #header.fixUp .top_login li a,
.mainBody #header.hover .top_login li a {
	color: #000;
}

.mainBody #header.fixUp .top_login li + li:before,
.mainBody #header.hover .top_login li + li:before {
	background: #dadada;
}


.mainBody .top_login li + li::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
	width: 1px;
	height: 12px;
	background: #fff;
	z-index: 1;
}

.mainBody #header.fixUp .top_login li + li::after,
.mainBody #header.hover .top_login li + li::after {
	background: #dadada;
}

/*───────────────────────────────────────────────────────────
    메인 메뉴
───────────────────────────────────────────────────────────*/
#header #gnb_1dul a {
    color: #fff;
}

