@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: Pluto;
    src: url(/fonts/PlutoSansRegular.otf);
}
@font-face {
    font-family: PlutoM;
    src: url(/fonts/PlutoSansMedium.otf);
}

body {
  font-family: PlutoM, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #fff;
  background-color: #fff;
}

a{
	text-decoration:none;
	color:#fff;
	-webkit-transition: color .3s linear 0s;
}

p{
	margin-bottom:30px;
}
h2 {
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.clear{
	clear:both;
}
#nav{
	background-color:#333;
	padding:0 40px;
	height:65px;
	font-size:0;
}
#nav .logo{
	display: inline-block;
    padding: 14px 0;
}
#nav ul{
	float:right;
}
#nav ul li{
	display:inline;
	line-height: 65px;
}

#nav ul li a{
	text-transform:uppercase;	
	text-decoration:none;
	font-size:14px;
	padding:0 15px;
	color:#fff;
	display: inline-block;
}
#nav ul li a:hover{
	color:#ff6962;
}
#nav ul li a.active{
	color:#1ec3c9;
}
#home{
	position:relative;
	width: 100%;
}
#home .logo {
	position:absolute;
	left:50%;
	transform: translateX(-50%);
}
#home .pic{
    bottom: 0;
    height: 220px;
    position: absolute;
    width: 322px;
}

.content{
	padding:50px 20px 60px;
	display:none;
	font-size:18px;
	height:auto;
	text-align:center;
	line-height:1.5em;
}

.content .wrapper {
    margin: 0 auto;
    max-width: 960px;
    opacity: 0;
	filter: alpha(opacity=0); /* For IE8 and earlier */
   /* overflow: hidden;*/
}

.content ul{
	margin-bottom:50px;
}
.content .box2, .content .col2 li{
	width:50%;
	text-align:center;
	float:left;
}
.content .box3{
	width:33.33%;
	text-align:center;
	float:left;
}
.content .box4{
	width:25%;
	text-align:center;
	float:left;
	min-width: 170px;
}
#title{
	display:none;
}
#title h1 {
    background-color: transparent;
    color: #333;
    font-size: 60px;
    line-height: 187px;
    position: absolute;
    text-align: center;
	text-transform:uppercase;
    top: 65px;
    width: 100%;
    z-index: 10;
}


#about{
	background-color:#1ec3c9;
}
#about a {
    font-size: 18px;
    line-height: 60px;
    text-transform: uppercase;
	background-repeat:no-repeat;
	background-position: left center;
	margin-bottom:50px;
}
#about .wrapper{
	overflow:hidden;
}
#contact{
	background-color:#ff6962;	
}

#contact a, #work .proj a {
    font-size: 18px;
    line-height: 60px;
    text-transform: uppercase;
	background-repeat:no-repeat;
	background-position: left center;
}
#contact a.resume, #about a.resume {
	padding-left:40px;
	background-image:url(../images/download.png);	
}
#contact a.email {
	padding-left:48px;
	background-image:url(../images/email.png);	
}
#contact a.linkedIn {
	padding-left:40px;
	background-image:url(../images/linkedIn.png);	
}

#work{
	background-color:#333;
}
#work h1{
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 45px;
    line-height: 60px;
}
#work .projectList{
	margin-top:15px;
	display: flex;
	flex-wrap: wrap;
}
#work .projectList .projItem{
	margin-bottom: 15px;
	position: relative;
}

#work .projectList .projItem .wrapper{
}
#work .projectList .projItem img{
	width: 94%;
	height: auto;
	margin: auto;
}
#work .projectList .projItem .overlay {
    position: absolute;
    top: 0;
    left: 3%;
    width: 94%;
    height: 97%;
	background-color: #1ec3c9;
	opacity: 0;
	-webkit-transition: opacity .5s linear 0s;
	transition: opacity .35s linear 0s;
	
}
#work .projectList .projItem:nth-child(even) .overlay{
  background-color: #ff6962;
}


#work .projectList .projItem:hover{
	cursor:pointer;
}
#work .projectList .projItem:hover .overlay{
	opacity: 1;
	
}
#work .overlay h1 {
    margin: 0;
    line-height: 1.2em;
    font-size: 18px;
    text-align: left;
    padding: 0 10%;
    position: absolute;
    top: 66%;
	transform: translateY(-50%);
}
#work .projectList img{
	opacity: .8;
	width: 100%;
	height: auto;
}
#work .projContainer{
	clear:both;
	/*width:95%;*/
	margin: auto;
	opacity: 0;
	padding: 50px 0;
}
#work .proj{
	width: 100%;
}

#work .proj img{
	width:100%;
}
#work a.goTo {
	padding-left:40px;
	background-image:url("../images/goTo.png");	
	background-size: contain;
}
#footer{
	color:#333;
	text-align:center;
	font-size:10px;
	line-height:45px;
}

.slick-prev, .slick-next{
	height: 30px;
	width: 30px;
	top:55%;
	z-index: 9999;
}
.slick-prev {

    left: -50px;

}
.slick-next {

    right: -50px;

}
.slick-prev::before, .slick-next::before {
    border-style: solid;
    border-width: 3px 3px 0 0;
    content: '';
    display: inline-block;
    height: 25px;
    position: relative;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 25px;
    opacity: 1;-webkit-transition: color .5s linear 0s;
	transition: color .35s linear 0s;
}

.slick-prev:hover::before, .slick-next:hover::before {
	color:#ff6962;
}

.slick-next::before {
	transform: rotate(45deg);
}
.slick-prev::before {
	transform: rotate(-135deg);
}
/*Responsive*/

/* Mobile styles */
@media only screen and (max-width: 768px) {
	#nav{
		padding: 0 25px;
	}
	
	#title h1 {
		font-size: 50px;
	}
	.content {
		padding:50px 25px 60px;
	}
	
	.content .box2, .content .box3, .content .box4{
		width:100%;
		text-align:center;
		float:none;
	}
	.content .box2.mobile1 ul {
		margin-bottom:0;
	}
	#work .projectList .projItem{
		margin-bottom: 30px;
		
	}
	#work .projectList .projItem .wrapper{
		display: grid;
	}
	#work .projectList .projItem .overlay {
		opacity: 1;
		height: auto;
		position: relative;
		padding: 10px 0;
		/*bottom: 0;
		top: auto;
		height: 2em;*/
	}
	#work .overlay h1 {
		position: relative;
		width: 94%;
		transform:  translateY(0%);
		line-height: 1.1;
		text-align: center;
		padding: 0;
		top:0;
	}
	.slick-prev {

		left: -15px;

	}
	.slick-next {

		right: -15px;

	}
	.slick-prev::before, .slick-next::before {
		height:15px;
		width:15px;
	}
}

@media only screen and (max-width: 420px) {
	#home .logo {
		left: 0;
		margin: 0 10%;
		position: absolute;
		width: 80%;
		transform: translateX(0);
	}
	.logo img {
		width: 100%;
		max-width: 380px;
	}
	
}