.long-matty-gallery{
	float: left;
	height: auto;
}
.long-matty-gallery img {
	transition: 1s;
	padding: 15px 5px 10px;
	width: 235px;
}
.long-matty-gallery img:hover{
	filter: grayscale(100%);
	transform: scale(1.1);
}
.matty-gallery{
	margin: 10px 50px;
	width: 90%;
}
.matty-gallery img {
	transition: 1s;
	padding: 15px;
	width: 200px;
}
.matty-gallery img:hover{
	filter: grayscale(100%);
	transform: scale(1.1);
}

.long-matty-gallery2{
	float: left;
	width: 100%;
	padding-left: 8px;
}
.long-matty-gallery2 img {
	transition: 1s;
	padding: 15px 5px 10px;
}
.long-matty-gallery2 img:hover{
	filter: grayscale(100%);
	transform: scale(1.1);
}
.matty-gallery2{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
	padding: 20px;
	overflow-x: hidden;

}
.matty-gallery2 img {
	transition: 1s;
	padding: 15px;
	height: 300px;
}
.matty-gallery2 img:hover{
	filter: grayscale(100%);
	transform: scale(1.1);
}
.matty-grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
	padding: 20px;
	overflow-x: hidden;
}