.gallery-frame{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.gallery-frame__photo{
	width: 140px;
	margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 20px;
	max-width: 140px;
	height: 198px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: url('/local/templates/podokonnikov/img/cert.png') no-repeat;
	background-size: contain;
}


.gallery-frame__photo img{
		max-width: calc(100% - 40px);
		margin: 0;
		width: unset;
		height: unset;
}

@media(min-width:768px){
	.gallery-frame__photo{
		width: 256px;
		max-width: 256px;
		height: 360px;
	}
}