@charset "utf-8";

/*갤러리*/
.hte-gallery {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.hte-gallery .hte-img {
	height: 100%;
}
.hte-gallery .hte-img img {
	transition-duration: 0.6s;
	max-width: 100%;
    -moz-transform: scale(1.01); 
    -webkit-transform: scale(1.01); 
    transform: scale(1.01);
}
@media screen and (max-width: 767px){
	.hte-gallery .hte-img img {
		width: 100%;
	}
}
.hte-gallery:hover .hte-img img {
    -moz-transform: scale(1.2); 
    -webkit-transform: scale(1.2); 
    transform: scale(1.2);
}
.hte-gallery .hte-content a {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	transition-duration: 0.4s;
	opacity: 0;
}
.hte-gallery:hover .hte-content a {
	opacity: 1;
}
.hte-gallery .hte-content h3, .hte-gallery .hte-content p {
	color: #fff;
	text-align: center;
	width: 100%;
	display: block;
	position: absolute;
	margin: 0;
	opacity: 0;
	transition-duration: 0.6s;
}
.hte-gallery .hte-content h3 {
	font-size: 28px;
	top: 20px;
    margin-top: -28px;
}
@media screen and (max-width:991px){
	.hte-gallery .hte-content h3 {
		font-size: 20px;
	}
}
.hte-gallery:hover .hte-content h3 {	
    top: 50%;
	opacity: 1;
}
.hte-gallery .hte-content p {
	font-size: 18px;
	bottom: 10px;
	margin-bottom: -15px;
}
.hte-gallery:hover .hte-content p {
	bottom: 50%;
	opacity: 1;
}