.view {
    width: 95%;
    height: auto;    
    border: 5px solid #fff;    
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 0 5px #492b0f;
    cursor: pointer;

}
.view .mask, .view .content {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 25%;
    left: 0;
    z-index: 5
}
.view img {
    display: block;
    position: relative;
    text-align: center;
}
.view h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background: rgba(0, 0, 0, 1); /*efecto para el titulo*/
    margin: 20px 0 0 0
}
.view p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 20px;
    position: relative;    
    color: black;
    padding: 20px 20px 20px;
    text-align: center;
    background: black;
    color:yellow;    
}
.view a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 55px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 1px #000
}
.view a.info:hover {
    box-shadow: 0 0 5px #000
}


/*En este efecto solo se aplicara algunas transiciones basicas para crear el efecto de hover.*/
.view-first img {
    transition: all 0.2s linear;
}
.view-first .mask {
    opacity: 0;
    background-color: rgba(256,256,256, 0); /*Efecto para el fondo o imagen*/
    transition: all 0.4s ease-in-out;
}
.view-first h2 {
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.view-first p {
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.2s linear;
}
.view-first a.info{
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

/*Ahora viene el corazón de nuestro efecto*/
.view-first:hover img {
    transform: scale(1.5);
}
.view-first:hover .mask {
    opacity: 1;
}
.view-first:hover h2,
.view-first:hover p,
.view-first:hover a.info {
    opacity: 1;
    transform: translateY(0px);
}
.view-first:hover p {
    transition-delay: 0.1s;
}
.view-first:hover a.info {
    transition-delay: 0.2s;
}

/*efectos con tiempo*/
.view-second img {
    transition: all 0.3s ease-in-out;
}
.view-second .mask {
    background-color: rgba(129,225,233,0.8);
    transform: translateX(-500px);
    opacity: 1;
    transition: all 0.4s ease-in-out;
}
.view-second h2{
    background: rgba(255, 255, 255, 0.6);
    color: #000;
    box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
}
.view-second p{
    opacity: 0;
    color: #333;
    transition: all 0.2s linear;
} 

/*Efecto movimiento de la imagen*/
.view-second:hover .mask {
    transform: translateX(0px);
}
.view- second:hover img {
    transform: translateX(500px);
    transition-delay: 0.1s;
}
.view- second:hover p{
    opacity: 1;
    transition-delay: 0.4s;
} 


/*Efectos para popup*/
#overview h2 { border: 1px dashed gray; padding: 10px; background-color: #ffc;
               color: black; font-size: medium; margin: 10px 0;
}
#footer { font-family: sans-serif; color: #888 }
#domMessage { padding: 10px; }
div.blockMe { padding: 30px; margin: 30px; border: 10px solid #ccc; background-color: #ffd }
#question { background-color: #ffc; padding: 10px; }
#question input { width: 4em }

#demoTable { border: 1px solid #ddd }
#demoTable tr.odd { background-color: #efe }
#demoTable th { padding: 15px; background-color: #ffa }
#demoTable td { padding: 15px; vertical-align: top }
#tallContent h1 { margin: 15px }
/*<!--  Termina codigo para popup temporal  -->  */