@mixin font-face($path, $name) {
	@font-face {
		font-family: $name;
		src: url(#{$path + $name + '.eot'});
		src: local(#{$name}), local(#{$name}),
			url(#{$path + $name + '.eot?#iefix'}) format("embedded-opentype"),
			// url(#{$path + $name + '.otf'}) format('opentype'),
			url(#{$path + $name + '.woff2'}) format("woff2"),
			url(#{$path + $name + '.woff'}) format("woff"),
			url(#{$path + $name + '.ttf'}) format("truetype"),
			url(#{$path + $name + '.svg#' + $name}) format("svg");
		font-style : normal;
		font-weight: normal;
	}
}
