@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: 'Playfair Display', serif;
	font-size: 22pt;
	line-height: 1.1;
	
}

img{
	max-width: 100%;
	
}

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

.primario{
	width: 51.8%;
}
.secundario{
	width: 47%;
}

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

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



.subtititulo{
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	padding-left: 20px;
	font-size: 42pt;
	font-variant: small-caps;
}

h1{
font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
	font-size: 90pt;
	font-variant: small-caps;
	line-height: .7;
}

.texto{
	padding: 30px;
}

#hero p{
	color: #7f7f7f;
}

.fondo{
	background-image: url("images/img-1.jpg");
	background-size: cover;
	background-position: center;
	
	height: 100vh;
		
}

#modulo1 p{
	color: white;
}

#modulo1{
	display: flex;
	justify-content:flex-end;
	align-items: center;
		
}

#modulo4{
	margin-top: -4px;
}

#cursor1, #cursor3{
	position: relative;
	margin-left: auto;
	margin-right: 0px;
	width:25%;
	margin-top: -60px;
}

#cursor2{
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width:55%;
	margin-top: -60px;
}


/* Responsive*/

@media screen and (max-width:1440px){
	
	h1{
		font-size: 80pt;
	}
}

@media screen and (max-width:1280px){
	
	body{
		font-size: 20pt;
	}
	
	h1{
		font-size: 75pt;
	}
	
	.subtititulo{
		font-size: 40pt;
	}
}

@media screen and (max-width:1132px){
	h1{
		font-size: 70pt;
	}
}

@media screen and (max-width:1060px){
	
	body{
		font-size: 18pt;
	}
	
	.subtititulo{
		font-size: 36pt;
	}
	
	
	
	h1{
		font-size: 60pt;
	}
}

@media screen and (max-width:800px){
	body{
		font-size: 13pt;
	}
	
	h1{
		font-size: 45pt;
	}
	
	.fondo{
		height: 70vh;
	}
	
	.subtititulo{
		font-size: 30pt;
		padding-left: 15px;
		
	}
	
	.primario{
		width: 54%;
	}
	
	.texto{
		padding: 25px;
	}
}

@media screen and (max-width:600px){
	
	h1{
		font-size: 34pt;
	
	}
	
	.fondo{
		height: 50vh;
	}
	
	.tarjeta{
		flex-direction: column;
	}
	
	.tarjeta2{
		flex-direction: column;
	}
	
	#modulo1 p{
		width: 55%;
	}
	
	.primario{
	   width: 100%;
	}
	
	.secundario{
		width: 80%;
	}
	
	#cursor1, #cursor3{
	position: relative;
	width:55%;
	margin-top: -70px;
}

#cursor2{
	position: relative;
	margin-left:auto;
	margin-right: 0px;;
	width:55%;
	margin-top: -60px;
}

	
}

@media screen and (max-width: 480px){
	h1{
		font-size: 28pt;
	}
	
	body{
		font-size: 11pt;
	}
	
	.fondo{
		height: 80vh;
	}
	
	.subtititulo{
		font-size: 26pt;
	}
}

@media screen and (max-width:350px){
	
	body{
		font-size: 10pt;
	}
	
	h1{
		font-size: 22pt;
	}
	
	h1 br{
		display: none;
	}
	
	.fondo{
		height: 65vh;
	}
	
	#modulo1 p{
		width: 62%;
	}
	
	.subtititulo{
		font-size: 24pt;
	}
	
	.texto{
		width: 90%;
	}
}

/* Hoover */

.fondo-h:hover{
	background-image: url("images/img-1-2.jpg");
	transition: all 1s;
	transition-timing-function: ease-in-out;
	-webkit-background-size: cover;
	background-size: cover;
	height: 90vh;
}

/* Animaciones*/

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

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