/*-----------------------------------------------------------
#0. Body
-----------------------------------------------------------*/
body {
	background-color: #fff;
	border-top: 5px solid #fddb00;
	font-family: 'lato', sans-serif;
}

a {
	display: block;
}


/*-----------------------------------------------------------
#1. Logo section
-----------------------------------------------------------*/
.logo-area {
	height: 100px;
}

.logo-bg {
	background-color: #444;
    box-shadow: 0 0 20px 5px #888888;
    -webkit-box-shadow: 0 0 20px 5px #888888;
	-moz-box-shadow: 0 0 20px 5px #888888;
}

.logo h1 a {
	color: #fddb00;
	font-weight: bold;
	text-decoration: none;
}

.logo span a {
	position: absolute;
	margin-top: -15px;
	color: #fddb00;
	opacity: 0.4;
	text-decoration: none;
}

.social {
	padding-top: 30px;
}

	.social a {
		color: #fcdb00;
		text-decoration: none;
		margin-right: 20px;
	}

	.social a:hover {
		opacity: 0.8;
	}


/*-----------------------------------------------------------
#2. Portofolio section
-----------------------------------------------------------*/
.portofolio {
    margin: 120px auto 0 auto;
}

	.portofolio img {
		width: 100%;
		height: auto;		
	}

		.portofolio img:hover {
			opacity: 0.8;
			transition-duration: .5s;
		}

	.portofolio .fa {		
		color: #fcdb00;
		background-color: #555;
		width: 40px;
		height: 40px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
		padding-top: 5px;
	}

		.portofolio .fa:hover {
			background-color: #000;
			-webkit-transition-duration: 0.4s; /* Safari */
	    	transition-duration: 0.4s;
		}

.product {
	background-color: #efefef;
	border: 1px solid #ccc;
	margin: 10% 1%;
	padding-bottom: 20px;
	transition-duration: .5s;
}

.product:hover {
	border: 1px solid #999;
	-webkit-box-shadow: 0px 0px 5px 1px rgba(153,153,153,0.7);
	-moz-box-shadow: 0px 0px 5px 1px rgba(153,153,153,0.7);
	box-shadow: 0px 0px 5px 1px rgba(153,153,153,0.7);
}


/*-----------------------------------------------------------
#3. Toolips
-----------------------------------------------------------*/
.tooltip {
	display: none;
	position: absolute;
	border: 1px solid #333;
	background-color: #161616;
	border-radius: 5px;
	padding: 10px;
	color: #fff;
	font-size: 12px Arial;
}


/*-----------------------------------------------------------
#4. Footer
-----------------------------------------------------------*/
.footer {
	height: 40px;
	color: #777;
}

/*-----------------------------------------------------------
#5. Hacks
-----------------------------------------------------------*/

/*-----------------------------------------------------------
#6. @Media
-----------------------------------------------------------*/
@media (max-width: 509px) {
	h1 {
		line-height: 15px;
	}

	.logo h1 a {
		font-size: 20px;
	}

	.logo span a {
		font-size: 12px;
		margin: 0px;
	}
}