

/* videos */

.overlay_wonder {
  position: absolute;
  bottom: 0px;
  left: 0px;

  background-color: rgba(0, 0, 0, 0.25);
  /* Black see-through */
  width: 100%;
  height: auto;
  transition: .5s ease;
  opacity: 0;
  color: #F7F7F7;
  font-size: 14px;
  padding: 7px;
  text-align:left;
}

/* When you mouse over the container, fade in the overlay title */

.img_captation:hover .overlay_wonder {
  opacity: 1;
}

.img_captation:hover .image {
  opacity: 1;
}

@media (max-width: 576px) {
  .overlay_wonder {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    transition: .5s ease;
    opacity: 0;
    color: rgba(247, 247, 247, 0.90);
    font-size: 8px;
    padding: 5px;
    text-align:left;
  }
}