*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	height: 100vh;
	font-family: 'Montserrat', sans-serif;
}
.header{
	height: 20vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 5vw;
	font-weight: 600;
}
.header img{
	height:100px;
	padding: 0 40px;
}
nav ul{
	display: flex;
}
nav li{
	list-style: none;
}
nav li:nth-child(2){
	margin-left: 80px;
}
nav a{
	text-decoration: none;
	font-size: 20px;
	color: black;
	text-transform: uppercase;
	padding: 10px;
}
nav a:hover{
	border-bottom:2px solid black;
}
.responsive{
	display: none;
}
.abrir,.cerrar{
	-webkit-appearance:none;
	appearance: none;
	display:none;
}
/*___Lettering___*/

.lettering01{
	min-height: 80vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-image:url(../img/bckg_lettering_01.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
}

.lettering01 img{
	height: 60vh;
	display: block;
	background-color: #f2f2f2;
}
.lettering02{
	height: 100vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-image:url(../img/bckg_lettering_01.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
	}
	.lettering02 img{
	height: 50vh;
	display: block;
}
.lettering03{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image:url(../img/bckg_lettering_01.jpg);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	}
	.lettering03 img{
	height: 70vh;
	display: block;
}

/*__media queries___*/

@media screen and (max-width:900px){

/* _NAV BAR_RESPONSIVE - 900px */

.header{
	display: none;
}
.responsive{
	height: 20vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 7vw;
}
.responsive img{
		height: 75px;
}
nav{
		position: fixed;
		top:-100vh;
		left:0;
		z-index: 2;
		padding:20px;
		width: calc(100% - 5px);
		height: calc(100vh - 5px);
		display: block;
		background-image:url(../img/bckg-nav.jpg);
		background-repeat: no-repeat;
		background-position:right;
		background-size: cover;	
		display: flex;
		justify-content: center;
		align-items: center;
		transition: top 0.8s;
	}
nav a{
	font-weight: 600;
	color:white;
	font-size:2em;
}
nav a:hover{
	border-bottom:0;
}
.desplegado{
	top:0;
}
nav ul{
	display: block;
}
nav li:not(:last-child){
	margin-right:0;
}
nav li:not(:first-child){
	margin-top: 20px;
}
nav li:nth-child(2) {
    margin-left: 0;
}
.cerrar{
	display:block;
	background-color:transparent;
	border:none;
	color:#1b1a1d;
	font-size:1.5em;
	font-weight:600;
	cursor:pointer;
	position:absolute;
	top:20px;
	right:20px;
}
.abrir img{
	display: block;
	height: 40px;
	cursor: pointer;
}
.abrir{
		display: block;
		background-color: transparent;
		border: 2px solid #777;
		border-radius: 5px;
		width:45px;
		height: 40px;
		padding: 5px 5px 0;
		cursor: pointer;
}
.abrir span{
		display: block;
		height:2px;
		background-color: #777;
		margin-bottom:5px;
}

/*___Lettering__*/


.lettering02{
	flex-direction: column;
    justify-content: space-evenly;
}
.lettering02 img {
    height: 45vh;
}
}
@media screen and (max-width:780px){

.lettering01 img{
	height: 45vh;
}
.lettering02 img{
	height: 40vh;
}
.lettering03 img{
	height: 45vh;
}
}
@media screen and (max-width:500px){

.responsive img{
	height: 58px;
}
.lettering01 img{
	height: 35vh;
}
.lettering02 img{
	height: 34vh;
}
.lettering03 img{
	height: 34vh;
}
}

