 .snippets-img {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 0px;
}
.snippets-img img{
	max-width: calc(33.33% - 20px);
	max-height: 280px;
}
.snippets-img img+img {
	margin-left: 20px;
}
@media screen and (max-width: 769px){
	.snippets-img{
		display: block;
		text-align: center;
	}
	.snippets-img img{
		max-width: 100%;
		width: 100%;
	}
	.snippets-img img+img {
		margin-top: 20px;
		margin-left: 0;
	}
}