.wrapper {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr 1fr;
	grid-column-gap: 0;
	grid-row-gap: 0;
	margin: 0;
	padding: 0;
}
img {
	position: relative;
	width: 100%;
	height: 320px;
	object-fit: cover;
}
a {
	text-decoration: none;
	color: black;
}
figure {
	margin: 10%;
	position: relative;
	transition: all .5s;
}
figcaption {
	background: rgba(250,250,250, 0.8);
	bottom: 0;
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	padding: 1.5rem 0rem 1.5rem .5rem;
	font-size: 1.1rem;
}
figure:hover {
	transform: scale(1.1);
}
.menu {
	z-index: 999;
}
/*MEDIA QUERIES 
*****************/

@media only screen and (max-width: 1110px) and (-webkit-min-device-pixel-ratio: 2) {
.wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 0;
	grid-row-gap: 0;
}
figure {
	position: relative;
	min-width: 90px;
}
img {
	height: 180px;
	min-width: 20%;
}

}
@media only screen and (min-width: 320px) and (max-device-width : 480px) and (orientation:portrait) {
	.wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: repeat(3, 1fr);
		grid-column-gap: 0;
		grid-row-gap: 0;
	/*	grid-column-gap: 10px;
		grid-row-gap: 10px;*/
	}

	figure {
		position: relative;
		min-width: 20%;
	}
	figcaption {
		margin: 0;
		padding: .5rem;
		padding-left: 2px;
		word-break: normal;
		font-size: .75rem;
	}
	img {
		width: 100%;
		height: 120px;
		object-fit: cover;
	}
}

