.social-bar {
	position: fixed;
	left: 0;
	top: 45%;
	font-size: 1.3rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 100;
}
@media only screen and (max-width: 640px) {
	.social-bar{
		top: 50%;
	}
  }
.icon {
	color: white;
	text-decoration: none;
	padding: .7rem;
	display: flex;
	transition: all .5s;
}

.icon-facebook {
	background: #c29313;
}

.icon-whatsapp {
	background: #c29313;
}


.icon:first-child {
	border-radius: 0 1rem 0 0;
}

.icon:last-child {
	border-radius: 0 0 1rem 0;
}

.icon:hover {
	color: #c21313;
	padding-left: 3rem;
	border-radius: 0 1rem 1rem 0;
	box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
}
