/* Custom Styles */

ul.psgallery {
	padding:0;margin:0;list-style-type:none;
	display:flex;
	flex-wrap:wrap;
	margin-bottom:-10px;
}

@keyframes blop {
	from { opacity:0; transform:scale(0); }
	to { opacity:1; transform:scale(1); }
}

ul.psgallery li {
	animation:blop 1s;
	display:inline-block;
	width:32%;
	margin-right:2%;
	margin-bottom:2%;
	overflow:hidden;
}

ul.psgallery li:nth-child(3n) {
	margin-right:0;
}

ul.psgallery li img {
	width:100%;
	display:block;
	transition:all 1s ease;
}

ul.psgallery a:hover img {
	transform:scale(1.1, 1.1);
}