/* Social Media Icons Animations */

/* Properties for footer */
.footer {
	width: 100%;
	background: white;
	text-align: center;
	padding: 10px 0px;
	color: black;
}

.footer span {
	color: black;
	padding: 10px 0px;
}

.wrapper {
	margin: 5px;
}

.wrapper .social-media {
	display: inline-block;
	height: 50px;
	width: 50px;
	margin: 0 5px;
	overflow: hidden;
	background: #fff;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-out;
}

.wrapper .social-media:hover {
	width: 11rem;
	text-align: left;
}

/* To rotate icon by 360 degree */
.wrapper .social-media:hover i {
	transform: rotate(360deg);
}

.wrapper .social-media .icon {
	display: inline-block;
	height: 50px;
	width: 50px;
	text-align: center;
	border-radius: 50px;
}

.wrapper .social-media .icon i {
	font-size: 25px;
	line-height: 50px;
	color: #fff;
	transition-duration: 0.8s;
	transition-property: transform;
}

/* Set Color for each Icon */
.wrapper .social-media:nth-child(1) .icon {
	background: radial-gradient(circle at 30% 140%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.wrapper .social-media:nth-child(2) .icon {
	background: #0072b1;
}

.wrapper .social-media:nth-child(3) .icon {
	background: #3B5998;
  	color: white;
}


.wrapper .social-media span {
	font-size: 20px;
	font-weight: 500;
	margin-left: 10px;
	transition: all 0.3s ease-out;
}

/* Set Color for each text */
.wrapper .social-media:nth-child(1) span {
	color: #E1306C;
}

.wrapper .social-media:nth-child(2) span {
	color: #0072b1;
}

.wrapper .social-media:nth-child(3) span {
	color: #3B5998;
}


/* To prevent animation in mobile view */
@media screen and (max-width: 500px) {
	.wrapper .social-media:hover {
		width: 50px;
	}
}