@import url("https://cdn.jsdelivr.net/npm/animate.css@3.5.2/animate.min.css");

p {
	margin: 2px auto;
}

.container-fluid{
		overflow-y: hidden;
	}

.logo{
	margin: 20px;
	width: 80%;
	text-align: right;
}

.pointer{
	cursor: pointer;
}
.bg-web{
	min-height: 750px;
    background-image: url(/propuesta-fondo-3.jpg); /* ¡CORREGIDO A LA RUTA ABSOLUTA DE LA RAÍZ! */
    background-color: #cccccc;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-mobile{
	display: none;
	min-height: 750px;
	background: url(/propuesta-fondo-3.jpg) no-repeat center center; /* ¡CORREGIDO A LA RUTA ABSOLUTA DE LA RAÍZ! */
	background-size: cover;
}

.acceso-cursos{
	color: #fff;
	line-height: 12vh;
	font-size: 1em;
}

.sleeped{
	animation-delay: 0.2s;
}
.sleeped2{
	animation-delay: 0.4s;
}
.sleeped3{
	animation-delay: 0.6s;
}
.sleeped4{
	animation-delay: 0.8s;
}

.ingresar-mobile{
	display: none;
}

@media only screen and (max-width: 1200px) {
	.bg-web{
		display: none;
	}
	.bg-mobile{
		display: block;
	}
}

@media only screen and (max-width: 768px) {
	.logo{
		display: none;
	}
	.ingresar-web{
		display: none;
	}
	.ingresar-mobile{
		display: block;
	}
	/*.container-fluid{
		overflow-y: hidden;
	}*/
	/*.acceso-cursos{
		color: green;
	}*/

}