/* 
 * Font Custom: bare CSS
 */

@font-face {
  font-family: "social-icons";
  src: url("fonts/social-icon-font.eot");
  src: url("fonts/social-icon-fontd41d.eot?#iefix") format("embedded-opentype"),
       url("fonts/social-icon-font.woff") format("woff"),
       url("fonts/social-icon-font.ttf") format("truetype"),
       url("fonts/social-icon-font.svg#social-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  
}

/* This font face inherits and overrides the previous font face, but only for chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "social-icons";
src: url("fonts/social-icon-font.svg") format('svg');
}
}


.icon-facebook:before,
.icon-instagram:before,
.icon-pinterest:before,
.icon-twitter:before,
.icon-linkedin:before,
.icon-wordpress:before
{
  font-family: "social-icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
  
}


.icon-facebook:before { content: "\f112"; }
.icon-instagram:before { content: "\f119"; }
.icon-pinterest:before { content: "\f11f"; }
.icon-twitter:before { content: "\f129"; }
.icon-linkedin:before { content: "\f11b"; }
.icon-wordpress:before { content: "\f12d"; }
