*{ 
	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;
}

/***CONTACT***/

.contact{ 
	height: 80vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.getintouch img{ 
		height: 60vh;	
}
.info{
	height: 60vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-right: 40px;
}
.info h3{
	font-size: 15px;
	color: black;
}
.icon-be, .icon-mail, .icon-movil{
	display: flex;
	justify-content: center;
	align-items: center;
}
.icon-be img{ 
	height: 40px;
	width: 40px;
	margin-right: 10px;
}
.icon-mail img{ 
	height: 40px;
	width: 40px;
	margin-right: 10px;
}
.icon-movil img{
	height: 40px;
	width: 40px;
	margin-right: 10px;
}
.mail{ 
	position: relative;
	cursor:context-menu;
}
.mail::before{
	content: 'Contact me';
	font-weight: 400;
	position: absolute;
	background-color: #1d70fa;
	border-radius: 10px;
	font-size: 12px;
	color: white;
	padding: 10px;
	display: block;
	bottom: 100%;
	left:0;
	transform: scale(0);
}
.mail:hover::before{
	transform: scale(1.0);
}
.movil{ 
	position: relative;
	cursor:context-menu;
}
.movil::before{
	content: 'Text me';
	font-weight: 400;
	position: absolute;
	background-color: #1d70fa;
	border-radius: 10px;
	font-size: 12px;
	color: white;
	padding: 10px;
	display: block;
	bottom: 100%;
	left: 0;
	transform: scale(0);
}
.movil:hover::before{
	transform: scale(1.0);
}
.behance{ 
	position: relative;
	cursor:context-menu;
}
.behance::before{
	content: 'Click';
	font-weight: 400;
	position: absolute;
	background-color: #1d70fa;
	border-radius: 10px;
	font-size: 12px;
	color: white;
	padding: 10px;
	display: block;
	bottom: 100%;
	left: 0;
	transform: scale(0);
}
.behance:hover::before{
	transform: scale(1.0);
}

/*--- media queries ---*/

@media screen and (max-width:900px){

/* _NAV BAR_RESPONSIVE */

.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;
}

/*__CONTACT - 900px__*/

.getintouch img {
    height: 55vh;
}
.info{ /*  */
	height: 42vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
	margin-right: 30px;
}
.info h3{
	font-size: 13.8px;
	color: black;
}

/*______*/

@media screen and (max-width:780px){

/*__CONTACT - 780px__*/

.contact{ 
	height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
.getintouch img {
    height: 38vh;
}
.info{
  height: 30vh;
  margin-right:0;
  padding-top: 0;
  padding-bottom: 0;

}
.info h3{
	font-size: 13px;
	color: black;
}
.icon-mail img,
.icon-movil img,
.icon-be img{
   height: 35px;
   width: 35px;
   margin-right: 10px;
}
}

@media screen and (max-width:500px){
	.responsive img{
		height: 58px;
	}
	.getintouch img {
    height: 34vh;
}
}