@charset "utf-8";

/* ==================================================
	RESET
================================================== */
html {
	overflow: hidden;
	overflow-y: auto;
}

/* ==================================================
	NAVI
================================================== */
.layout {
	position: relative;
	max-width: 128rem;
	margin: 0 auto;
}

#header .layout {
	max-width: 100%;
}

body.on {
	overflow: hidden !important;
}

body.active {
	overflow: hidden !important;
}

body.ov {
	overflow: hidden !important;
	/*height: 100% !important;*/
}

body.ov #header {
	background: #fff !important;
}

body.ov #header .layout #gnb_wrap .logo a {
	background-image: url('../images/menu/logo.svg') !important;
}

/* 모바일css */
@media screen and (max-width:1280px) {
	.layout {
		padding: 0 20px;
	}
}

/* ==================================================
	검정배경
================================================== */
.blind {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	z-index: 10;
}

body.on .blind {
	display: block !important;
	opacity: .5;
}

body.active .blind {
	display: block !important;
	opacity: .5;
}

body.ov .blind {
	display: block !important;
	opacity: .5;
}

/* ==================================================
	헤더
================================================== */
#header {
	position: fixed;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #d8d8d8;
	height: 8rem;
	z-index: 101;
	left: 0;
	top: 0;
}

/* #header:before { width:0; height: 1px; position: absolute; left:50%; bottom:0; transform: translateX(-50%); opacity: 0; background: #ddd; transition: all .6s; content:""; }  */
#header.scrolled {
	position: fixed !important;
	width: 100%;
	animation: slide-down 0.6s;
	box-shadow: 0 .5rem 1.5rem rgba(58, 109, 161, 0.05);
	background: #fff !important;
}

#header.scrolled .layout #gnb_wrap .logo a {
	background-image: url('../images/menu/logo.svg') !important;
}

/* #header.scrolled:before { opacity: 1; width: 100%; }  */
#header .layout {
	height: 100%;
}

#header .layout #gnb_wrap {
	height: 100%;
	position: relative;
}

#header .layout #gnb_wrap .logo {
	position: absolute;
	top: 50%;
	left: 5rem;
	transform: translateY(-50%);
	margin: 0;
	padding: 0;
}

#header .layout #gnb_wrap .logo a {
	display: block;
	width: 26rem;
	height: 4.6rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('../images/menu/logo.svg');
}

#header .layout #gnb_wrap .logo a img {
	display: block;
}

#header .layout #gnb_wrap #gnb {
	z-index: 2;
	margin: 0 auto;
	text-align: center;
	max-width: 900px;
}

#header .layout #gnb_wrap #gnb>ul {
	display: table;
	width: 100%;
}

#header .layout #gnb_wrap #gnb>ul>li {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	padding: 0 1rem;
}

#header .layout #gnb_wrap #gnb>ul>li>a {
	display: block;
	text-align: center;
	height: 8rem;
	line-height: 8rem;
	position: relative;
}

#header .layout #gnb_wrap #gnb>ul>li>a[target="_blank"]>span:after {
	display: inline-block;
	content: "\e980";
	font-family: "xeicon";
	margin-left: .5rem;
	font-size: 2rem;
	vertical-align: -.2rem;
}

#header .layout #gnb_wrap #gnb>ul>li>a>span {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	line-height: 100%;
	font-weight: 600;
	color: #000;
	transition: all .5s;
	font-size: 2rem;
}

#header .layout #gnb_wrap #gnb>ul>li>a:hover>span,
#header .layout #gnb_wrap #gnb>ul>li>a.on>span {
	color: #005baa;
}

#header .layout #gnb_wrap #gnb>ul>li>a.on:before {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	bottom: 0;
	left: 0;
	position: absolute;
	background: #005aab;
}

#header .layout #gnb_wrap #gnb>ul>li>a>span:before {
	width: 0;
	height: 2px;
	display: block;
	content: "";
	position: absolute;
	left: 50%;
	bottom: -.5rem;
	content: "";
	opacity: 0;
	transition: all .5s ease;
	background: #111;
	transform: translateX(-50%);
	display: none;
}

#header .layout #gnb_wrap #gnb>ul>li>a:hover>span:before {
	width: 100%;
	opacity: 1;
}

/* 모바일css */
@media screen and (max-width:1920px) {
	#header .layout #gnb_wrap .logo {
		left: 3rem;
	}
}

