/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2024 | 05:30:19 */
.instagram-list li {
	list-style: "";
}
.instagram-list {
	margin: 0 auto;
	max-width: 1080px;
	display: flex;
	flex-wrap: wrap;
}
.instagram-list li {
	position:relative;
	width:200px;
	height:200px;
	margin: 4% auto;
}
.instagram-list li:before {
	content:"";
	display:block;
	padding-top:100%;
}
.instagram-list li img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
@media screen and (max-width: 600px) {
	.instagram-list li {
		position:relative;
		float:left;
		width: 40%;
		height: 150px;
		margin: 4%;
	}
	.instagram-list li img{
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		object-fit:cover;
	}
	.instagram-list{
		margin: 0;
		justify-content: space-evenly;
	}
}