
.footer {
	position: relative;
	background-color: #161616;
	padding-top: 40px;
	padding-bottom: 40px;
	.copyright {
		font-family: $ms;
		font-size: 12px;
		color: #eee;
	}
	.foot-social {
		position: absolute;
		top: 50%; right: 15px;
		@include translateY(-50%);
		a {
			display: inline-block;
			margin-left: 6px;
			.icon, .fa {
				width: 32px; height: 32px;
				text-align: center;
				line-height: 30px;
				font-size: 14px;
				color: #606060;
				border: 1px solid #606060;
				@include rounded(50%);
				@include transition(all .3s ease);
			}
			&:hover {
				.icon, .fa {
					color: $color;
					border-color: $color;
				}
			}
		}
	}
}