@import url("https://fonts.googleapis.com/css?family=Raleway:300,400");

.container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  padding: 0px;
}
.container .thumbex {
	width: 100%;
	min-width: 220px;
	max-width: 400px;
	height: 200px;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow: hidden;
	outline:0px solid white;
	outline-offset: -15px;
	background-color: #002a02;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 30px;
	margin-left: 0px;
}
.container .thumbex .thumbnail {
  overflow: hidden;
  min-width: 220px;
  height: 400px;
  position: relative;
  opacity: 0.88;
  backface-visibility: hidden;
  transition: all 0.4s ease-out;
}
.container .thumbex .thumbnail img {
  position: absolute;
  z-index: 1;
  left: 50%;
  top:25%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}
.container .thumbex .thumbnail span {
	position: absolute;
	z-index: 2;
	top: calc(160px - 10px);
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	padding: 10px 50px;
	margin: 0 0px;
	text-align: center;
	font-size: 20px;
	color: white;
	letter-spacing: 0px;
	transition: all 0.3s ease-out;
	font-style: normal;
}
.container .thumbex .thumbnail:hover {
  backface-visibility: hidden;
  transform: scale(1.15, 1.15);
  opacity: 1;
}
.container .thumbex .thumbnail:hover span {
  opacity: 0;
}
