/* ---------- ANIMACIONES ---------- */
/* Sube over */
.sube{
	top: 0px;
	background-color: transparent ;
}
.sube:hover{
	transform: translate(0, -50px);
	transition-duration: 1s ;
	transition-timing-function: ease-in-out;
	/*background-color: #FFF ;*/
}
.desaparece{
	opacity: 1;
	/*background-color: rgba(255, 255, 255, 0.9) ;*/

}
.desaparece:hover{
	opacity: 0;
	transition-duration: 1s ;
	transition-timing-function: ease-in-out;
}



/* ---------- POSICIONES ---------- */
/* Arriva del otro */
.bloque-contenedor-200 {
	position: relative;
	height: 200px;
}
.bloque-contenedor-300 {
	position: relative;
	height: 300px;
}
.bloque-contenedor {
	position: relative;
	height: 450px;
}
.bloque-abajo {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index:1;
	object-fit: cover;
	width: 100% ;
}
.bloque-arriva {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index:2;
	width: 100% ;
}  



/* ---------- MARGENES ---------- */
.sinpadding [class*="col-"] {
	padding-left: 1px;
	padding-right: 1px;
}
.margen {
	padding: 2px;

}
.margen-10 {
	padding: 10px;
}
.margen-20 {
	padding: 20px;
}



/* ---------- IMAGENES ---------- */
/* Cover */
.imagen-cover{
	object-fit: cover;
	width: 100%;
	}	
.imagen-cover-50{
	object-fit: cover;
	width: 100%;
	height: 50px;
	}	
.imagen-cover-100{
	object-fit: cover;
	width: 100%;
	height: 100px;
	}		
.imagen-cover-200{
	object-fit:cover;
	width: 100%;
	height: 198px;
	}	
.imagen-cover-250{
	object-fit:cover;
	width: 100%;
	height: 250px;
	}					
.imagen-cover-300{
	object-fit:cover;
	width: 100%;
	height: 300px;
	}
.imagen-cover-350{
	object-fit:cover;
	width: 100%;
	height: 350px;
	}		
.imagen-cover-400{
	object-fit:cover;
	width: 100%;
	height: 400px;
	}			
.imagen-cover-500{
	object-fit:cover;
	width: 100%;
	height: 500px;
	}		
	/* Contain */
.imagen-contain-250{
	object-fit:contain;
	width: 100%;
	height: 250px;
	padding:15px;
	}	
.imagen-contain-200{
	object-fit:contain;
	width: 96% ;
	height: 198px;
	}



/* ---------- TAMAÑOS ---------- */
/* Altos */	
.alto-50{
	height: 50px;
}	
.alto-100{
	height: 100px;
}
.alto-150{
	height: 150px;
}
.alto-200{
	height: 200px;
}
.alto-250{
	height: 250px;
}
.alto-300{
	height: 300px;
}
.alto-350{
	height: 350px;
}
.alto-400{
	height: 400px;
}
.alto-450{
	height: 450px;
}
.alto-500{
	height: 500px;
}
/* Ancho */	
.ancho-50{
	width: 50px;
}	
.ancho-100{
	width: 100px;
}	

   
/* TEXTOS*/
.mayusculas {
	text-transform: uppercase;
	} 
.minusculas {
	text-transform: capitalize;
	} 	  
.texto-grande{
    font-size:50px;
	}	
.tipo{
	font-family: fuente;
	}	
.tipo-2{
	font-family: fuente2;
	}
@font-face {
	font-family: fuente;
	src: url("../fuente.TTF") format("opentype");
	}
@font-face {
	font-family: fuente2;
	src: url("../fuente-2.TTF") format("opentype");
	}	

/* Colores Textos*/
.color-blanco{
	color: #FFF;
	}	
.color-negro{
	color: #000;
	}    
.color-gris{
	color: #888888;
	}    	



/* Colores Fondos*/  
.fondo-blanco{
	background-color: #FFF ;
	color: #666666 ;
	} 
.fondo-negro{
	background-color: #000000 ;
	color: #e4e4e4 ;
	} 	
	
/* ---------- GENERALES ---------- */
.logo-flotante {
	position: absolute;
	margin: auto;
	top: -50px;
	left: 0px;
	width: 100%;
	z-index: 1000;
	} 
	/* Movil */
@media (max-width: 768px) {				
	.ocultar-movil{
		position: relative;
		display:none;
		}	
}		

@media (min-width: 768px) {			
	.mostrar-movil{
		position: relative;
		display:none;
		}
	}	