/*Styling smooth-entrance*/
.come-in {
  transform: translateY(150px);
  -webkit-transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 0.6s; /* So they look staggered */
}

@keyframes come-in {
  to { 
  	transform: translateY(0);
  	-webkit-transform: translateY(0);

   }
}
/*End of Styling smooth-entrance*/

body{
	font-family: 'Roboto Condensed', sans-serif;
}

nav #logo, .about, footer{
	user-select: none;
}

header{
	background: linear-gradient(45deg,#9559D5, #5095F4);
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	flex-flow: column;
	padding: 40px 0;
}

nav, .container{
	width: 80%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
}

nav #logo, footer #logo{
	background-image: url(../assets/vl-logo.svg);
	background-repeat: no-repeat;
	width: 35px;
	height: 37px;
	cursor: pointer;
	transition: opacity .5s ease;
}

#logo:hover{
	opacity: .8;
}

header span, h1, strong{
	font-size: 20px;
	color: #fff;
	text-align: center;
	line-height: 24px;
}

header span{
	font-weight: 100;
	padding: 120px 0 180px;
}

header strong{
	font-weight: 700;
}

.about, .contact{
	background: #fff;
}

.about .skill-set{
	background: #F7F7F7;
	width: 100%;
	padding: 60px;
	display: inline-block;
	color: #1c1c1c;
	display: flex;
	align-items: center;
	flex-flow: column;
	margin-top: -60px;
}

h3{
	font-weight: 400;
	font-size: 14px;
	text-align: center;

}

.about h3 span{
	color: #9559D5;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
}

.skill-list-container{
	padding-top: 10px;
	display: flex;
	opacity: .8;
	line-height: 20px;
}

.skill-list h4{
	color: #9559D5;
	font-size: 16px;
	font-weight: 700;
}

.about .skill-list:nth-child(2){
	padding: 0 10px;
}

.about .skill-list img{
	width: 100%;
	height: 6px;
}

.about .skill-list ul{
	font-weight: 300;
	font-size: 12px;
}

.about .workflow{
	display: flex;
	align-items: center;
	flex-flow: column;	
	padding: 20px 0 0;
}

.about a .scroll-down, .contact-header a .scroll-down{
	height: 30px;
	display: block;
	padding: 15px 0;
	cursor: pointer;
}

.y-float {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.y-float:hover, .y-float:focus, .y-float:active{
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

a{
	text-decoration: none;
}

.project{
	width: 100%;
	padding: 280px 0;
	transition: all .5 ease;
}

.projects .project:first-child{
	background-image: url(../assets/project-1.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.project:nth-child(2){
	background-image: url(../assets/project-2.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
}

.project:nth-child(3){
	background-image: url(../assets/project-3.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
}

.project:last-child{
	background-image: url(../assets/project-4.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
}

.contact form{
	width: 80%;
	padding: 40px 0;
	display: flex;
	flex-flow: column;
	color: #1c1c1c;
}

input{
	border-bottom: 1px solid #9559D5;	
}

input, textarea{
	box-sizing: border-box;
	-webkit-border-radius:0;
	-webkit-appearance: none;	
	padding-left: 0;
	border-radius: 0;
	font-size: 20px;
	font-weight: 100;
	border-top: none;
	border-right: none;
	border-left: none;
	margin-top: 10px;
	padding-bottom: 10px;
}

input:focus, textarea:focus{
	outline: none;
}

input:focus{
	border-bottom: 1px solid #1c1c1c;	
}

form .first-line{
	display: flex;
	justify-content: space-between;
}

.first-line input#Name, .first-line input#Email{
	width: 45%;
}

textarea{
	padding-left: 0;
	resize: none;
	border-bottom: none;
}

input[type=submit]{
	border-radius: 0;
	outline: none;
	color: #fff;
	letter-spacing: 0.1em;
	font-weight: 100;
	text-transform: uppercase;
	padding: 10px 15px;
    background-color: #9559D5;
    border: 1px solid #9559D5;
	transition: all 0.5s ease;
	cursor: pointer;
}

input[type=submit]:hover{
	background-color: #824EB9;
	border: 1px solid #824EB9;
	outline: none;
}

input[type=submit]:active{
	color: #1C1C1C;
	background-color: #fff;
	border: 1px solid #1C1C1C;
	outline: none;
}

footer{
	background: #1c1c1c;
}

footer .container{
	padding: 20px 0;
}

footer #logo{
	margin: 10px 0;
}

.social{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2%;
}

.social img{
	height: 22px;
	opacity: 0.6;
	transition: all .5s ease;
	padding: 4px 10px;
	cursor: pointer;
}

.social img:hover{
	opacity: 1;
}

footer span{  
	text-align: center;
	font-size: 10px;
	font-weight: 100;
	color: #9559D5;
}

footer .social, footer span{
	padding: 10px 0;
}

@media screen and (max-width: 768px) and (orientation: landscape){
	header span{
		padding: 40px;
	}
	.about .skill-set{
		margin-top: -56px;
		padding: 40px;
	}	
	.about .skill-set a, .skill-set h3{
		display: none;
	}
	.about .skill-list-container{
		padding: 0;
	}
	.skill-list h4{
		font-size: 14px;
	}
	.about .workflow a{
		display: none;
	}
	.project{
		padding: 120px 0;
	}
	.contact form{
		width: 90%;
		padding: 10px 0;
	}
	form textarea{
		height: 100px;
	}
	input, textarea{
		font-size: 12px;
	}
}
@media screen and (max-width: 768px) and (orientation: portrait){
	header span{
		padding: 130px 0;
	}
	nav, .container{
		padding: 0;
	}
	.about{
		background: #F7F7F7;
		padding: 50px 0;
	}
	.about .skill-set{
		margin-top: 0;
		padding: 32px;
	}
	.skill-set h3, .skill-set a{
		display: none;
	}
	.skill-list-container{
		flex-flow: column;
		padding-top: 0;
	}
	.about .skill-list:nth-child(2){
		padding: 10px 0;
	}
	.about .workflow{
		display: none;
	}
	.contact{
		padding: 30px 0;
	}
	.contact form{
		width: 100%;
	}
	form .first-line{
		flex-flow: column;
		width: 100%;
	}
	.first-line input#Name, .first-line input#Email{
		width: 100%;
	}
	footer a#logo{
		margin-bottom: 26px;
	}
}