.downList {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}

.downList li {
	position: relative;
	padding: 40px;
	border: 1px solid #ddd;
	text-align: center;
	transition: 0.2s;
}

.downList li:hover {
	background: #002c55;
	border: 1px solid #002c55;
}

.downList li .tit {
	position: relative;
	color: #002c55;
	font-size: 1.15em;
	line-height: 1.3em;
	font-weight: 500;
	margin-bottom: 25px;
	transition: 0.2s;
}

.downList li:hover .tit {
	color: #fff;
}

.downList li .tit::after {
	content: '';
	display: block;
	position: absolute;
	background: #002c55;
	width: 1px;
	height: 16px;
	bottom: -25px;
	left: 50%;
}

.downList li:hover .tit::after {
	background: #fff;
}

.btn_dwnld {
	/*position: absolute;
	left: calc(50% - 89px);
	bottom: 40px;*/
	margin-top:20px;

	display: inline-block;
	border: 1px solid #ddd;
	padding: 10px 20px 10px 40px;
	background: url('../images/common/download.svg') 20px 50% no-repeat;
	background-size: 16px 16px;
	font-size: 0.9em;
	font-weight: 500;
	transition: 0.2s;
}

.downList li:hover .btn_dwnld {
	border: 1px solid #fff;
	background: url('../images/common/download_w.svg') 20px 60% no-repeat;
	background-size: 16px 16px;
}

.downList li:hover .btn_dwnld {
	color: #fff;
}


/* PDF 다운로드 */
.viewer {
	width: 100%;
	padding: 15px 15px;
	margin-bottom: 20px;
	text-align: center;
	background: #f7f7f7;
	color: #666;
	border: 1px solid #e6e6e6;
}

.btn_viewer {
	display: inline-block;
	width: 155px;
	padding: 5px 5px;
	margin-left: 15px;
	background: #999;
	text-align: center
}

.btn_viewer span {
	display: inline-block;
	color: #fff;
}

.btn_viewer span:before {
	display: inline-block;
	content: "";
	width: 19px;
	height: 21px;
	background: url('../images/pdf.png') no-repeat;
	margin-right: 8px;
	vertical-align: middle
}

/* 모바일CSS */


@media screen and (max-width:1500px) {
	.downList {
		gap: 15px;
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width:1225px) {

	.downList {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media screen and (max-width:720px) {

	/* PDF 다운로드 */
	.viewer {
		padding: 12px 12px;
		margin-bottom: 15px;
	}

	.viewer>span {
		display: block;
	}

	.btn_viewer {
		margin-left: 0;
		margin-top: 10px;
	}
}

@media screen and (max-width:600px) {

	.downList {
		gap: 10px 0;
		grid-template-columns: repeat(1, 1fr);
	}

	.downList li {
		padding: 25px 15px 65px;
	}

	.downList li .tit {
		margin: 0;
	}

	.downList li .tit::after {
		display: none;
	}

	.btn_dwnld {
		left: 0;
		bottom: 0;
		width: 100%;
		border-right: none;
		border-left: none;
		border-bottom: none;
		padding: 10px 20px 10px 40px;
		background: url('../images/common/download.svg') 20px 50% no-repeat;
		background-size: 16px 16px;
		font-size: 0.9em;
	}

	.downList li:hover .btn_dwnld {
		border-right: none;
		border-left: none;
		border-bottom: none;
	}

}


/* ==================================================
	 홍보센터 - E-카탈로그 
================================================== */
.catalog-list {
	position: relative;
	display:block;
	margin-top:40px;
	}

.catalog{
	display:grid;
	grid-template-columns: repeat(4,1fr);
	gap:20px;
}

.catalog li img {
	width:100%;
	}

.catalog li .info {
	padding: 0 20px;
	}
.catalog li .info a {
	position:relative;
	display: block;
	text-align: center;
	margin-bottom: 20px;
	}
.catalog li .info a figure {
	border: 1px solid #d5d5d5;
	}
.catalog li .info a figure .img-responsive {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	box-shadow: 10px 10px 30px #999;
	}
.catalog_txt {
	font-size: 12pt;
	color: #333;
	text-align:center;
	}
.catalog li .info a .hover-more {
	display: none;
	background-color: rgba(0, 108, 184, 0.8);
	background-image: url('../images/common/more_plus_bg.png');
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.15s;
	transition-duration: 0.15s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	}
.catalog li .info a:hover .hover-more {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 15px;
	color: #fff;
	font-weight: 300;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.15s;
	transition-duration: 0.15s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	}
.view_text {
	text-align:center;
	padding-top:83%;
	font-size:13pt;
	}

/*** 모바일CSS ***/
@media all and (max-width:750px) {
	.catalog li {
		width: 50%;
		}
}

@media screen and (max-width:510px){
	.catalog li {
		width: 100%;
		}
}
