/* sub css */
.parallax {
	position:relative;
	margin-top: 180px;
	background-image:url('../img/sub/parallax_bg.jpg');
	background-position:center;
	 background-size:cover; 
	height: 395px;
}

.parallax .row {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	position:relative;
	width: 100%;
	height:100%;
	color:#fff;
}

.parallax .row h3 {
	font-family:'NotoSansKR-Light';
	font-size:24px;
	animation: fadeIn 1.2s .3s ease both;
}

.parallax .row h4 {
	font-family:'Montserrat-Bold';
	font-size:36px;
	border-bottom:1px solid #fff;
	line-height:120%;
	margin-bottom: 5px;
	animation: fadeIn 1.2s .3s ease both;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


.overflow {
	position:absolute;
	width: 1100px;
	left: 50%;
	bottom: 0;
	margin-left: -550px;
	z-index: 99;
	max-width:1100px;
	background-color: #fff;
	text-align:center;
	height: 60px;
	/* overflow: hidden; */
}

.overflow ul.route {
	display:flex;
	position:relative;
	height: 60px;
	line-height: 60px;
	white-space: nowrap;
}

.overflow ul.route li {
	position:relative;
	white-space: normal;
	padding: 0 25px;
}

.overflow ul.route li::after {
	position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background-color: #6b6b6b;
    top: 50%;
    margin-top: -5px;
    right: 0;
}

.overflow ul.route li:last-child::after {
	display:none;
}

.overflow ul.route li a {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: #000;
	transition-duration: 400ms;
}

.overflow ul.route li a:hover,
.overflow ul.route li a.active {
	color:#c20413;
}

.route_menu {
	position:relative;
	max-width:1200px;
	margin: auto;
	background-color:#0b1e2f;
	display:flex;
	margin-top: -65px;
	z-index: 10;
}

.route_menu > li {
	width:calc((100% - 65px) / 2);
}

.route_menu li.home {
	width: 65px;
}

.route_menu li.home a {
	display:flex;
	background-color:#ed6d26;
	width: 100%;
	height: 65px;
	justify-content:center;
	align-items:center;
	text-align:center;
}

.route_menu > li.rmenu {
	position:relative;
}

.route_menu > li.rmenu > a {
	display:block;
	line-height:65px;
	width: 100%;
	padding-left: 30px;
	border-right:1px solid #778189;
	cursor:pointer;
	font-size:18px;
	color:#fff;
}

.route_menu > li:last-child.rmenu > a {
	border-right:0px;
}

.route_menu > li.rmenu .arrow {
	position:absolute;
	top: 20px;
	right: 20px;
	transition:all 300ms;
}

.route_menu > li.rmenu.active .arrow {
	transform:rotate(180deg);
}

.route_menu > li.rmenu .rsub_menu {
	display:none;
	background-color:#0b1e2f;
	width: 100%;
	position:absolute;
	font-size:16px;
	z-index: 99999;
}

.route_menu > li.rmenu.off .rsub_menu {
	display:none !important;
}

.route_menu > li.rmenu.off > a {
	cursor:default;
}

.route_menu > li.rmenu.off span {
	display:none;
}

.route_menu > li.rmenu .rsub_menu li a {
	display:block;
	color:#fff;
	padding: 15px 0;
	padding-left: 30px;
	border-bottom:1px solid #778189;
}

.route_menu > li.rmenu .rsub_menu li:last-child a {
	border-bottom:0px;
}

.route_menu > li.rmenu .rsub_menu li a:hover {
	color:#999;
}

.route_menu > li.rmenu .rsub_menu li a.active {
	display:none;
}



.container {
	padding: 80px 0;
	text-align:center;
}

.container .row {
	max-width:1240px;
	margin: auto;
	padding: 0 20px;
	text-align:center;
}

/*.container .row > h3 {
	font-size:50px;
	margin-bottom: 80px;
	position:relative;
}

.container .row > h3::after {
	position:absolute;
	left: 50%;
	margin-left: -7px;
	margin-top: 10px;
	content:'';
	display:block;
	width: 14px;
	height: 14px;
	border-radius:50%;
	background-color:#C30A18;
}*/

.sub_f {
	margin-top: 30px;
	font-size: 12px;
	color: #292929;
	text-align: left;
	background-color:#ececec;
	padding: 40px;
	padding-left: 150px;
	background-image:url('../img/sub/tail_item.png?new');
	background-position: 40px center;
}

.mobile_suf {
	font-size: 12px;
	color: #292929;
	text-align: left;
	margin-top: 10px;
}

.sub_f dl,
.mobile_suf {
	margin-bottom: 3px;
	display:flex;
}

.sub_f dt,
.mobile_suf dt{
	padding-right: 5px;
}

.footer {
	border-top:1px solid #e5e5e5;
}


.news-zone {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
}



.news-zone li {
	position:relative;
	width: 31%;
	margin-right: 2%;
	text-align:left;
	height: 245px;
	margin-bottom: 40px;
}

.news-zone li a .inner {
	position:absolute;
}


.news-zone li:nth-child(3n) {
	margin-right: 0;
}

.news-zone li a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.news-zone li a .inner {
	
}

.news-zone li a .inner:hover {
	border:1px solid #2c3d47; 
	-webkit-transform: scale(1.03); 
	transform: scale(1.03); -webkit-transition: all 0.2s ease-out; 
	transition: all 0.2s ease-out; -webkit-box-shadow: 20px 30px 50px 8px black; 
	box-shadow: 0px 20px 30px 8px rgba(0,0,0,.1);}
}

.news-zone li .thumbnail img {
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
}

.news-zone li .thumbnail {
	width: 100%;
	height: 190px;
	max-height: 190px;
}

.news-zone li .content {
	width: 100%;
	height: 245px;
	max-height: 245px;
	padding: 30px;
	letter-spacing:-1px;
	border:1px solid #d5d5d5;
}

.news-zone li .content .news-title {
	font-size:20px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 55px;
	margin-bottom: 20px;
	line-height:140%;
	color: #5f5e5e;
}

.news-zone li .content .news-content {
	font-size:14px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	height: 65px;
	margin-bottom: 20px;
}

.news-zone li .news-info {
	display: flex;
	justify-content: space-between;
	font-size:13px;
}

.indicator {
	display:flex;
	justify-content: center;
	margin-bottom: 20px;
}

.indicator ul { display:flex;}

.indicator li { margin:0 2px}
.indicator li a { 
	display:flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background-color: #fff;
	border: 1px solid #d5d5d5;
	font-weight: normal;
}

.indicator li a:hover, .indicator li a.active {
	background-color: #01466F;
	border: 1px solid #01466F;
	color: #fff;
}

.tab {
	display: flex;
	justify-content: center;
	margin-bottom: 80px; 
	width: 100%;
	text-align:center;
	margin-top: 50px;
}

.tab li {
	flex-basis: calc(50% - 10px);
	text-align:center;
	height: 70px;
	border: 1px solid #0b1e2e;
	position: relative;
	background-color: #fff;
	font-weight: bold;
	font-size: 22px;
	transition-duration: 400ms;
	line-height: 70px;
	cursor: pointer;
	margin-right: 8px;
}

.tab li.active,
.tab li:hover {
	background-color: #0b1e2e;
	color: #fff;
}

.tab li.active::after,
.tab li:hover::after {
	content: '▼';
	text-align: center;
	width: 14px;
	height:14px ;
	color: #ed6d26;
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
}

.tab::after {
	display: none;
}

