.social-follow {
	display: flex;
	align-items: center;
	color: #a7a7aa;
}

.social-follow a {
	display: inline-block;
	transition: opacity 0.1s linear;
	margin-left: 5px;
	width: 36px;
	height: 36px;
	vertical-align: middle;
	border-radius: 50%;
	text-indent: -9999px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 36px 36px;
	flex: none;
}
.social-follow a:hover {
	opacity: 0.7;
}
.social-follow a.facebook {
	background-image: url(../../../img/svg/social/icn-social-facebook-round.svg);
}
.social-follow a.twitter {
	background-image: url(../../../img/svg/social/icn-social-twitter-round.svg);
}
.social-follow a.instagram {
	background-image: url(../../../img/svg/social/icn-social-instagram-round.svg);
}
.social-follow a.linkedin {
	background-image: url(../../../img/svg/social/icn-social-linkedin-round.svg);
}

.social-follow .svg-group {
	display: inline-block;
}

.social-follow svg {
	position: relative;
	top: 9px;
	left: 8px;
}

@media screen and (max-width: 900px) {
	.social-follow span {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	.social-follow a {
		width: 32px;
		height: 32px;
		background-size: 32px 32px;
	}
}