.social-links {
	display:flex;
	width:100%;
	justify-content:center;
}
.social-links__item {
	width:32px;
	height:32px;
	background:transparent;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	margin-right:8px;
	
	transition:all 0.2s ease;
}
.social-links__item:after{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:50%;
	left:50%;
	transform:translateY(-50%) translateX(-50%);	
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
}
.social-links__item:last-child {
	margin-right:0;
}
.social-links_pink .social-links__item {
	width:56px;
	height:56px;
}

.social-links__item_vk:after {
	background-image:url('../images/vk.svg');
}
.social-links__item_tg:after {
	background-image:url('../images/tg.svg');
}
.social-links_pink .social-links__item_vk:after {
	background-image:url('../images/vk_pink.svg');
}
.social-links_pink .social-links__item_tg:after {
	background-image:url('../images/tg_pink.svg');
}

@media screen and (max-width:1000px){

}

@media screen and (max-width:768px){

}

@media screen and (max-width:480px){
	.social-links__item {
		width:32px;
		height:32px;
	}
}
