@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&display=swap');
/*font-family: 'Open Sans Condensed', sans-serif;*/
  
.contenedor-img {
    width: 248px;
    height: 402px;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;   
}
    .contenedor-img .mascara,.contenedor-img .contenido {
        width: 248px;
        height: 402px;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0
    }
    .contenedor-img img {
        display: block;
        position: relative;
       
    }
    .contenedor-img h2 {
	font-family: 'Coda', cursive;
    -moz-box-shadow: inset 0px 1px 0px 0px #fff6af;
	-webkit-box-shadow: 0px 9px 16px -5px #000000;
	box-shadow: 0px 9px 16px -5px #000000;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffc800), color-stop(1, #ff9d00));
	background: -moz-linear-gradient(top, #ffc800 5%, #ff9d00 100%);
	background: -webkit-linear-gradient(top, #ffc800 5%, #ff9d00 100%);
	background: -o-linear-gradient(top, #ffc800 5%, #ff9d00 100%);
	background: -ms-linear-gradient(top, #ffc800 5%, #ff9d00 100%);
	background: linear-gradient(to bottom, #ffc800 5%, #ff9d00 100%);
 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc800', endColorstr='#ff9d00', GradientType=0);
	background-color: #ffc800;
	display: block;
	color: #333333;
	text-decoration: none;
	text-shadow: -1px 1px 0px #ffee66;
	width: 248px;
	height: 37px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 200;
	border: thin solid #FF9E00;
    }
    .contenedor-img p {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 22px;
	position: relative;
	color: #fff;
	padding: 25px 20px 10px;
	font-weight: lighter;
	margin: 5px;
	text-align: center!important;
    }
    .contenedor-img .mascara  a.saber-mas {
	font-family: 'Graduate', cursive;
	display: inline-block;
	text-decoration: none;
	padding: 7px 14px;
	background: #ff6600;
	color: #fff;
	box-shadow: 0 0 1px #ff33;
	margin-top: 40px;
	
    }
        .contenedor-img .mascara a.saber-mas:hover {
            box-shadow: 0 0 5px #000;
        }
		
		
		
/*Ejemplo 1*/
.ejemplo-1 img { 
    -webkit-transition: all 0.5s linear; 
            transition: all 0.5s linear;
}
.ejemplo-1 .mascara {
    opacity: 0;
    filter: alpha(opacity=0);
    background-color: rgba(0,0,0,0.70); 
    -webkit-transition: all 0.3s ease-in-out; 
            transition: all 0.3s ease-in-out;
}
    .ejemplo-1 h2 {
        -webkit-transform: translatey(-200px);
            -ms-transform: translatey(-200px);
                transform: translatey(-200px);
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all 0.5s ease-in-out;
                transition: all 0.5s ease-in-out;
    }
    .ejemplo-1 p { 
        -webkit-transform: translateX(200px); 
            -ms-transform: translateX(200px); 
                transform: translateX(200px);
        opacity: 0;
        filter: alpha(opacity=0);
    	-webkit-transition: all 0.4s linear;
    	        transition: all 0.4s linear;
    }
    .ejemplo-1 a.saber-mas{
        opacity: 0;
        filter: alpha(opacity=0);
    	-webkit-transition: all 0.2s ease-in-out;
    	        transition: all 0.2s ease-in-out;
        -webkit-transform: translateY(100px);
            -ms-transform: translateY(100px);
                transform: translateY(100px)
    }
    .ejemplo-1:hover img { 
    	-webkit-transform: scale(1.1); 
    	    -ms-transform: scale(1.1); 
    	        transform: scale(1.1);
    } 
    .ejemplo-1:hover .mascara { 
    	opacity: 1; 
    	filter: alpha(opacity=100);
    }
    .ejemplo-1:hover h2,
    .ejemplo-1:hover p,
    .ejemplo-1:hover a.saber-mas {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0px);
            -ms-transform: translateX(0px);
                transform: translateX(0px);
    }
    .ejemplo-1:hover p {
        -webkit-transition-delay: 0.1s;
                transition-delay: 0.1s;
    }
    .ejemplo-1:hover a.saber-mas {
        -webkit-transition-delay: 0.2s;
                transition-delay: 0.2s;
        -webkit-transform: translateY(0px);
            -ms-transform: translateY(0px);
                transform: translateY(0px);
    }
    



