*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	height: 100vh;
	font-family: 'Montserrat', sans-serif;
}
.intro{
  width: 100%;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.saludo{
  font-size: 48px;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn { 
  0% {
    opacity: 0;
  }
  
  100% {
    opacity: 1;
  }
}

.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;
}

.hero{ 
	height: 80vh;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.logohome{ 
	height: 100vh;
	width: 45vw;
	position: fixed;	
	top: 0;
	right: 0;
	z-index: -3;
	overflow: hidden;
}
.monograma { 
    height: 70vh;
    width: 50vw;
    background-image: url(../img/logo-home.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 45vh;
    position: absolute;
    right: -22vw;
    top: -21vh;
    opacity: 0.3;
    z-index: -2;
}

.section01{ 
   height: 100%;
   width: 50vw;
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   position: relative;
}
.imagen{ 
	height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.imagen img{
	height: 80vh;
}
.codeby{ 
	position: absolute;
	bottom: 3vh;
	right: 4vw;
	transform-origin: left center;
  transform: rotate(-90deg) translateY(150px) translateX(15px);
	color: #979797;
}

.section02{
	height: 100%;
	width: 50vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.based-on, .freelancer{ 
	height: 15vh;
	width: 60%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.graphic, .designer{ 
	height: 15vh;
	width: 120%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.based-on{ 
	margin-bottom:2vh;
}
.img_fl{ 
	height:100%;
	width: 20vw;
	background-image:url(../img/home-freelancer.png);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
	position: absolute;
	left:2vw;
	top:auto;
	opacity: 1;
	transition: 0.4s;
	animation: freelancer 7s cubic-bezier(1, 0.02, 1, 1) 1;
}

@keyframes freelancer{ 
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

.graphic h1{ 
	font-size:6.8vw;
	text-transform: uppercase;
    position: absolute;
    top: auto;
    left: 5vw;
    z-index: -2;
    /*white-space: nowrap;*/
    animation: animacion01 06s cubic-bezier(0.61,-0.01, 0.35, 0.98) 1;
    cursor:context-menu;
}

@keyframes animacion01{ 
	0%{
		top: auto;
		left:-70%;
	}
	50%{
		top: auto;
		left:50%;
	}
	90%{
		top: auto;
		left:5%;
	}
	100%{
		top: auto;
		left:5vw;
	}
}
.designer h1{
	 font-size:6.8vw;;
    text-transform: uppercase;
    position: absolute;
    top: auto;
    left: 5vw;
    white-space: nowrap;
    animation: animacion02 06s cubic-bezier(0.61,-0.01, 0.35, 0.98) 1;
    cursor:context-menu;
}
.designer h1:hover{
	font-style: italic;
}
@keyframes animacion02{
	0%,{
		top: auto;
		left:85%;
	}
	50%{
		top: auto;
		left:-20%;
	}
	90%{
		top: auto;
		left:15%;
	}
		100%{
		top: auto;
		left:5vw;
	}
}

.based-on img{ 
	height: 50%;
    margin-left: 5vw;
}

@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: 70px;
}
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{
		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;
}

/*___HOME___*/

.hero{ 
	height: 80vh;
	margin-bottom: 10px;
	position: relative;
}

.monograma{
	display: none;
}

.section01 { 
    height: 80vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.imagen{ 
	align-items: flex-end;
}
.imagen img{ 
	height: 76vh;
}

.codeby { 
	height: 4vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: static;
	transform-origin: left center;
	transform: rotate(0deg);
	background-color: black;
	color:grey;
	font-size: 13px;
}


.section02{
	height: 80vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}


.based-on, .freelancer{ 
	height: 8vh;
	width: 50vw;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	margin-bottom: 1vh;
}
.graphic, .designer{ 
	height: 7vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.based-on{ 
	margin-bottom:4vh;
}
.img_fl{ /*  */
	display: block;
	height:100%;
	/*width: 20vw;*/
	background-image:url(../img/home-freelancer02.png);
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;	
	position: static;
	opacity: 1;
	transition: 0.4s;
	animation: freelancer 5s cubic-bezier(1, 0.02, 1, 1) 1;
}

@keyframes freelancer{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}


.graphic h1{
	font-size:6.8vh;
	text-transform: uppercase;
    position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
    color: black;
    white-space: nowrap;
    animation: animacion01 03s cubic-bezier(0.7, 0.39, 0.19, 1.13) 1;
    cursor:context-menu;
}

@keyframes animacion01{
	0%{
		top: 50%;
		left:10%;
	}
	50%{
		top: 50%;
		left:75%;
	}
	70%{
		top: 50%;
		left:35%;
	}
	100%{
		top: 50%;
		left:50%;
	}
}

.designer h1{
	  font-size:6.8vh;;
    text-transform: uppercase;
    position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
    color: black;
    white-space: nowrap;
    animation: animacion900 03s cubic-bezier(0.7, 0.39, 0.19, 1.13) 1;
    cursor:context-menu;
}

@keyframes animacion900{
	0%,{
		top: 50%;
		left:100%;
	}
	50%{
		top: 50%;
		left:30%;
	}
	90%{
		top: 50%;
		left:60%;
	}
		100%{
		top: 50%;
		left:50%;
	}
}


.based-on img { 
    height: 60%;
    margin-left: 0;
}

}



@media screen and (max-width:500px){

.responsive img{ 
		height: 58px;
}

.img_fl{
	width: 30vw;
}

}