@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: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 24pt;
	color: #004894;
}

.modulo{
	position: relative;
	overflow: hidden;
}

.primario{
	width: 50%;
}

.tarjeta1{
	display: flex;
	justify-content: center;
	align-items: center;
}
.tarjeta2{
	display: flex;
	justify-content:center;
	align-items: center;
	flex-direction: row-reverse;
}

.contenedor{
	padding: 40px;
}

.txt-hero{
	
	color: white;
}

.subtitulo{
	font-size: 50pt;
	font-weight:500;
}

.azul1{
	background-color: #004894;
}

.azul2{
	background-color: #002D59;
}
.blanco{
	background-color: #FFF;
}

h1{
	font-size: 62pt;
	margin-top: 40px;
}

#titulo{
	position: relative;
	margin-top: -260px;
	margin-left: 40px;
}

.hero-txt1{
	font-size: 30pt;
}
.hero-txt2{
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 25pt;
}

footer {
	border-top: solid;
	border-color: white;
}


/* Interacciones */

.cursor{
	transition: all 2s ease;
}
.cursor:hover{
	transform: scale(1.05);
}


@media screen and (max-width: 1440px){
	
	body{
	font-size: 20pt;
	}
	.subtitulo{
	font-size: 40pt;
	
	}
	
}
@media screen and (max-width: 1024px){
	
	body{
	font-size: 15pt;
	}
	h1{
	font-size: 40pt;
	}
	.subtitulo{
	font-size: 30pt;
	}
	.hero-txt1{
	font-size: 20pt;
	}
	.hero-txt2{
	
	font-size: 18pt;
	}
	
	}
@media screen and (max-width: 768px){
	body{
	font-size: 12pt;
	}
	h1{
	font-size: 30pt;
	margin-top: 15px;
	}
	#titulo{
		margin-top: -200px;
	}
	.subtitulo{
	font-size: 20pt;
	}
	.hero-txt1{
	font-size: 15pt;
	}
	.hero-txt2{
	
	font-size: 15pt;
	}
	
	}

@media screen and (max-width: 500px){
	
	.tarjeta1 {
		flex-direction: column;
	}
	.tarjeta2 {
		flex-direction: column;
	}
	.primario {
		width: 100%;
	}
	.contenedor {
		padding: 20px;
	}
	
	#titulo{
		margin-top: -20px;
		margin-left: 10px;
	}
	h1{
	margin-top: 10px;
		font-size: 20pt;
	}
	.hero-txt1{
	font-size: 12pt;
	}
	.hero-txt2{
	font-size: 12pt;
	}
	}

	

