/* Enter Your Custom CSS Here */
.general {
  width: 100%;
  font-family: normal 9px Comic Sans MS;
    /* Estilos flexbox */
    display: flex; /* permite organizar los iconos a la izquierda del anterior */  
    flex-direction: row;
    flex-wrap: wrap; 
}

/*------------------------------------------------------------------------------*/

/* ACA COMIENZAN LOS DEMAS ESTILOS CON OPACIDAD Y TRANSFORMACIONES DE LA PAGINA DE INICIO */

/*--------------------------------------------------------------------------------*/


.contenedor-img {
    width: 373px;
    height: 270px;
    margin-top: 20px;
  	margin-left: 15px;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    background: #fff;
    border-radius: 20px;
}
    .contenedor-img .mascara,.contenedor-img .contenido {
        width: 373px;
        height: 270px;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        border-radius: 20px;
    }

    .contenedor-img img {
        display: inline-block;
        position: relative;
        float: left;
        display: flex;  
        overflow: hidden;
  		opacity: 0.8
    	border-radius: 20px;
}
    .contenedor-img h2 {
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        position: relative;
        font-size: 17px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.9);
        margin: 20px 0 0 0
    }
    .contenedor-img p {    
        font-size: 12px;
        position: relative;
        color: #fff;
        padding: 10px 20px 10px;
        text-align: center
    }
    .contenedor-img a.link {
        display: inline-block;
        text-decoration: none;
        padding: 7px 14px;
        background: #222;
        color: #fff;
        text-transform: uppercase;
        box-shadow: 0 0 1px #000;
  		color: red;
      	border-radius: 10px;
    }
    .contenedor-img a.link:hover {
        box-shadow: 0 0 5px #000
 }

/*Ejemplo 1*/
.ejemplo-1 img { 
    transition: all 0.2s linear;
  	margin-left:0px;
  	border-radius: 20px;
  	overflow: hidden;
}
.ejemplo-1 .mascara {
    opacity: 0;
    background-color: rgba(46, 157, 120, 0.7); 
    transition: all 0.3s ease-in-out;
  	border-radius: 20px;
  	overflow: hidden;
}
    .ejemplo-1 h2 {
        transform: translateX(-200px);
    	margin-left:0px;
        opacity: 0;
        transition: all 0.7s ease-in-out;
    }
    .ejemplo-1 p { 
        transform: translateX(20px);
        opacity: 0;
    	transition: all 0.4s linear;
    }
    .ejemplo-1 a.link{
        opacity: 0;
    	transition: all 0.4s ease-in-out;
        transform: translateY(200px)
    }
    .ejemplo-1:hover img { 
    	-webkit-transform: scale(1.1);
  		-moz-transform: scale(1.1);
  		-ms-transform: scale(1.1);
  		-o-transform: scale(1.1);
  		overflow: hidden;
  		border-radius: 20px;
    } 
    .ejemplo-1:hover .mascara { 
    	opacity: 1;
  		overflow: hidden;
    }
    .ejemplo-1:hover h2,
    .ejemplo-1:hover p,
    .ejemplo-1:hover a.link {
        opacity: 1;
        transform: translateX(0px);
    }
    .ejemplo-1:hover p {
        transition-delay: 0.1s;
    }
    .ejemplo-1:hover a.link {
        transition-delay: 0.2s;
        transform: translateY(-20px);
    }
    
    
/*Ejemplo 2*/
.ejemplo-2 img { 	
	transition: all 0.2s ease-in;
  	border-radius: 20px;
}
.ejemplo-2 .mascara { 
	background-color: rgba(52, 98, 100, 0.8); 
	width: 620px;
    padding: 60px;
	height: 480px;
	opacity: 0;
	transform: translate(400px, 300px) rotate(45deg);
	transition: all 0.5s ease-in-out;
  	border-radius: 20px;
}
.ejemplo-2 h2 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    margin: 20px 40px 0px 40px;
    transform: translate(200px, -200px);
	transition: all 0.3s ease-in-out;
}
.ejemplo-2 p { 
	transform: translate(-200px, 200px);
	transition: all 0.4s ease-in-out;
}
.ejemplo-2 a.link { 
    transform: translate(0px, 140px);
	transition: all 0.3s 0.1s ease-in-out;
} 

.ejemplo-2:hover .mascara { 
	opacity:1; 
	transform: translate(-70px, -70px) rotate(45deg);  	
}							  
.ejemplo-2:hover h2 { 
	transform: translate(0px,0px);
	transition-delay: 0.3s; 
}
.ejemplo-2:hover p { 
    transform: translate(0px,0px); 
	transition-delay: 0.4s;
}
.ejemplo-2:hover a.link { 
	transform: translate(0px,-20px); 
	transition-delay: 0.5s;
}


