/* project ====================================================== */
/*  p1  ==================================================================== */
.p1 {
	
}
.p1 .row {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	margin: 0 -10px;
}
.p1 .item {
	width:calc(100% / 3 - 20px);
	margin: 0 10px 20px 10px;
}
.p1 .img_box {
	position:relative;
	height: 300px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.p1 .img_box:after {
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:2;
	background: #000;
	opacity: 0;
	pointer-events: none;
    cursor: default;
}
.p1 .item:hover img{
	transform: scale(1.05);
}
.p1 .item:hover .img_box:after{
	opacity: 0.3;
}
.p1 .item:hover .img_box_over_icon {
	position:absolute;
	top:0;
	right:10px;
	margin:10px 0 0 0;
	z-index:6;
	opacity: 0;
	pointer-events: auto;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.p1 .item:hover .img_box_over_icon{
	opacity: 0.9;
}
.p1 .item .img_box_over_icon svg{
	fill:var(--k0);
	height: 45px;
	width: 45px;
	padding: 13px;
	border: 1px solid var(--k0);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 50%;
}
.p1 .item .desc {
	position:absolute;
	right:0;
	bottom:0;
	left:0;
	z-index:5;
	padding: 10px 0 12px 0;
	color:var(--k0);
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.p1 .item:hover .desc {
	background-color: rgba(0, 0, 0, 0.8);
}
.p1 .item h2 {
	font-family:var(--font2);
	padding: 0 10px;
	font-size: 16px;
	font-weight:bold;
	text-align:center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow:ellipsis;
	overflow: hidden;
}
.p1 .btn {
    display: inline-block;
    margin: 30px 0 0 0;
    padding: 16px 30px 20px 30px;
    background-color: var(--b1);
    color: var(--k0);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}	
.p1 .btn svg {
    height: 12px;
    width: 12px;
    fill: var(--k0);
    margin: 0 0 0 10px;
}
.p1 .btn:hover {
	opacity:0.7;
}
/*  responsive  =============================================================================== */
@media screen and (max-width: 767px) {
.p1 .item {
	width:calc(100% / 1 - 20px);
	margin: 0 10px 20px 10px;
}
}