/*Fonts*/
@font-face{
  font-family: 'IBM Plex Sans Bold';
  src: url('IBMPlexSans-Bold.eot'); /* IE9 Compat Modes */
  src: url('IBMPlexSans-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('IBMPlexSans-Bold.woff') format('woff'), /* Modern Browsers */
       url('IBMPlexSans-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('IBMPlexSans-Bold.svg#b2326d242ebea208bc9ced376090159c') format('svg'); /* Legacy iOS */    
  font-style:   normal;
  font-weight:  700;
}
@font-face{
  font-family: 'IBM Plex Sans Light';
  src: url('IBMPlexSans-Light.eot'); /* IE9 Compat Modes */
  src: url('IBMPlexSans-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('IBMPlexSans-Light.woff') format('woff'), /* Modern Browsers */
       url('IBMPlexSans-Light.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('IBMPlexSans-Light.svg#30a616b678f3534fb472477c7875ea45') format('svg'); /* Legacy iOS */  
  font-style:   normal;
  font-weight:  200;
}
@font-face{
  font-family: 'IBM Plex Sans SemiBold';
  src: url('IBMPlexSans-SemiBold.eot'); /* IE9 Compat Modes */
  src: url('IBMPlexSans-SemiBold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('IBMPlexSans-SemiBold.woff') format('woff'), /* Modern Browsers */
       url('IBMPlexSans-SemiBold.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('IBMPlexSans-SemiBold.svg#9f88c8119bb556667be02fab499a1289') format('svg'); /* Legacy iOS */    
  font-style:   normal;
  font-weight:  700;
}

/*Global*/
*{
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #F9F9F9;
	margin: 10px;
	border: solid 3px #0A0A0A;
}
a{
	text-decoration: none;
	font-size: 21px;
	font-family: 'IBM Plex Sans SemiBold';
	color: #0A0A0A;
	position: relative;
}
a:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 5px;
	bottom: -5px;
	left: 0;
	background-color: #2FD79C;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
a.action{
	margin-top: 30px;
	display: inline-block;
	padding: 10px 15px;
	position: relative;
    z-index: 0;
}
a.action:before{
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	left: 15px;
    height: 10px;
    z-index: -1;
    bottom: 11px;
}
a.action:hover:before{
	height: 100%;
	left: 0px;
	bottom: 0px;
	cursor: pointer;
	border-radius: 5px;
}
p{
	line-height: 26px;
}
p a{
	color: #2FD79C;
}
.feature-list{
	font-family: 'IBM Plex Sans Light';
    font-size: 18px;
    padding: 30px 0px 0px 50px;
}
footer,
header,
nav{
	display: block;
}
img{
	border: 0px;
}
img.responsive{
	max-width: 100%;
	width: auto;
	height: auto;
}
h1,
h2{
	font-size: 48px;
	font-family: 'IBM Plex Sans Bold';
}
input,
textarea{
	background: transparent;
	border: 4px solid #0A0A0A;
	padding: 10px;
	font-family: 'IBM Plex Sans Bold';
	font-size: 16px;
	display: block;
	margin-bottom: 38px;
	width: 100%;
}
.wrapper{
	max-width: 1024px;
	min-height: 100%;
	margin: 0 auto -160px;
	padding: 150px;
	position: relative;
}

/*Header*/
.header{
	width: 100%;
	height: 90px;
	position: fixed;
	left: 0px;
	top:0px;
	padding: 30px 40px 0px 30px;
	z-index: 10;
}
.logo{
	float: left;
	position: relative;
	left: 0px;
	opacity: 0.5;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.logo:hover{
	opacity: 1;
	left: 6px;
	transform: rotate(12deg);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.logo a:hover:before,
.footer a:hover:before{
	display: none;
}
.nav{
	float: right;
	margin-top: 16px;
}
.nav ul,
.sideNav ul{
	list-style: none;
}
.nav ul li,
.sideNav ul li{
	float: left;
	padding-left: 25px;
}
.nav ul li:first-of-type,
.sideNav ul li:first-of-type{
	padding-left: 0px;
}
.nav ul li a{
	position: relative
}

/*SideNav*/
.sideNav{
	position: fixed;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transform-origin: top left;
	-moz-transform-origin: top left;
	-o-transform-origin: top left;
	transform-origin: top left;
	left: 30px;
    bottom: 0px;
    z-index: 2;
    width: 450px;
}
.sideNav a{
	color: #2FD79C;
}

/*Footer*/
.footer{
	background: #0A0A0A;
	width: 100%;
	position: relative;
}
.footer,
.push {
  height: 160px;
}
.footer a{
	position: absolute;
	text-align: center;
	left: 0px;
	right: 0px;
	top:50%;
	margin: -30px auto 0;
}

/*Home Page Intro*/
.intro,
.introContact{
	min-height: 400px;
	margin-bottom: 200px;
	background: url('../imgs/homeHeader.png') right top no-repeat;
}
.introContact{
	background: none;
}
.intro h1{
	padding-top: 30px;
}
.intro p{
	font-family: 'IBM Plex Sans Light';
	font-size: 18px;
	padding-top: 15px;
}
.introText{
	width: 100%;
	text-align: right;
	padding-right: 350px;
}

/*Home Page Work*/
.introWork{
	margin-bottom: 200px;
}
.workFeature{
	position: relative;
    text-align: center;
    margin: 100px 0px;
}
.workFeature h2{
	padding: 0px 15px;
	position: absolute;
    top: 30%;
    left: 0px;
    right: 0px;
}
.workFeature a{
	position: static;
	color: #F9F9F9;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.workFeature a:hover,
.workFeature:hover a{
	color: #2FD79C;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
}
.workFeature a:before,
.workFeature a:hover:before{
	display: none;
}
.workFeature img{
	opacity: 0.5;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.workFeature img:hover,
.workFeature a:hover > img{
	opacity: 0.85;
	-webkit-box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
	-moz-box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
	box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	transform: scale(1.03);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/*Home Page Contact*/
.introContact h1{
	padding: 20px 0px 0px 100px;
}
.introForm{
	margin-top: 15px;
	padding-left: 350px;
}
input[type="submit"]{
	border: 0px;
	font-size: 21px;
	font-family: 'IBM Plex Sans SemiBold';
	color: #0A0A0A;
	position: relative;
	text-align: right;
	padding: 10px 15px;
	margin-bottom: 0px;
}
.submitWrap{
	position: relative;
	cursor: pointer;
}
.submitHover{
	position: absolute;
	width: 130px;
	background-color: #2FD79C;
	right: -15px;
    height: 10px;
    z-index: -1;
    bottom: 11px;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	cursor: pointer;	
}
.submitWrap:hover .submitHover{
	height: 100%;
	right: 0px;
	width: 160px;
	bottom: 0px;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/*Work List*/
.workList{
	list-style: none;
	margin: 200px 0px;
}
.workList li{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #0A0A0A;
}
.workList .name{
	font-size: 28px;
	font-family: 'IBM Plex Sans SemiBold';
	display: block;
}
.workList .category{
	font-size: 14px;
	font-family: 'IBM Plex Sans Light';
	display: block;
	margin-bottom: 15px;
}
.workList .description{
	font-size: 21px;
	font-family: 'IBM Plex Sans Light';
	display: block;
}
.workList img{
	opacity: 0.85;
	-webkit-box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
	-moz-box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
	box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
}

/*Work Details*/
.detailsWrap{
	margin: -35px 0px 200px 30px;
}
.detailsWrap p{
	font-family: 'IBM Plex Sans Light';
	font-size: 18px;
	width: 75%;
}
.projectPhoto{
	width: 100%;
	text-align: center;
	margin: 100px 0px;;
}

/*About*/
.about{
	margin-bottom: 200px;
}
.about h1{
	margin: 0px 0px -20px 30px;
	position: relative;
	z-index: 1;
}
.about p,
.contact p{
	width: 100%;
	text-align: center;
	margin: 50px 0px;
	font-family: 'IBM Plex Sans Light';
	font-size: 18px;
}
.skills{
	position: relative;
	margin: 200px 0px;
	text-align: right;
}
.skills h1{
	position: absolute;
	left: 30px;
	top: 30px;
}
.skills h1 span{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.skills h1 span:hover{
	background: #2FD79C;
	color: #F9F9F9;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.skills img.two{
	margin: -100px 130px 0px 0px;
}

/*Contact*/
.contact form{
	width: 50%;
}

/*Media Queries*/
@media only screen and (min-width: 1200px) {
	.wrapper{
		padding: 150px 50px;
	}
	.intro h1{
		font-size: 60px;
	}
	.introForm{
		padding-left: 450px;
	}
}
@media only screen and (max-width: 1023px) {
	.wrapper{
		padding: 150px 80px;
	}
}
@media only screen and (max-width: 849px) {
	.intro h1{
		text-align: center;
	}
	.introText{
		padding: 0px;
		text-align: center;
	}
	.introContact h1{
		padding: 20px 0px 0px 0px;
		text-align: center;
	}
	.introForm{
		margin-top: 15px;
		padding: 0px 30px;
	}
	.workList li{
		flex-wrap:wrap;
	}
	.workList li div{
		width: 100%;
	}
	.workList li div:first-of-type{
		margin-bottom: 30px;
		flex-basis: 100%;
	}
	.workList li img{
		margin-bottom: 15px;
	}
	.contact form{
		width: 100%;
	}
	.workList{
		margin: 100px 0px;
	}
	.intro, 
	.introContact,
	.introWork{
		margin-bottom: 100px;
	}
}
@media only screen and (max-width: 479px) {
	.header{
		height: 130px;
	}
	.logo,
	.nav{
		float: none;
		margin: 0 auto;
		text-align: center;
		opacity: 1;
	}
	.nav ul{
		display: inline-block;
		margin-top: 10px;
	}
	h1{
		font-size: 42px;
		line-height: 44px;
	}
	h2{
		font-size: 38px;
		line-height: 40px;
	}
	.intro,
	.introContact{
		background-position: top center;
	}
	.intro h1{
		padding-top: 240px;
	}
	.introForm{
		padding: 0px;
		margin-top: 30px;
	}
	.detailsWrap{
		margin: -35px 0px 0px 0px;
	}
	.detailsWrap p{
		width: 100%;
	}
	.skills h1{
		position: relative;
		text-align: center;
		margin: 0px 0px 30px 0px;
		top: 0px;
		left: 0px;
	}
	.skills img,
	.skills img.two{
		margin: 0px 0px 30px 0px;
	}
	.workList li div:first-of-type{
		order:2;
	}
	.workList li div:last-of-type{
		order:1;
	}
	.workFeature img{
		opacity: 0.85;
		-webkit-box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
		-moz-box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
		box-shadow: 7px 7px 0px 1px rgba(47,215,156,1);
	}
	.workFeature a{
		color: #2FD79C;
		
	}
	.workFeature h2{
		font-size: 24px;
	}
}