#gallery-category-child-container .gallery-category-child-image a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden; }

#gallery-category-child-container .gallery-category-child-image .gallery-category-child-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  opacity: 0;
  transition: all ease-out .3s;
  transform: translateY(-25px); }

#gallery-category-child-container .gallery-category-child-image:hover .gallery-category-child-overlay {
  opacity: 1;
  transform: translateY(0); }
