/*
*  album animation features
*/
.any2 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 10;
}

.any2 > * {
  transform: translateY(12px);
  transition: transform 0.25s;
}

.any2:hover {
  opacity: 1;
}

.any2:hover > * {
  transform: translateY(0);
}

.custom1 .card h5 {
  font-size: 1.05em;
}

.any2 .h4 {
  font-size: 1.1em;
}

.any2 h5 {
  font-size: 1em;
}

.custom1 .card:hover .card-title {
  opacity: 0;
  transition: opacity 0.3s;
}

/*
  Zoom
*/
.zoom {
  transition: transform 0.7s;
}

.zoom:hover {
  transform: scale(1.035);
}
