﻿/* Social icons block min-version full-color */ 

.social-block {
	background-color: #374278;
	color: #fff;
	padding: 20px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: center;
}

.social-icon-vsu { 
	display: inline-block; 
	width: 60px;
	height: 60px;
	padding: 0px;
	margin-left: 12px;
	margin-right: 12px;
	text-align: center;
	line-height: 63px;
	border-radius: 50%;
	color: #fff;
	transition: .5s;
	cursor: pointer; 
} 

.social-icon-vsu::before {
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fff;
	transition: .5s;
	transform: scale(1.05);
	box-shadow: 0 0 5px #fff;
}

.social-icon-vsu:hover::before {
	transform: scale(1.05);
	box-shadow: 0 0 25px #fff;
}

.social-icon-vsu:hover { 
	transform: scale(1.1);
	box-shadow: 0 0 25px #fff;
} 
