.social {
	margin: 0px;
	padding: 0px;

	position: fixed;
	left: 0;
	top: 240px;
	z-index: 2000;
}

.social ul {
	list-style: none;
}

.social ul li a {
	display: inline-block;
	color: #fff;
	background: #000;
	padding: 10px 15px;
	text-decoration: none;
	-webkit-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease; 

}

.social ul li .icon-facebook {background: #3b5998;}
.social ul li .icon-instagram {background: #e95950;}
.social ul li .icon-twitter {background: #55acee;}
.social ul li .icon-youtube {background: #ff0000;}
.social ul li .icon-whatsapp {background: #4dc247;}

.social ul li a:hover {
	padding: 10px 30px;
	background: #000;
}

.social2 {
	position: fixed;
	top: 10%;
	font-family: tahoma;
}

.social2 ul {
	list-style-type: none;
	padding: 0;
	transform: translate(-280px);
}

.social2 ul li {
	display: block;
	margin: 5px;
	background: rgba(0, 0, 0, 0.5);
	width: 300px;
	text-align: right;
	padding: 15px;
	border-radius: 0 30px 30px 0;
	transition: all 1s;
}

.social2 ul li:hover {
	transform: translateX(100px);

}

.social2 ul li.facebook:hover {
	background-color: #3b5998;
}

.social2 ul li.instagram:hover {
	background-color: #e95950;
}

.social2 ul li.twitter:hover {
	background-color: #55acee;
}

.social2 ul li.youtube:hover {
	background-color: #ff0000;
}

.social2 ul li a {
	color: #fff;
	text-decoration: none;
}

.social2 ul li i {
	text-align: center;
	margin-left: 15px;
	background: #fff;
	color: #000;
	padding: 8px;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 20px;
	transform: rotate(0deg);
}

.social2 ul li:hover i {
	transform: rotate(360deg);
	transition: all 1s;
}