@media screen and (max-width:1280px) {
	#header .layout #gnb_wrap {
		padding: 0 15rem 0 35rem;
	}

	#header .layout #gnb_wrap #gnb {
		max-width: 100%;
	}

	#header .layout #gnb_wrap #gnb>ul>li {
		padding: 0 3rem
	}

	#header .layout #gnb_wrap .logo {
		left: 0;
	}
}

@media screen and (max-width:1023px) {
	#header .layout #gnb_wrap #gnb>ul>li {
		padding: 0 2rem
	}
}

@media screen and (max-width:800px) {
	#header .layout #gnb_wrap {
		padding: 0;
	}

	#header .layout #gnb_wrap #gnb {
		display: none !important;
	}
}

/* ==================================================
	모바일/전체메뉴 버튼
================================================== */
#header .all_menu {
	position: absolute;
	height: 5rem;
	width: 5rem;
	top: 50%;
	right: 5rem;
	transform: translateY(-50%);
	background: #005BAA;
	border-radius: 50%;
}

#header .all_menu .icon {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: 0;
}

@keyframes smallbig {

	0%,
	100% {
		-webkit-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
		-o-transform: translate(-50%, -50%) scale(1);
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		-webkit-transform: translate(-50%, -50%) scale(0);
		-ms-transform: translate(-50%, -50%) scale(0);
		-o-transform: translate(-50%, -50%) scale(0);
		transform: translate(-50%, -50%) scale(0);
	}
}

.all_menu.on .icon {
	animation: smallbig 0.6s forwards;
}

.all_menu.on .icon .line {
	position: relative;
}

.all_menu.on .icon .line:nth-child(1),
.all_menu.on .icon .line:nth-child(2) {
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.all_menu.on .icon .line:nth-child(1) {
	-webkit-transform: translateY(.35rem) rotate(45deg);
	-ms-transform: translateY(.35rem) rotate(45deg);
	-o-transform: translateY(.35rem) rotate(45deg);
	transform: translateY(.35rem) rotate(45deg);
}

.all_menu.on .icon .line:nth-child(2) {
	-webkit-transform: translateY(-.25rem) rotate(-45deg);
	-ms-transform: translateY(-.25rem) rotate(-45deg);
	-o-transform: translateY(-.25rem) rotate(-45deg);
	transform: translateY(-.25rem) rotate(-45deg);
}

.all_menu .icon .line {
	width: 2rem;
	height: .2rem;
	background-color: #ecf0f1;
	display: block;
	margin: .4rem auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* 모바일css */
@media screen and (max-width:1920px) {
	#header .all_menu {
		righT: 3rem;
	}
}

@media screen and (max-width:1280px) {
	#header .all_menu {
		righT: 0;
	}
}

@media screen and (max-width:1023px) {
	#header .all_menu {
		display: block;
	}

	.mobile_menu {
		margin-left: 62rem;
	}
}

@media screen and (max-width:420px) {
	#header {
		height: 66px;
	}
}

/* ==================================================
	전체메뉴
================================================== */
.mobile_wrap {
	/*position: absolute;*/
	position: fixed;
	top: 8rem;
	width: 100%;
	right: -100%;
	height: calc(100% - 8rem);
	opacity: 0;
	transition: all .2s;
	z-index: 100;
	visibility: hidden;
	overflow: hidden;
	background: #fff;
}

.mobile_wrap .layout {
	height: 100%;
	max-width: 1280px;
	padding: 8rem 20px;
	height: calc(100% - 10rem);
}

.mobile_wrap .mobile_cont {
	position: absolute;
	left: 0;
	top: 0;
}

.mobile_wrap .mobile_cont .mobile_tit {
	overflow: hidden;
}

.mobile_wrap .mobile_cont .mobile_tit .sm_tit {
	font-size: 1.8rem;
	color: #aaa;
	font-weight: 700;
	margin-bottom: 1.7rem;
}

.mobile_wrap .mobile_cont .mobile_tit .tit {
	font-size: 4rem;
	font-weight: 300;
	display: block;
	line-height: 130%;
	color: #111111;
	margin-bottom: 3rem;
}

.mobile_wrap .mobile_cont .mobile_tit .visual_tit {
	display: block;
	color: #F3F3F3;
	line-height: 100%;
	margin: 0 0 5rem 0;
}

.mobile_wrap .mobile_cont .mobile_tit .visual_tit img {
	width: 250px;
}