/*Ejemplo 3*/
.ejemplo-3 img {
	transition: all 0.4s ease-in-out;
  	border-radius: 20px;
}
.ejemplo-3 .mascara { 
	background-color: rgba(49, 74, 114, 0.5);
	transform: translateX(-420px);
	opacity: 1;
	transition: all 0.4s ease-in-out; 
  	border-radius: 20px;
}
.ejemplo-3 h2{
    background: rgba(255, 255, 255, 0.3);
    color: #000;
    box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
}
.ejemplo-3 p{
    color: #333;   
}
.ejemplo-3:hover .mascara { 
	transform: translateX(0px);
  opacity:1;
}						
.ejemplo-3:hover img { 
	transform: translateX(375px);	
}



/*Ejemplo 4*/
.ejemplo-4 img { 
	transition: all 0.4s ease-in-out 0.2s;
    opacity: 1;    
  	border-radius: 20px;
}
.ejemplo-4 .mascara { 
	background-color: rgba(46, 157, 120, 0.8);
	opacity: 1;
	transform: scale(0) rotate(-180deg);
	transition: all 0.4s ease-in;
  	border-radius: 20px;
}
.ejemplo-4 h2{
    opacity: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    margin: 20px 40px 0px 40px;
	transition: all 0.5s ease-in-out;
}
.ejemplo-4 p { 
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.ejemplo-4 a.link { 
    opacity: 0;
	transition: all 0.5s ease-in-out;
} 

.ejemplo-4:hover .mascara { 
	opacity: 1; 
	transform: scale(1) rotate(0deg);
	transition-delay: 0.2s;
}								  
.ejemplo-4:hover img 	  { 
	transform: scale(0); 
    opacity: 1;
	transition-delay: 0s;
}						
.ejemplo-4:hover h2,
.ejemplo-4:hover p,
.ejemplo-4:hover a.link{
    opacity: 1;
    transition-delay: 0.5s;
}

/*Ejemplo 5*/
.ejemplo-5 img { 
	transform: scaleY(1);
	transition: all 0.7s ease-in-out;
    opacity: 1;
  	border-radius: 20px;
    
}
.ejemplo-5 .mascara { 
    background-color: rgba(52, 98, 100, 0.9); 
    transition: all 0.5s linear;
    opacity: 0;
  	border-radius: 20px;
  	overflow: hidden;
}	
.ejemplo-5 h2{
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    margin: 20px 40px 0px 40px;
    transform: scale(0);
    color: #fff;
    transition: all 0.5s linear;
    opacity: 0;
}
.ejemplo-5 p {
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s linear;
}
.ejemplo-5 a.link { 
    opacity: 1;
    transform: scale(0);
    transition: all 0.5s linear;
    background-color: rgba(0, 0, 0, 0.9);
  	margin-top: 20px;
}

.ejemplo-5:hover img { 
	transform: scale(10);
    opacity: 1;
}
.ejemplo-5:hover .mascara { 
	opacity: 1;
}																			 
.ejemplo-5:hover h2,
.ejemplo-5:hover p,
.ejemplo-5:hover a.link{ 
    transform: scale(1);
    opacity: 1;
}

/*Ejemplo 6*/
.ejemplo-6 img { 
	transition: all 0.4s ease-in-out 0.2s;
    opacity: 1;    
  	border-radius: 20px;
}
.ejemplo-6 .mascara { 
	background-color: rgba(49, 74, 114, 0.8);
	opacity: 1;
	transform: scale(0) rotate(180deg);
	transition: all 0.4s ease-in;
    border-radius: 0px;
  	border-radius: 20px;
}
.ejemplo-6 h2{
    background: rgba(255, 255, 255, 0.3);
    color: #000;
    box-shadow: 0px 1px 3px rgba(159, 141, 140, 0.5);
}
.ejemplo-6 p { 
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.ejemplo-6 a.link { 
    opacity: 0;
	transition: all 0.5s ease-in-out;
} 

.ejemplo-6:hover .mascara { 
	opacity: 1; 
	transform: scale(1) rotate(0deg);
	transition-delay: 0.2s;
}								  
.ejemplo-6:hover img 	  { 
	transform: scale(0); 
    opacity: 0;
	transition-delay: 0s;
}						
.ejemplo-6:hover h2,
.ejemplo-6:hover p,
.ejemplo-6:hover a.link{
    opacity: 1;
    transition-delay: 0.5s;
}

/*---------------------------------------------------------------------------------------------*/

/* A PARTIR DE ESTE MOMENTO SE DEFINE EL ESTILO PARA LAS HOJAS CONSIDERADAS CONTENEDORES */

/*---------------------------------------------------------------------------------------------*/

body {
	font-family: normal 9px Comic Sans MS;
	background: #fff;
}

#divContenedor { /* Contenedor general */
	display: inline-block;
	margin: auto;
	width: 80%;
  	margin-left: 25px;
	top: 0px;
    overflow: hidden;
    	/* border: 1px solid #f1f1f1; */
  
      /* Estilos flexbox */
    display: flex; /* permite organizar los iconos a la izquierda del anterior */  
    flex-direction: row;
    flex-wrap: wrap; 
}

#clsImagen { /* Contenedor de las imagen */
    /*border: 1px solid #000;*/
    width: 200px;
    height: 240px;
    overflow: hidden;
    display: inline-block;
  margin-top: 20px;
  margin-left: 30px;
	box-sizing: padding-box;
    border-radius: 5px;
	background-image: url("http://cs.creartesoluciones.com/wp-content/uploads/2016/03/gradiente-gris.png");
	box-shadow: 2px 2px 10px #000;
}

