@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: 'Barlow Condensed', sans-serif;
font-size: 22px;	
line-height: 1.3;
color: #646464;
}

img{
	max-width: 100%;
}

.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;
	
}

header{
	background-color: #cf0a2c;
	padding: 1em;
}

#hero{
	background-image: url("images/hero-img.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	padding: 2.3em;
}

h1{
	color: #92701f;
	text-transform: uppercase;
	text-decoration: underline;
	font-weight: 700;
	font-size: 4em;
		
}

#bajada{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	padding: .8em;
	font-size: 1.24em;
}

.contenedor{
	padding: 2.2em;
}

h2{
	font-size: 2.2em;
	color: black;
	font-weight: 600;
}

.textos{
	padding: 1.4em;
}

.boton{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.1em;
	background-color: #193468;
	padding: .5em;
	width: 36%;
	text-align: center;
	border-radius: 10px;
	color: white;
	letter-spacing: 5pt;
}

.borde{
	border-bottom: solid #c8c8c8;
	padding-bottom: 20px;
}

#cierre{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	padding: .6em;
}

footer{
	padding: 1em;
	background-color: #e4e4e4;
}

#logos{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

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

@media screen and (max-width: 1280px){
	.boton{
		width: 40%;
	}
}

@media screen and (max-width:1024px){
	body{
		font-size: 20px;
	}
	
	.boton{
		width: 50%;
	}
}

@media screen and (max-width: 800px){
	
	.primario{
		width: 100%;
	}
	
	.tarjeta{
		flex-direction: column;
	}
	
	.boton{
		width: 40%;
	}
	
	#bajada{
		width: 80%;
	}
	
	#cierre{
		width: 70%;
	}
}

@media screen and (max-width: 600px){
	body{
		font-size: 18px;
	}
	
	h1{
		font-size: 3em;
	}
	
	#hero{
		height: 80vh;
	}
	
	#cierre{
		width: 80%;
	}
}

@media screen and (max-width:500px){
	body{
		font-size: 17px;
	}
	
	.boton{
		width: 48%;
	}
	
	#hero{
		height: 80vh;
		padding: 1.5em;
	}
	
	#cierre{
		width: 90%;
	}
	
	#logos{
		flex-direction: column;
	}
	
	h1 br{
		display: none;
	}
}

@media screen and (max-width:400px){
	body{
		font-size: 15px;
	}
	
	.boton{
		width: 60%;
	}
}

@media screen and (max-width: 350px){

	body{
		font-size: 13px;
	}
	
	.boton{
		width: 70%;
	}
}