@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: 'Poppins', sans-serif;	
font-weight: 300;
font-size: 22px;	
line-height: 1.3;
}

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

.textos{
	padding: 2.2em;
}

header{
	padding: 1.2em;
	background-color: black;
}

#hero{
	height: 100vh;
	background-image: url("images/hero-img.jpg");
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	max-width: 100%;
}

.marca{
	font-weight: 400;
	text-decoration: underline;
	font-size: 1.3em;
}

h1{
	font-family: 'Oswald', sans-serif;
	font-size: 4em;
	text-transform: uppercase;

}

h1 span{
	font-weight: 700;
	color: #e59610;
}

.titulo{
	padding: 3em;
	width: 44%;
}

.bajada{
	font-size: 1.1em;
}

#informacion{
	background-color: rgb(0,0,0,0.50);
    color: white;
	position: absolute;
	bottom: 0;
	height: 13%;
	transition: all 0.5s  ease;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 0;
}

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

#cursor2{
	position: relative;
	top: -3em;
}

main{
	padding: 1em 6em;
}

h2{
	font-family:'Oswald', sans-serif;
	font-weight: 600;
	font-size: 2.4em;
	color: #e59610;
	text-transform: uppercase;
}

h2 span{
	font-weight: 200;
	color: black;
}

#modulo5{
	background-image: url("images/img-2.jpg");
	height: 100vh;
	background-size: cover;
	max-width: 100%;
	background-repeat: no-repeat;
	background-position: right;
	display: flex;
	align-items: flex-end;
}

#txt5{
	width: 44%;
}

.margen{
	padding: 1em 10em;
}

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

#txt6{
	padding: 1em;
	width: 74%;
	margin-left: auto;
	margin-right: auto;
}

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

@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){
	body{
		font-size: 20px;
	}
	
	.titulo{
		width: 60%;
	}
}

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

@media screen and (max-width:800px){
	.titulo{
		width: 76%;
	}
	
	.primario{
		width: 100%;
	}
	.tarjeta, .tarjeta2{
		flex-direction: column;
	}
	
	#modulo2:hover .subir{
	
	height: 44%;
	
}
	#txt5{
	width: 100%;
	background-color: rgb(230,230,228,.50);	
}
	.margen{
	padding: 1em 4em;
}
	#txt6{
	
	width: 86%;
	
}
}

@media screen and (max-width:600px){
	body{
		font-size: 16px;
	}
	
	#hero{
		height: 54vh;
	}
	
	.titulo{
		width: 100%;
		background-color: rgb(230,230,228,.50);
	}
	
	main{
		padding: 1rem 4rem;
	}
	#modulo2:hover .subir{
	
	height: 60%;
	
}
	
	#txt6{
	
	width: 100%;
	
}
	
}

@media screen and (max-width:500px){
	body{
		font-size: 14px;
	}
	
	#hero{
		height: 50vh;
	}
	
	main{
		padding: 1rem 3rem;
	}
	
	.margen{
	padding: 1em 3em;
}
}

@media screen and (max-width:450px){
	body{
		font-size: 12px;
	}
	
	#modulo5{
		height: 60vh;
	}
	
	main{
		padding: 1rem 2rem;
	}
	
	#modulo2:hover .subir{
	
	height: 80%;
	
}
}

@media screen and (max-width:350px){
	body{
		font-size: 10px;
	}
	
	#hero{
		height: 46vh;
	}
}