.mobile_wrap .mobile_cont .mobile_faq a {
	position: relative;
	display: block;
	float: left;
	padding: 1.3rem 0;
	width: 20rem;
	border-bottom: 2px solid #000;
	margin-left: 3rem;
}

.mobile_wrap .mobile_cont .mobile_faq a:first-of-type {
	margin-left: 0;
}

.mobile_wrap .mobile_cont .mobile_faq a span {
	font-size: 2rem;
	font-weight: 800;
	color: #000;
}

.mobile_wrap .mobile_cont .mobile_faq a i {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.6rem;
	color: #000;
}

.mobile_wrap .mobile_cont .mobile_faq a:hover i {
	animation: arr_right 0.5s infinite;
}

.mobile_menu {
	position: relative;
	height: 100%;
	margin-left: 70rem;
}

.mobile_menu>ul {
	height: 100%;
	position: relative;
	margin-top: 20px;
}

.mobile_menu>ul>li {
	margin-top: 4rem;
}

.mobile_menu>ul>li:first-of-type {
	margin-top: 0;
}

.mobile_menu>ul>li>a {
	width: 19.5rem;
	height: auto;
	background: none;
	padding: 0;
	display: block;
}

.mobile_menu>ul>li>a>span {
	display: inline-block;
	position: relative;
	font-weight: 700;
	font-size: 2.8rem;
	letter-spacing: -1px;
	color: #D2D2D2;
	height: 100%;
	line-height: 1;
}

.mobile_menu>ul>li>a.on>span {
	color: #005BAA;
}

/*.mobile_menu>ul>li>a>span:before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s;
	opacity: 0;
}

.mobile_menu>ul>li>a.on>span:before {
	width: 100%;
	opacity: 1;
}*/

.mobile_menu>ul>li>a>span:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	background: #005BAA;
	position: absolute;
	top: 2.5px;
	left: calc(100% + 4px);
	opacity: 0;
	border-radius: 5px;
}

.mobile_menu>ul>li>a.on>span:after {
	width: 5px;
	height: 5px;
	opacity: 1;
	transition: all .3s .3s;
}

.mobile_menu>ul>li>.sub {
	display: none;
	position: absolute;
	width: calc(100% - 28rem);
	left: 28rem;
	height: 100%;
	top: 0;
	background: #fff;
}

.mobile_menu>ul>li.on .sub {
	display: block;
	padding: 2rem;
}

.mobile_menu>ul>li.on>a {
	background: #353541;
	color: #fff;
}

.mobile_menu>ul>li>.sub>ul>li {
	margin-top: 2.5rem;
}

.mobile_menu>ul>li>.sub>ul>li:first-of-type {
	margin-top: 0;
}

.mobile_menu>ul>li>.sub>ul>li>a {
	display: block;
	position: relative;
}

.mobile_menu>ul>li>.sub>ul>li>a>span {
	font-size: 1.8rem;
	display: block;
	font-weight: 300;
	color: #333;
}

.mobile_menu>ul>li>.sub>ul>li>a.on>span {
	font-weight: 700;
	color: #005BAA;
}

.mobile_menu>ul>li>.sub>ul>li>.depth {
	padding: 2rem;
	display: none;
}

.mobile_menu>ul>li>.sub>ul>li>.depth>ul>li {
	margin-top: 1rem;
}

.mobile_menu>ul>li>.sub>ul>li>.depth>ul>li:first-of-type {
	margin-top: 0;
}

.mobile_menu>ul>li>.sub>ul>li>a:before {
	display: block;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	content: "\e942";
	font-family: "xeicon";
	font-size: 2rem;
}

.mobile_menu>ul>li>.sub>ul>li>a.on:before {
	transform: translateY(-50%) rotate(-180deg);
}

.mobile_menu>ul>li>a.on+.sub {
	display: block;
}

.mobile_menu>ul>li>.sub>ul>li>a.empty:before {
	display: none;
}

.mobile_menu ul li a span {
	position: relative;
}

.mobile_menu>ul>li>.sub>ul>li>a[target="_blank"] span:after {
	display: block;
	content: "\e980";
	font-family: "xeicon";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-size: 2rem;
}

.mobile_wrap.on {
	opacity: 1;
	right: 0;
	transition: all .6s;
	visibility: visible;
	overflow: visible;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.mobile_menu {
		margin-left: 62rem;
	}
}

