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

/*FOOTER STYLES*/
footer{
	background-color: #353535;
	padding: 1em 0;
	overflow:hidden;
	width:100%;
	display: table-row;
	position:relative;
}

footer p{
	font-size: 1em;
	font-weight: 300;
	text-align: left;
	color: #FFFFFF;
	float:left;
	margin-top: 5px;
}

footer ul {
	margin: 0;
}

footer ul li{
	float: left;
	margin: 0 10px;
}

footer ul li img{
	width: 2.5em;
	border-radius: 50%;
	background-color:#1e98d5;
	float: left;
	display: inline;
	transition: all .12s ease-in-out;
	-moz-transition: all .12s ease-in-out;
	-webkit-transition: all .12s ease-in-out;
}

.social-media{
	float:right;
}

footer ul li img:hover{
-webkit-box-shadow: 0px 0px 0px 3px rgba(30,152,213,1);
-moz-box-shadow: 0px 0px 0px 3px rgba(30,152,213,1);
box-shadow: 0px 0px 0px 3px rgba(30,152,213,1);
}
/*END OF FOOTER STYLES*/



@media screen and (max-width: 56.25em){
footer p{
	float:none;
	text-align:center;
}

footer ul{
	margin:1em auto 0 auto;
	width: 18.75em;
}

.social-media{
	float:none;
}

}