
*{
	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;
}

/* ABOUT */

.about{
	height: 80vh;
	display: flex;
	flex-direction: row-reverse;
	justify-content:center;
	align-items: center;	
	overflow: hidden;
}
.about-pic{
	height: 100%;
	width: 45vw;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.pic{
	height: 100%;
}
.pic900{
	display: none;
}
.about-me{
	height: 100%;
	width: 55vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.text{
	height: 70%;
	width: 70%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.grey{
	font-size: 1em;
	font-weight: 600;
	background-image:url(../img/bckg-text-about.png);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	color: white;	
	padding: 10px 20px;
	position: relative;
}
.grey:hover::after{
	content: "Don't you think?";
	position: absolute;
	top:auto;
	right:-11vw;
	color:black;
}
.text p:not(:first-child){
	padding-top: 2em;
}
.text span:not(.grey){
	font-weight: 800;
}

.pic_im780,
.pic780{
	display: none;
}

.tools{
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
.WICD{
	width: 80%;
	color: darkgrey;
	text-align: center;
}
.adobe{
	height: 30vh;
	width: 80%;
	display: grid;
	justify-items: center;
	align-items: center;
	grid-template-columns: repeat(3,auto);
}
.ai, .ps, .ae{
	height: 100px;
}

.coding{
	height: 30vh;
	width: 80%;
	display: grid;
	justify-items: center;
	align-items: center;
	grid-template-columns: repeat(3,auto);
}
.html, .css, .js{
	height: 100px;
}

/*___ 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;
}

/*---ABOUT---*/

.about{
	height: 180vh;
	flex-direction: column;
}
.about-pic{
	height: 80vh;
	width: 100%;
}
.about-me{
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.text{
	height: 90%;
	width: 80%;
}


.grey:hover{
	display: none;
}

}

@media screen and (max-width:500px){

.responsive img{
	height: 58px;
}

.pic{
	display: none;
}
.pic900{
	display:flex;
	height: 95%;
}
.text{
	height: 100%;
	width: 85%;
}
.text p{
	font-size: 15px;
}
.adobe,
.coding{
	height: 20vh;
	width: 90%;
}

.ai, .ps, .ae {
    height: 7vh;
}

.html, .css, .js{
	height: 9vh;
}
}