.image_fade {
  display: block;
  width: 100%;
  height: auto;
}

.overlay_fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(240, 90, 87, 0.9);
  overflow: hidden;
  width: 100%;
  height: 0;  
  transition: .5s ease;
}

.container_overlay_fade:hover .overlay_fade {
  height: 100%;
}

.container_overlay_fade:hover .text_name {
  opacity: 0;
}

.text_fade {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}

.text_name{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    color: #FFF;
    background-color: #191919;
    text-align: center;
    opacity: 1;
    transition: .2s ease;
}

.text_name h3{
    line-height: 70px;
}

.text_name h3,
.text_fade h3,
.text_fade h4,
.text_fade p{
    color: #FFF;
}