
.servicio{
  height: 300px;
  padding: 15px;
  color:#fff;
}
.servicio a{
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}
.fondo{
    width: 90%;
    height: 90%;
    background-size: cover;
  background-position: center center;
    position: absolute;
    top:5%;
    left: 5%;
    transition: all 0.4s ease;
}
.capa{
  opacity: 0;
  position: absolute;
  top:0;
  left:0;
  padding: 0px 15px;
  width: 100%;
  height:100%;
  background-color: rgba(32, 41, 56,0.7);
  transition: all 0.4s ease;

}
.servicio .contenido{
  height: 90%;
  width: 90%;
  position: absolute;
  top:5%;
  left: 5%;
  z-index: 10000;
  text-align: center;
      display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;

}
.servicio .contenido .titulo h3{
  margin: 0px;
}
.servicio .contenido .titulo img{
  height: 100px;
  transition: all 0.5s ease;
}
.servicio .descripcion{
  height: 0px;
  padding:15px;
  text-align: center;
  transition: all 1s ease;
  overflow:hidden;
}
.servicio .descripcion .linea{
  border-top: solid #fff 1px;
}
.servicio:hover .fondo{
    -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
  
}
.servicio:hover .capa{
  opacity: 1;
  
}
.servicio:hover .titulo img{
  height: 60px;
  
}
.servicio:hover .descripcion{
  height: auto;

}
