.pageGallery img {
  width: 100%;
  height: 230px;
}
.pageGallery a {
  transition: all 0.6s;
  z-index: 1;
  max-width: 100%;
  display: block;
  overflow: hidden;
  outline: none !important;
  position: relative;
  text-align: left;
  margin: 15px;
}
.pageGallery a h3::after {
  opacity: 0;
}
.pageGallery a:hover {
  transform: scale(1.0808);
  box-shadow: 0 18px 55px 0 rgba(0, 0, 0, 0.36);
}
.pageGallery a:hover .caption .inner p {
  opacity: 1;
}
.pageGallery a:hover .caption .inner h3::after {
  opacity: 1;
}
.pageGallery h3 {
  text-align: center;
  font-size: 19px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: none;
}
.pageGallery p {
  text-align: center;
  font-size: 14px;
  line-height: 25px;
  font-weight: 300;
  color: #737373;
  padding: 20px;
}
.pageGallery .extra-content {
  text-transform: uppercase;
  position: relative;
  margin: auto;
  display: inline-block;
  left: 50%;
  height: 28px;
  transform: translateX(-50%);
  color: #ffffff;
  background: #000;
  top: -20px;
  padding: 5px 15px;
  z-index: 2;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}
.pageGallery .caption {
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.2px;
  font-weight: bold;
  padding: 8px 4px 4px 4px;
  z-index: 9;
  overflow: hidden;
  color: #FFF;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  text-align: center;
  margin: auto;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: table;
  height: 100%;
  background: none !important;
}
.pageGallery .caption .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.pageGallery .caption .inner p {
  height: auto;
  margin-top: 45px;
  color: #fff;
  font-weight: 400;
  opacity: 0;
}
.pageGallery .caption .inner h3 {
  color: white;
  margin: 0;
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  text-transform: uppercase;
}
.pageGallery .caption .inner h3::after {
  content: '';
  width: 50px;
  height: 2px;
  left: 50%;
  bottom: -25px;
  margin-left: -25px;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.5s;
  opacity: 0;
}
