/*  page gallery_photo  ==================================================================== */
/*  p_photos  ==================================================================== */
.p_photos {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin: 0 -10px;
}
.p_photos .item {
	width:calc(100% / 3 - 20px);
	margin: 0 10px 40px 10px;
}
.p_photos .item h3 {
	margin: 15px 0 0 0;
	font-size: 16px;
	color: var(--c_title);
}
.p_photos .img_box {
	display:block;
	position:relative;
	height: 300px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.p_photos .img_box:after {
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:2;
	background: #000;
	opacity: 0.2;
	pointer-events: none;
    cursor: default;
}
.p_photos .img_box:hover:after{
	opacity: 0;
}
.p_photos .img_box_over_icon {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:20%;
	z-index:3;
	opacity: 0;
	pointer-events: auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	background-color:var(--c_a);
	-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;
}
.p_photos .img_box_over_icon svg{
	fill:#fff;
	height: 15px;
}
.p_photos .img_box:hover .img_box_over_icon{
	opacity: 0.9;
}
/*  responsive  =============================================================================== */
@media screen and (max-width: 960px) {
.p_photos .item {
	width:calc(100% / 2 - 20px);
}
}
@media screen and (max-width: 767px) {
.p_photos .item {
	width:100%;
}
}
