.game-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.game-grid .game-item {
  position: relative;
  width: 160px;
  margin: 0.5em;
  overflow: hidden;
}

.game-grid .game-item .game-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.game-grid .game-item:hover .game-overlay {
  opacity: 1;
  z-index: 90;
}

.game-grid .game-item .game-image {
  width: 100%;
}

.game-grid .game-item:hover img {
  z-index: 80;
  -webkit-transform:scale(1.2);
  -moz-transform:scale(1.2);
  -ms-transform:scale(1.2);
  -o-transform:scale(1.2);
  transform:scale(1.2);
  transition: all .3s ease;
}

.game-grid .game-item .game-data {
  z-index: 999;
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.game-grid .game-item:hover .game-data{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.game-grid .game-item .game-data {
  color: #fff;
  font-weight: 500;
  /* letter-spacing: 0.1em; */
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.game-grid .game-item .game-data p{
  color: #fff;
  font-size: 14px;
  letter-spacing: normal;
}
.game-grid .game-item .game-data p.game-title {
  font-size: 18px;
  line-height: 24px;
}
.game-grid .game-item .game-data p.game-category {
  background-color: #F15F79;
  padding: 5px;
  margin: 0.5em 0 1em 0;
}
.game-data.fadeIn-bottom{top: 80%}
.game-data.fadeIn-top{top: 20%}
.game-data.fadeIn-left{left: 20%}
.game-data.fadeIn-right{left: 80%}