#clsImagen img { /* Parametros de la imagen */
	margin: 10px 40px;
    overflow: hidden;
        -webkit-transition: all 4s ease;
            -moz-transition: all 4s ease;
  				-ms-transition: all 4s ease;
                	-o-transition: all 4s ease;
}

#clsImagen h6 {
    color: white;
}

#clsImagen:hover img { /* Activa el efecto de zoom sobre la imagen */
    width: 130px;
    height: 130px;
	margin-left: 10px; /* movimiento del zoom hacia izquierda o derecha */
}

#clsPanel { /* Efecto de panel deslizable */
		-webkit-transition: all 0.5s ease-in;
			-moz-transition: all 0.5s ease-in;
  				-ms-transition: all 0.5s ease-in;
					-o-transition: all 0.5s ease-in;
						transition: all 0.5s ease-in;
		position: fixed;
		background: #fff;
        box-shadow: 2px 2px 10px black;
		right: 0;
		top: 11%;
		width: 0;
		height: 90%;
		overflow: hidden;
		box-shadow: 0 0 10px #000;
		color: #000;
}

#clsImagen:hover #clsPanel { /* activa el efecto del panel deslizable */
	width: 300px;
}

#clsTitulo {
	margin: 60px 0px 40px 20px;
	width: 280px;
}

#clsContenido {
	margin: 0px 10px;
	width: 280px;
}

#clsContenido p { 
    text-align: justify;
}

/* ---------------------------------------------------------------------------  */

 /* ESTILOS DE LOS ENLACES DE LAS ETIQUETAS EN LA PAGINA DE MONITOREO DE REDES  */

/* ---------------------------------------------------------------------------- */

#vineta ul{
	margin:0;
	padding:0 0 20px 30px;
}

#vineta ul li{
	margin: 0px 20px;
	padding:1px 0 2px 0;
	list-style-type: circle; /*este es el tipo de viñeta*/
	font-size: 14px; /*este es el tamaño de la viñeta*/
	color: #f8b22a;  /*este es el color de la viñeta*/
}

#vineta ul li:hover { 
	/* aquí van los estilos que se verán al poner el puntero sobre el enlace*/
	list-style-type: square; /*este es el estilo de la viñeta*/
	color: gray; /*aquí pones el color que se verá la viñeta al poner el puntero encima "efecto hover" */
} 

#vineta li{
	margin:0;
	padding:0;
}

#vineta li a{
	font-size: 14px;/*este es el tamaño de la letra de la etiqueta*/
	padding:0;
	margin:0;
	text-decoration: none;
    color: gray;
}

#vineta li a:hover {
	color: gray; /*aqui pones el color del enlace de la etiqueta al poner el puntero arriba*/
	font-weight: bold; /*si en lugar de normal pones bold la letra se vera negrita al poner el puntero del ratón encima*/ }


/* ---------------------------------------------------------------------------

		ESTILO PARA LA PAGINA DE DESCARGAS

------------------------------------------------------------------------------*/
.descargas {
    width: 100%;
}

.eldiv { 
  background-color: white;
  padding: 20px;
    width: 370px; 
    height: 100px;
    margin: 10px auto;
    position: relative;
  	opacity: 0.7;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(173,168,173,50);
    -moz-box-shadow: 0px 0px 12px 0px rgba(173,168,173,50);
    -ms-box-shadow: 0px 0px 12px 0px rgba(173,168,173,50);
    -o-box-shadow: 0px 0px 12px 0px rgba(173,168,173,50);
    box-shadow: 0px 0px 12px 0px rgba(173,168,173,50);
  border-radius: 7px;
}

.grow { 
    float: top;
    margin-left: 25px;
    z-index: 1; /* z-index nos permite crear capas para apilar imagenes a alturas diferentes*/
    float: left;
}

.grow:hover { 
    -webkit-transform: scale(1.1); 
    -moz-transform: scale(1.1); 
    -ms-transform: scale(1.1); 
    -o-transform: scale(1.1); 
    transform: scale(1.1); 
  	opacity: 1;
}