@media screen and (max-width:800px) {
	.mobile_wrap .layout {
		padding: 4.8rem 5rem;
	}

	.mobile_wrap .mobile_menu {
		height: auto;
		min-height: auto;
		margin-bottom: 9rem;
	}

	.mobile_wrap .mobile_menu {
		margin-left: 0;
	}

	.mobile_wrap .mobile_cont {
		position: relative;
		left: auto;
		top: auto;
	}

	.mobile_wrap .mobile_cont .mobile_tit {
		display: none;
	}

	.mobile_menu>ul>li>a {
		width: 50%;
	}

	.mobile_menu>ul>li>.sub {
		width: 50%;
		left: 50%;
		padding-left: 4%;
	}

	.mobile_menu>ul>li>.sub>ul>li>a>span {
		font-size: 2rem;
	}

	.mobile_wrap .mobile_cont .mobile_faq a {
		width: 48%;
		margin-left: 4%;
	}

	/* 전체메뉴 모바일 금지 */
	.mobile_wrap {
		height: 100%;
	}

	.mobile_wrap .mobile_cont {
		left: auto;
		transition: none;
	}

	.mobile_wrap .mobile_menu {
		right: 0;
		transition: none;
	}
}

/*전체메뉴 1000px 이상*/
@media screen and (min-width:769px) {
	.mobile_wrap {
		right: auto;
		height: 70rem;
	}
}

@media screen and (max-width:420px) {
	.mobile_wrap {
		top: 66px;
		width: 100%;
	}
}

/* ==================================================
	전체메뉴 효과
================================================== */
.mobile_wrap .mobile_cont {
	left: -100%;
	transition: all .8s .1s;
}

.mobile_wrap .mobile_menu {
	right: -100%;
	transition: all .8s .1s;
}

.mobile_wrap.on .mobile_cont {
	left: 0;
}

.mobile_wrap.on .mobile_menu {
	right: 0;
}

/* ==================================================
	한글 메뉴 제목
================================================== */
.mobile_menu>ul>li:last-of-type>.sub>ul>li>a>span {
	font-family: 'Pretendard';
}

/*전체메뉴 스크롤바*/
.mobile_wrap .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background: #000;
}

.mobile_wrap .mCSB_scrollTools .mCSB_draggerRail {
	background: #ddd;
}

.mobile_wrap .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mobile_wrap .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mobile_wrap .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background: #000;
}

/* ==================================================
	lnb
================================================== */
.lnb {
	position: relative;
	width: 100%;
	margin-top: 8rem;
	padding: 3rem 0;
	background: #f0f0f0;
}

.lnb_con {
	display: flex;
	flex-wrap: wrap;
}

.lnb_con .lnb_tit {
	width: 25rem;
}

.lnb_con .lnb_tit h1 {
	position: relative;
	width: fit-content;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
}

.lnb_con .lnb_tit h1:after {
	position: absolute;
	right: -10px;
	bottom: 2px;
	display: block;
	content: "";
	width: 0.7rem;
	height: 0.7rem;
	right: -0.7rem;
	border-radius: 100%;
	background: #005AAB;
}

.lnb_con .lnb_list {
	width: calc(100% - 25rem);
}

.lnb_con .lnb_list .lnbm_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	height: 100%;
}

.lnb_con .lnb_list .lnbm_list>li {
	position: relative;
	height: 100%;
}

.lnb_con .lnb_list .lnbm_list>li+li {
	margin-left: 4.5rem;
}

.lnb_con .lnb_list .lnbm_list>li>a {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
}

.lnb_con .lnb_list .lnbm_list>li>a span {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	line-height: 100%;
	font-size: 2rem;
	font-weight: 600;
	color: #9D9D9D;
	transition: all .5s;
}

.lnb_con .lnb_list .lnbm_list>li.on a span,
.lnb_con .lnb_list .lnbm_list>li a:hover span {
	color: #005aab;
}

/* 모바일CSS */
@media screen and (max-width: 800px) {
	.lnb {
		padding: 20px 0;
	}

	.lnb_con {
		display: block;
	}

	.lnb_con .lnb_tit {
		width: 100%;
	}

	.lnb_con .lnb_list {
		width: 100%;
		margin-top: 2rem;
	}

	.lnb_con .lnb_list .lnbm_list {
		justify-content: flex-start;
	}

	.lnb_con .lnb_list .lnbm_list>li+li {
		margin-left: 2rem;
	}
}

