@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*/ 

body{
     font-family: TagusCond-Regular;
	 font-size: 20pt;
}

img{
	max-width: 100%;
}

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

.primario{
	width: 50%;
}

.tarjeta{
	display: flex;
	justify-content: center;
	align-items: center;
}

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

.verde-bck{
	background-color: #00af3f;
}

.verde-ty{
	color: #00af3f;
}
.blanco-ty{
	color: white;
}

h1{
	color: #001750;
	font-family: TagusCond-Bold;
	font-size: 50pt;
	text-transform: uppercase;
}

.texto{
	padding: 80px;
}

.txt{
	padding: 30px;
}

.sub-h{
	font-size: 50pt;
	
}

.subt{
	color: #00af3f;
	font-family: TagusCond-Bold;
	font-size: 32pt;
	text-transform: uppercase;
}

.subt-wht{
	color: white;
	font-family: TagusCond-Bold;
	font-size: 32pt;
	text-transform: uppercase;
	padding: 20px;
}

.txt-bl{
	color: white;
	text-align: center;
	padding: 10px;
}

.secundario{
	width: 65%;
}

.tercero{
	width: 35%;
}

.margen{
	padding: 30px 80px;
}

#txt2{
	margin-left: auto;
	margin-right: auto;
}

.cursor-izq{
	width: 50%;
	text-align: center;
	
	position: relative;
	top: -90px
}

.cursor-der{
	width: 75%;
	position: relative;
	top: -95px;
}

/* Responsive*/

@media screen and (max-width:1040px){
	body{
		font-size: 18pt;
	}
}

@media screen and (max-width:970px){
	h1{
		font-size: 40pt;
	}
	
	.sub-h{
		font-size: 38pt;
	}
	
	body{
		font-size: 16pt;
	}
	
	.subt{
		font-size: 24pt;
	}
	
	.subt-wht{
		font-size: 24pt;
	}
}

@media screen and (max-width:600px){
	.tarjeta{
		flex-direction: column;
	}
	
	#hero{
		flex-direction: column-reverse;
	}
	
	.primario{
		width: 100%;
	}
	
	#titulo{
		width: 90%;
	}
	
	#img{
		padding: 20px 20px 0px 20px;
		width: 80%;
	}
	
	.secundario{
		width: 100%;
	}
	
	.tercero{
		width: 100%;
	}
	#txt2{
		padding:20px 0;
		width: 90%
	}
	
	.tarjeta2{
		flex-direction: column;
	}
	
	.cursor-izq{
	width: 100%;
	text-align: center;
	padding-left: 0px;
	position: relative;
	top: -330px;
		
}

.cursor-der{
	width: 50%;
	position: relative;
	top: -350px;
	
}
}

@media screen and (max-width:480px){
	
	.margen{
		padding: 30px 60px;
	}
	
	.txt{
		padding: 25px;
	}
}



@media screen and (max-width:380px){
	
	body{
		font-size: 14pt;
	}
	
	.margen{
		padding: 20px 40px;
	}
	
	.texto{
		padding: 50px;
	}
	
	.cursor-izq{
		top: -300px;
	}
	
}

@media screen and (max-width:340px){
	h1{
		font-size: 30pt;
	}
	
	.sub-h{
		font-size: 28pt;
	}
	
	body{
		font-size: 12pt;
	}
	
	.subt{
		font-size: 20pt;
	}
	
	.margen{
		padding: 20px 32px;
	}
	
	.cursor-der{
		top: -300px;
	}
	
	
}

/* Animaciones*/

.blue-bck{
	transition: all .5s ease;
	
}

.blue-bck:hover{
	background-color: #001750;
}

.anima{
	animation-name: aparece;
	animation-duration: 1.5s;
	animation-direction: normal;
	animation-timing-function: ease-in-out;
	
	
}
@keyframes aparece{
	0%, 10%{
		opacity: .1;
		
	}
	11%, 20%{
		opacity: .2;
		
	}
	
	21%, 30%{
		opacity: .3;
	}
	31%, 40%{
		opacity: .4;
	}
	
	41%, 50%{
		opacity: .5;
	}
	
	51%, 60%{
		opacity: .6;
	}
		
	61%, 70%{
		opacity: .7;

	}
	71%, 80%{
		opacity: .8;
	}
	81%, 90%{
		opacity: .9;
	}
	91%, 100%{
		opacity: 1;
	}
	
	
}

@keyframes flota{
	from{
		transform: translateY(0px);
	}
	
	to{
		transform: translateY(-10px);
	}
}

.flotar{
	animation: flota 1s infinite;
	animation-timing-function: linear;
	
}
