@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CSS Reset */ 
*{
	box-sizing: border-box;
}

img{
	max-width: 100%;
}

body{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 26pt;
	color: white;
}

.modulo{
	position: relative;
	overflow: hidden;
}

.primario{
	width: 50%;
}

.tarjeta{
	display: flex;
	justify-content: center;
	align-items: center;
}
.tarjeta2{
	display: flex;
	justify-content:center;
	align-items: center;
	flex-direction: row-reverse;
}
.subtitulo{
	font-size: 45pt;
}
.contenedor{
	padding: 40px;
}

.azul1{
	background-color: #13437f;
}

.azul2{
	background-color: #002d59;
}

.azul3{
	background-color: #004894;
}

.azul4{
	background-color: #016bcb;
}

h1{
	font-size: 60pt;
	position: relative;
	margin-top: -130px;
}

#tarjeta1{
	text-align: center;
	border-right: solid;
}

#tarjeta2{
	text-align: center;
}

#modulo2{
	text-align: center;
}

footer{
	text-align: center;
}

footer p{
	border-bottom: solid;
	width: 90%;
	margin-left:auto;
	margin-right: auto;
		
}

/* Interacciones */

.cursor{
	transition: all 2s ease;
}
.cursor:hover{
	transform: scale(1.05);
}

/* Responsive */ 

@media screen and (max-width:1290px){
	
	body{
		font-size: 22pt;
	}
	
	h1{
		font-size: 45pt;
	}
	
	.subtitulo{
	font-size: 40pt;
}
}

@media screen and (max-width:1024px){
	
	body{
		font-size: 18pt;
	}
	
	h1{
		font-size: 35pt;
	}
	
	.subtitulo{
		font-size: 26pt;
	}
}

@media screen and (max-width:768px){
	
	body{
		font-size: 13pt;
	}
	
	.subtitulo{
		font-size: 22pt;
	}
}

@media screen and (max-width:500px){
	h1{
		font-size: 22pt;
		margin-top: -60px;
	}
	
	body{
		font-size: 14pt;
	}
	
	.subtitulo{
		font-size: 20pt;
	}
	
	.primario{
		width: 100%;
	}
	
	.tarjeta{
		flex-direction: column;
	}
	
	.tarjeta2{
		flex-direction: column;
	}
	
	.contenedor{
		padding: 25px;
	}
	
	#tarjeta1{
		border-right: none;
		border-bottom: solid;
	}
	
	footer br{
		
		display: none;
	}
}

@media screen and (max-width:320px){
	body{
		font-size: 11pt;
	}
	
	h1{
		font-size: 14pt;
	}
	
	.subtitulo{
		font-size: 13pt;
	}
	
	
}