// Some common variables and mixins to get you started.
// Variables allow you to re-use colors, sizes, and other values without repeating
// yourself. This means that changes that should be small, such as tweaking the
// coloring or the sizing, can be done in one place, not all over the stylesheet.

$base-font: 		"Open Sans", "Helvetica Neue", sans-serif;
$header-font: 		"Montserrat";

// base color scheme
$body-background: 	#f4f7f9;
$color_body: 		#09434E;
$color_links: 		#038e9a;
$error: 			#e2401c;
$success: 			#17ba6f;
$info: 				#3D9CD2;
$vspacing: 			1.618em;
$brand-color: 		#038e9a;
$brand-alt: 		#3081c4;
$brand-light: 		$brand-color + #98302c;
$brand-dark: 		$brand-color - #004b4c;
$color_border:		$brand-light; //rgba(0,0,0,0.1);

$susy: (
	columns: 12,
	gutters: 1,
	math: fluid,
	output: float,
	gutter-position: after
);