.social-icons-3 {
    padding: 0;
    list-style: none;
    margin: 10px;
	display: flex;
	justify-content: center;
}
.social-icons-3 a i {
	font-size: 32px;
	line-height: 64px;
	transition: 0.3s;
}
.social-icons-3 a img {
	width: 32px;
	height: 32px;
	margin-top: 16px;
}
.social-icons-3 a {
	text-decoration:none;
	position: relative;
	display: block;
	width: 64px;
	height: 64px;
	background: #BFE2FF;
	text-align: center;
	margin: 0 8px;
	box-shadow: 10px 0 10px rgba(0, 0, 0, 0.3);
	transition: 0.3s;
	color: #337AB7;
}
.social-icons-3 a::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 3px;
	background: rgba(51, 122, 183, 0.3);
	height: 10%;
	width: 100%;
	transform: skewX(-45deg);
	transition: 0.3s;
}
.social-icons-3 a::after {
	content: "";
	position: absolute;
	top: -3px;
	left: 64px;
	background: rgba(51, 122, 183, 0.6);
	height: 100%;
	width: 10%;
	transform: skewY(-45deg);
	transition: 0.3s;
}
.social-icons-3 a:hover {
	transform: translate(-5%, 5%);
	box-shadow: 6px 4px 20px rgba(0, 0, 0, 0.5);
}
.social-icons-3 a:hover {
	background: #337AB7;
}
.social-icons-3 a:hover i {
	color: #fff;
}
.social-icons-3 a:hover::after {
	background: #184e7c;
}
.social-icons-3 a:hover::before {
	background: #2a70aa;
}