@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: 'Oswald', sans-serif;	
font-size: 20px;
line-height: 1.3;
color: #192132;	
}

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-image: url("images/hero-img.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	display: flex;
	justify-content:flex-start;
	align-items: baseline;
	
}

.titulo{
	width: 45%;
	padding: .8em;
}

h1{
	font-size: 2.2em;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
}

h1 span{
	font-weight: 200;
}

.bajada{
	font-size: 1.2em;
}

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

.textos{
	padding: 2em;
}

#txt1{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	padding: 1em 0em;
	
}

#txt2{
	text-align: right;
}

#modulo2{
	background-color: #a5ca00;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	
}

#modulo3{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

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

#informacion{
	background-color: rgb(255,63,210,0.56);
	padding: 2.6em;
	color: white;
	position: absolute;
	bottom: 0;
	height: 19%;
	transition: all 0.5s  ease;
	box-sizing: border-box;
	overflow: hidden;
}

#modulo3:hover .subir{
	bottom: 0;
	overflow: visible;
	height: 40%;
	opacity: 1;
}

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

#modulo4{
	width: 36%;
	margin-left: auto;
	margin-right: auto;
	padding: 3em;
	background-color: #a5ca00;
	
}

#cursor1{
	position: relative;
	top: -2.3em;
}

#modulo5{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	background-color: #ff3fd2;
	color: white;
	text-align: right;
}

#modulo6{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	height: 90vh;
	background-image: url("images/img-5.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#txt4{
	width: 66%;
	margin-left: auto;
	margin-right: auto;
}

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

#imagen-hv{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 0;
	background-image: url("images/img-4.jpg");
	background-size: cover;
	background-position: center;
}

#modulo4:hover .opacidad{
	bottom: 0;
	overflow: visible;
	opacity: 1;
}

footer{
	background-color: #a5ca00;
	padding: 2em;
}

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

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


@media screen and (max-width:1112px){
	
	body{
		font-size: 18px;
	}
	
	.titulo{
		width: 50%;
	}
	
	#informacion{
	
	height: 20%;
	
}
}

@media screen and (max-width:900px){
	body{
		font-size: 17px;
	}
	
	#modulo4{
		width: 44%;
	}
}

@media screen and (max-width:768px){
	.tarjeta{
		flex-direction: column;
	}
	
	.primario{
		width: 100%;
	}
	
	#txt2, #txt3{
		text-align: left;
	}
	
	.titulo{
		color: white;
	}
}

@media screen and (max-width:600px){
	body{
		font-size: 14px;
	}
	
	#logos{
		flex-direction: column;
	}
	
	footer{
		padding: 1em;
	}
	
	#modulo4{
		width: 48%;
	}
	
	#img3{
		height: 70vh;
	}
	
	#informacion{
	
	height: 16%;
	
}
}

@media screen and (max-width:500px){
	#modulo4{
		width: 58%;
	}
	
	#modulo6{
		height: 70vh;
	}
}

@media screen and (max-width:450px){
	
	.titulo{
		width: 90%;
		position: relative;
		top: 16em;
		margin-left: auto;
		margin-right: auto;
	}
	
	header{
		display: block;
		
	}
	
	#informacion{
	
	height: 17%;
	
}
	
	#modulo3:hover .subir{
	
	height: 54%;
	
}
	
	#modulo4{
		width: 80%;
	}

}

@media screen and (max-width:350px){
	body{
		font-size: 12px;
	}
}