/* Photo Gallery Styles */
.photo-gallery.child ul li {
	opacity: 1;
	overflow: hidden;
	border-radius: var(--radial-border);
}

.photo-gallery.child ul li a {
	display:	block;
	padding-bottom:	100%;
}

.photo-gallery.child ul li a::after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(64, 64, 64, .7);
	opacity: 0;
	transition: 0.35s ease 0s;
	z-index: 1;
	transform: translate(0%);
	content: '';
}

.photo-gallery.child ul li a:hover:after {
	opacity:	1;
}

.photo-gallery.child ul li a:after:focus-within {
	opacity:0;
}

.photo-gallery.child ul li a svg {
	position:	absolute;
	top:	50%;
	left:	50%;
	transform:	translate(-50%, -50%);
	font-size:	2em;
	transition:	0.35s ease 0s;
	opacity:	0;
	color:	var(--white-color);
	z-index:	2;
}

.photo-gallery.child ul li a:hover svg {
	opacity:	1;
}

/* End Photo Gallery Styles */

/* Responsive Width 800px */
@media screen and (max-width:800px){
	.photo-gallery-v2 > .main > .flex-between-wrap {
    justify-content: center;
	}
}
/* End Responsive Width 800px */