.section {
    list-style-type: none;
    margin: 10px;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
		background-color:transparent;
}

.section .header {
    color: white;
    font-size: 18px;
		border:0px;
		border-bottom:2px solid #e7a126;
		text-align:center;
}

.section li {
    text-align: center;
	line-height:20px;
	font-size: 12px;
}
.links {
	border-bottom:1px dotted rgba(255,255,255,0.1);
	padding-left:0px;
 	text-align:center;
}
.links:hover {
	background-color:rgba(255,255,255,0.1);
	border-bottom:1px dotted rgba(255,255,255,0.3);
	cursor:pointer;
}
.social {
	width:100%;
	display:inline-block;
	padding:5px;
}

.facebook {
	background: url('../images/social/facebook.png');
	width: 50px;
	height: 50px;
	display: inline-block;
	background-repeat: no-repeat;
	margin: 5px;
}
.facebook:hover {
	background-position: -50px 0px;
}

.discord {
	background: url('../images/social/discord.png');
	width: 50px;
	height: 50px;
	display: inline-block;
	background-repeat: no-repeat;
	margin: 5px;
}
.discord:hover {
	background-position: -50px 0px;
}

.forum {
	background: url('../images/social/forum.png');
	width: 50px;
	height: 50px;
	display: inline-block;
	background-repeat: no-repeat;
	margin: 5px;
}
.forum:hover {
	background-position: -50px 0px;
}

.instagram {
	background: url('../images/social/instagram.png');
	width: 50px;
	height: 50px;
	display: inline-block;
	background-repeat: no-repeat;
	margin: 5px;
}
.instagram:hover {
	background-position: -50px 0px;
}

@media only screen and (max-width : 640px) {
	.forum {
		width:25px;
		height:25px;
		background-size:50px 25px;
	}
	.forum:hover {
		background-position: -25px 0px;
	}

	.discord {
		width: 25px;
		height: 25px;
		background-size:50px 25px;
	}
	.discord:hover {
		background-position: -25px 0px;
	}

	.facebook {
		width:25px;
		height:25px;
		background-size:50px 25px;
	}
	.facebook:hover {
		background-position: -25px 0px;
	}

	.instagram {
		width:25px;
		height:25px;
		background-size:50px 25px;
	}
	.instagram:hover {
		background-position: -25px 0px;
	}
}