* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

body {
	background: url("../imagenes/fondo.jpg");
	 background-repeat: no-repeat;
     background-position: center center;
     background-attachment: fixed;
	font-family: sans-serif;
}
 
 .wrapper {
	 padding-left: 2vw;
	 padding-right: 2vw;
 }
 
 h1, h2 {
	 text-align: center;
 }
 
 a {
	 color: black;
	 text-decoration: none;
 }
 
 header a:hover {
	 text-decoration: underline;
 }
 
 li {
	 list-style: none;
 }
 
 #headerPrincipal {
	height: 70vh;
	overflow: hidden;
	position: relative;
	width: 100%;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
}

#textoHeaderPrincipal {
	bottom: 15%;
	/*display: none;*/
	float: right;
	max-height: 20vh;
	max-width: 100vw;
	position: absolute;
	right: 0px;
	text-align: right;
}
 
#textoHeaderPrincipal > h1 {
	font-size: 2rem;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	text-align: right;
}

#textoHeaderPrincipal > p {
	font-size: 1.25rem;
	text-align: right;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
}	

#headerMovil {
	display: block;
	position: fixed;
	width: 100%;
	z-index: 50;
	/*background-color: #FFF;
	display: block;
	height: 105px;
	transition: margin 0.2s ease;
	-webkit-transition: margin 0.2s ease;
	z-index: 5;*/
}

#menuMovil {
	float: right;
	/*width: 126px;*/
	z-index: 50;
}

#imgMenu {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-right: 50px;
}

#menuMovil ul {
	background-color: #FFF;
	float: right;
	height: 0px;
	overflow: hidden;
	/*padding: 20px;*/
	position: absolute;
	right: 0px;
	width: 100vw;
}

#menuMovil li {
	display: flex;
	width: 100%;
}

#menuMovil a {
	font-weight: bold;	
	line-height: 40px;
	padding: 10px;
	text-align: center;
	width: 100%;
}
	
.logo {
	/*background-image: url("../imagenes/sntec_logo.png");*/
	 background-repeat: no-repeat;
     background-position: center center;
     background-attachment: fixed;
	height: 50px;
	/*margin-left: 50px;*/
	/*width: 105px;*/
	width: auto;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
}
	
#headerPc {
	display: none;
}

footer {
	/*align-content: center;*/
	background: #FFF;
	/*display: flex;
	/*justify-content: center;*/
	/*margin-top: 40px;*/
	padding: 20px;
}

footer a:hover {
	text-decoration: underline;
}
/*Tablet (hasta 1024)*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.wrapper {
		padding-left: 3vw;
		padding-right: 3vw;
	}
	
	#headerMovil {
		margin-top: 0px;
		z-index: 50;
	}
	
	#menuMovil ul {
		width: 50vw;
	}
	
	#headerPc {
		display: none;
	}
}

@media screen and (min-width: 1024px) {
	.wrapper {
		padding-left: 5vw;
		padding-right: 5vw;
	}
	
	#textoHeaderPrincipal {
		bottom: 10vh;
		max-height: 50vh;
		/*max-width: 80vw;*/
		position: absolute;
		/*right: 10vw;*/
		right: 0px;
		text-align: right;
	}
	
	#textoHeaderPrincipal > h1 {
		font-size: 4rem;
		text-align: right;
	}
	
	#textoHeaderPrincipal > p {
		text-align: right;
	}
	
	#headerMovil {
		display: none;
	}
	
	#headerPc {
		display: block;
		margin-top: 20px;
		width: 100%;
		z-index: 50;
	}
	
	.header {
		position: fixed;
		transition: all 1s ease;
		-webkit-transition: all 1s ease;
	}
	
	#menuPc {
		float: right;
		height: 105px;
		/*margin-top: -105px;*/
		min-width: 520px;
		transition: all 1s ease;
		-webkit-transition: all 1s ease;
		z-index: 5;	
	}
	
	#menuPc ul {
		display: flex;
		flex-wrap: wrap;
		float: right;
		height: 105px;
		/*margin-right: 3.177vw;*/
		transition: all 1s ease;
		-webkit-transition: all 1s ease;
	}
	
	#menuPc li {
		align-items: center;
		display: flex;
		justify-content: center;
		padding-left: 1.5875vw;
	}
	
	#menuPc a {
		/*color: #FFF;*/
		font-weight: bold;
	}
}