@media screen and (max-width: 640px) {
	.lnb_con .lnb_list .lnbm_list>li {
		width: calc((100% - 5rem) / 3);
		margin-right: 1.2rem;
		margin-bottom: 1rem;
	}

	.lnb_con .lnb_list .lnbm_list>li+li {
		margin-left: 0;
	}

	.lnb_con .lnb_list .lnbm_list>li:nth-child(3n+3) {
		margin-right: 0;
	}

	.lnb_con .lnb_list .lnbm_list>li:nth-child(4),
	.lnb_con .lnb_list .lnbm_list>li:nth-child(5),
	.lnb_con .lnb_list .lnbm_list>li:nth-child(6) {
		margin-bottom: 0;
	}

	.lnb_con .lnb_list .lnbm_list>li>a {
		text-align: left;
		justify-content: left;
	}
}

@media screen and (max-width: 420px) {
	.lnb {
		margin-top: 66px;
	}
}

/* ==================================================
	sub_tab
================================================== */
.sub_tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 2.6rem;
}

.sub_tab ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.sub_tab ul li {
	margin-right: 1rem;
}

.sub_tab ul li:last-child {
	margin-right: 0;
}

.sub_tab ul li a {
	display: block;
	width: 20rem;
	padding: 2.05rem 0;
	background: #fff;
	border: 1px solid #C7C7C7;
	border-radius: 3rem;
	color: #8D8D8D;
	font-size: 1.7rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
	transition: all .5s;
}

.sub_tab ul li a.subtab_on,
.sub_tab ul li a:hover {
	background: #005aab;
	border: 1px solid #005aab;
	color: #fff;
}

/* 모바일CSS */
@media screen and (max-width: 800px) {
	.sub_tab ul li {
		width: calc(50% - 0.5rem);
		padding: 5px 5px;
	}

	.sub_tab ul li a {
		width: 100%;
	}

	.sub_tab ul li {
		margin-right: 0;
	}
}

/* ==================================================
	검색창
================================================== */
.search-box {
	position: relative;
	width: 100%;
	max-width: 36rem;
	height: 60px;
	border-radius: 120px;
	margin: 3rem auto 3rem auto;
}

.search-icon,
.go-icon {
	position: absolute;
	top: 0;
	height: 60px;
	width: 86px;
	line-height: 60px;
	text-align: center;
}

.search-icon {
	left: 0;
	pointer-events: none;
	font-size: 17px;
	will-change: transform;
	transform: rotate(-0deg);
	-webkit-transform: rotate(-0deg);
	-moz-transform: rotate(-0deg);
	-o-transform: rotate(-0deg);
	transform-origin: center center;
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-o-transform-origin: center center;
	transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-webkit-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-moz-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-o-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.search-icon i {
	color: #005aab
}

.si-rotate {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.go-icon {
	right: 0;
	pointer-events: none;
	font-size: 1.7rem;
	will-change: opacity;
	cursor: default;
	opacity: 0;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-webkit-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-moz-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-o-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.go-in {
	opacity: 1;
	pointer-events: all;
	cursor: pointer;
	transform: rotate(0);
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-webkit-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-moz-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-o-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.search-border {
	display: block;
	width: 100%;
	max-width: 36rem;
	height: 60px;
}

.border {
	fill: none;
	stroke: #C7C7C7;
	stroke-width: 2;
	stroke-miterlimit: 10;
}

.border {
	stroke-dasharray: 740;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
	-webkit-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
	-moz-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
	-o-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
}

.border-searching .border {
	stroke-dasharray: 740;
	stroke-dashoffset: 459;
	transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
	-webkit-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
	-moz-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
	-o-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
}

#search {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 120px;
	border: none;
	background: rgba(255, 255, 255, 0);
	padding: 0 68px 0 68px;
	color: #8D8D8D;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: -0.015em;
	outline: none;
}

#search::-webkit-input-placeholder {
	color: #8D8D8D;
}

#search::-moz-placeholder {
	color: #8D8D8D;
}

#search:-ms-input-placeholder {
	color: #8D8D8D;
}

#search:-moz-placeholder {
	color: #8D8D8D;
}

#search::-moz-selection {
	color: #8D8D8D;
	background: rgba(0, 0, 0, 0.25);
}

#search::selection {
	color: #8D8D8D;
	background: rgba(0, 0, 0, 0.25);
}

/* 모바일CSS */
@media screen and (max-width:750px) {
	.search-box {
		margin: 5px auto 15px auto;
	}
}

