/**
 * Colors:
 * bg			#000
 * fg			#ccc	
 * green		#5dfaad
 */


body{
	background: #000; color: #999;
}

a{
	-webkit-transition: all 0.3s ease-in;-moz-transition: all 0.3s ease-in;
}

a:link{
	color: #bbb;
}

a:visited{
	color: #bbb;
}
a:hover{
	color: #5dfaad;
}

a:active{
	-webkit-transition:none; -moz-transition:none; color: #fff;
}



.front h1{
	background: url(../images/logo.jpg) center no-repeat;
}

h1{
	background: url(../images/logo-2.jpg) center no-repeat;
}

#clients li{
	margin: 20px;
}

#clients h3{
	color: #666;
}

#clients p{
	color: #fff;
}


#social-icons img{
	
	-webkit-transition: all 0.3s ease-in;-moz-transition: all 0.3s ease-in;
	
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px; 	
}

#social-icons img:hover{
	-moz-box-shadow: 0px 0px 10px #5dfaad; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 10px #5dfaad; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 10px #5dfaad; /* Opera 10.5, IE 9.0 */
}



