.gallery-wrapper {
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-item {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  width: 15em;
  height: 16em;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-caption {
  position: absolute;
  top: calc(100% - 40px);
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 5px;
  background: rgba(255, 0, 0, 0.6);
  color: #FFF;
  overflow: hidden;
  transition: all 300ms ease 0s;
}

.gallery-item:hover>.gallery-item-caption {
  top: 0;
}

.gallery-item-title {
  height: 40px;
  margin: auto;
  text-align: center;
  white-space: nowrap;
  line-height: 40px;
  font-size: 1.2em;
  font-weight: bold;
}

.gallery-item-info1 {
  font-size: 0.85em;
  line-height: 1.2em;
  margin-bottom: 10px;
  padding: 5px 0;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}

.gallery-item-info2 {
  font-size: 0.85em;
  line-height: 1.2em;
}