/* ==================================================
	포트폴리오 뷰 페이지 하단 네비
================================================== */
.project_nav_inner {
	display: table;
	table-layout: fixed;
	overflow: hidden;
	width: 100%;
	max-width: 560px;
	height: 280px;
	position: relative;
	margin: 0 auto 40px;
}

.project_nav_inner>a {
	display: table-cell;
	width: 51%;
	height: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	background-size: 100% auto;
	-webkit-transition: 300ms;
	transition: 300ms;
}

.project_nav_inner>a .bg_wrap {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-transition: 300ms;
	transition: 300ms;
	-webkit-transition: all 1s ease-out;
	transition: all 1s ease-out
}

.project_nav_inner>a .bg_wrap img {
	width: 100%;
}

.project_nav_inner>a:hover {
	padding-top: 0;
}


.project_nav_inner>a .bg_color_wrap {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	background: rgba(0, 0, 0, .4);
	-webkit-transition: 500ms;
	transition: 500ms
}

.project_nav_inner>a:hover .bg_color_wrap {
	background: #005aab;
	background: rgba(0, 90, 171, .8)
}

.project_nav_inner>.project_nav_next .bg_color_wrap,
.project_nav_inner>.project_nav_prev.on .bg_color_wrap {
	background: #005aab;
	background: rgba(0, 90, 171, .8)
}


.project_nav_inner>a .project_nav_info {
	opacity: 0;
	position: relative;
	z-index: 100
}

.project_nav_inner>a:hover .project_nav_info {
	opacity: 1;
}

.project_nav_inner>.project_nav_next .project_nav_info,
.project_nav_inner>.project_nav_prev.on .project_nav_info {
	opacity: 1;
}

.project_nav_inner span,
.project_nav_inner p {
	position: relative;
	z-index: 200;
	z-index: 1
}

.project_nav_inner>a .page_direction {
	-webkit-transition: 750ms;
	transition: 750ms;
	padding: 0 5%
}

.project_nav_inner>a .page_direction:after {
	content: '';
	display: block;
	width: 20px;
	height: 16px;
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -10px;
	padding: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.project_nav_inner .project_nav_prev .page_direction:after {
	background-image: url('https://www.hrum.co.kr/kor2023/images/portfolio/project_nav_prev.svg');
}

.project_nav_inner .project_nav_next .page_direction:after {
	background-image: url('https://www.hrum.co.kr/kor2023/images/portfolio/project_nav_next.svg');
}

.project_nav_inner .project_nav {
	position: relative;
	display: inline-block;
	width: auto;
	margin-top: 0;
	margin-bottom: 12px
}

.project_nav_inner p span {
	font-size: 1.3rem;
	font-weight: 600;
	color: #fff
}

.project_nav_inner .project_list {
	display: block;
	width: 44px;
	height: 44px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	text-align: center;
	background: #fff;
	background: rgba(255, 255, 255, .1);
	border: 1px solid #fff;
	border: 1px solid rgba(255, 255, 255, .21);
	-webkit-transition: 300ms;
	transition: 300ms;
	z-index: 200
}

.project_nav_inner .project_list:hover,
.project_nav_prev.on .project_list {
	background: #fff;
	border-color: #fff
}

.project_nav_inner .project_list .project_nav_list {
	display: block;
	width: 100%;
	height: 100%
}


.project_nav_inner .project_list .list_line {
	position: absolute;
	left: 50%;
	display: block;
	width: 12px;
	margin-left: -6px;
	border: 1px solid #fff;
	-webkit-transition: 300ms;
	transition: 300ms
}

.project_nav_inner .project_list:hover .list_line {
	border-color: #000
}

.project_nav_inner .project_list .list_line_01 {
	top: 16px
}

.project_nav_inner .project_list .list_line_02 {
	top: 21px
}

.project_nav_inner .project_list .list_line_03 {
	top: 26px
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.project_nav_inner {
		max-width: 480px;
		height: 240px;
	}

	.project_nav_inner p span {
		font-size: 16px;
	}
}

@media screen and (max-width:540px) {
	.project_nav_inner {
		height: 100px;
	}

	.project_nav_inner p span:nth-child(2) {
		display: none;
	}

	.project_nav_inner>a .page_direction:after {
		width: 20px;
		height: 12px;
		bottom: -5px;
		margin-left: -10px;
	}
}