/* przyciski about / stopka */
.social-container {
	width: auto;
	text-align: center;
}

.social-icons {
	padding: 0;
	list-style: none;
	margin: 0.5em;
}
.social-icons li {
	display: inline-block;
	margin: 0.15em;
	position: relative;
	font-size: 1.2em;
}
.social-icons i {
	color: #fff;
	position: absolute;
	top: 8px;
	left: 8px;
	transition: all 265ms ease-out;
}
.social-icons a {
	display: inline-block;
}
.social-icons a:before {
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	content: " ";
	width: 34px;
	height: 34px;
	border-radius: 100%;
	display: block;
	background: linear-gradient(45deg, #0ba360, #3cba92);
	transition: all 265ms ease-out;
}
.social-icons a:hover:before {
	transform: scale(0);
	transition: all 265ms ease-in;
}
.social-icons a:hover i {
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	color: #00B5F5;
	background: -webkit-linear-gradient(45deg, #0ba360, #3cba92);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 265ms ease-in;
}