.wp-block-group{
	display: none;
}
.gallery_box{
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(32rem, 1fr));
	align-items: center;
	justify-items: center;
	margin: 0 auto;
	max-width: 120rem;
	min-width: 37.5rem;
	height: auto;
}
.gallery_item{
	position: relative;
	margin-bottom: 2rem;
	width: 30rem;
	height: 40rem;
}
.mask{
	display: block;
	border: .1rem solid gray;
	line-height: 0;
	overflow: hidden;
}
.gallery_title{
	position: absolute;
	bottom: -2rem;
	z-index: 3;
	display: block;
	width: 100%;
	height: auto;
	color: var(--white);
	text-align: center;
	font-size: 2.5rem;
}
.gallery_item img{
	display: block;
	width: 30rem;
	height: 43rem;
	overflow: hidden;
	transform: scale(1);
	transition: .3s ease-in-out;
}
.gallery_item:hover img{
	transform: scale(1.2);
}
.gallery_item::before{
	content: "";
	position: absolute;
	bottom: -3.1rem;
	z-index: 2;
	display: block;
	width: 100%;
	height: 5.5rem;
	line-height: 5rem;
	background-color: var(--accent-color1);
	text-align: center;
	opacity: .9;
}
.gallery_item::after{
	content: "\f054";
	position: relative;
	bottom: 4.2rem;
	left: 25rem;
	z-index: 4;
	font-size: 2.5rem;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--white);
}
@media screen and ( max-width : 750px ) {
	.gallery_item{
		margin-bottom: 8rem;
	}
}
