@mixin helper-font-weight($from, $to) {
	@for $i from $from through $to {
		$classValue: $i * 100;
		
		.f-w-#{$classValue} {
			font-weight: $classValue !important;
		}
	}
}