html
{
	font-size: 12pt;
}

body
{
	margin: 0px;
	padding: 0px;
}

body::after
{
	content: "";
	background-image: url( '../imagenes/bienvenido_fondo.jpg' );
	background-repeat: no-repeat;
	opacity: 0.5;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: fixed;
	z-index: -1;
}

.cuadro1
{
	height: 50vh;
	width: 100%;
	background-color: rgba( 73, 154, 220, 0.7 );
	position: relative;
}

.cuadro1 h1
{
	color: white;
	text-align: center;
	font-size: 22pt;
	padding-top: 25px;
}

.cuadro1 .imagen
{
	text-align: center;
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 70%;
}

.cuadro2
{
	height: 50vh;
	width: 100%;
	background-color: rgba( 255, 255, 255, 0.7 );
	position: relative;
}

.cuadro2 h1
{
	color: #333333;
	text-align: center;
	padding-top: 15px;
}

.contenido
{
	width: 55%;
	margin: auto;
}

.info_contacto
{
	border-bottom: 2px solid #2b3b6d;
	font-weight: bold;
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

footer
{
	display: flex;
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 65px;
	border-top: 3px solid #d2a92d;
	background-color: rgb(24, 56, 107);
	color: white;
	text-align: center;
}

footer > div
{
	flex: 1;
}

@media only screen and (max-width: 900px) {
	html
	{
		font-size: 10pt;
	}
 	.contenido
	{
		width: 90%;
		margin: auto;
	}
	footer
	{
		display: none;
	}
}

@media only screen and (max-height: 500px) {
	.cuadro2
	{
		overflow-y: auto;
	}
	footer
	{
		display: none;
	}
}
