.header-top-right .content:first-child > a > i {
	color: red;
	animation-name: socios;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}


/* The animation code */
@keyframes socios {
  0%   {color: red;}
  50% {color: white;}
  100%   {color: red;}
}