:root {
	/*  Font Family  */
	--font-body: 'Open Sans', sans-serif;
	--font-display: trade-gothic-next-condensed, sans-serif;
	
	/*  Widths  */
	--width-compact: calc(var(--width-comfortable) * (2/3));
	--width-comfortable: 72ch;
	--width-double: calc(var(--width-comfortable) * 2);
	--width-base: 1200px;
	--width-feature: 1440px;
	--width-fullscreen: 100vw;
	--max-width: 1080px;
	--max-width-padded: 1120px;
	
	/*  Space  */
	--space-px: 1px;
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-8: 32px;
	--space-10: 40px;
	--space-12: 24px;
	--space-16: 64px;
	--space-20: 80px;
	--space-24: 96px;
	--space-32: 128px;
	--space-40: 160px;
	--space-48: 192px;
	--space-56: 224px;
	--space-64: 256px;
	
	/*  Containers  */
	--container-single: calc(var(--width-comfortable) + var(--space-10));
	--container-double: calc(var(--width-double) + var(--space-24));
	
	/*  Font Size  */
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;
	--text-4xl: 2.25rem;
	--text-5xl: 3rem;
	--text-6xl: 4rem;
	
	/*  Letter Spacing  */
	--tracking-tighter: -0.05em;
	--tracking-tight: -0.025em;
	--tracking-normal: 0em;
	--tracking-wide: 0.025em;
	--tracking-wider: 0.05em;
	--tracking-widest: 0.1em;
	
	/*  Line Height  */
	--leading-none: 1;
	--leading-tight: 1.25;
	--leading-snug: 1.2;
	--leading-normal: 1.5;
	--leading-relaxed: 1.625;
	--leading-loose: 2;
	
	/*  Colors  */
	--black: #000;
	--white: #fff;
	--whitef2: #f2f2f2;
	--creamf8: #F8F1E0;
	--blue16: #162B49;
	--blue45: #45556d;
	--yelloweb: #EBAD21;
	--yellowf0: #f0c260;
	--redc6: #C6202E;
	--redd1: #d14d58;
	--gray52: #525252;
	--darkgray2f: #2f2f2f;

	
	--gray-hue: 215;
	--gray-100: var(--white);
	--gray-200: var(--whitef2);
	--gray-300: #c8c8c8;
	--gray-400: #aaaaaa;
	--gray-500: #979797;
	--gray-600: #838383;
	--gray-700: #6f6f6f;
	--gray-800: var(--gray52);
	--gray-900: var(--gray52);
	
	--primary-color-hue: 210;
	--primary-color-100: #45556d;
	--primary-color-200: #45556d;
	--primary-color-300: #45556d;
	--primary-color-400: #45556d;
	--primary-color-500: #162B49;
	--primary-color-600: #162B49;
	--primary-color-700: #162B49;
	--primary-color-800: #162B49;
	--primary-color-900: #162B49;
	
	--secondary-color-hue: 29;
	--secondary-color-100: #d14d58;
	--secondary-color-200: #d14d58;
	--secondary-color-300: #d14d58;
	--secondary-color-400: #d14d58;
	--secondary-color-500: #d14d58;
	--secondary-color-600: #C6202E;
	--secondary-color-700: #C6202E;
	--secondary-color-800: #C6202E;
	--secondary-color-900: #C6202E;

	--tertiary-color-hue: 0;
	--tertiary-color-100: #f0c260;
	--tertiary-color-200: #f0c260;
	--tertiary-color-300: #f0c260;
	--tertiary-color-400: #f0c260;
	--tertiary-color-500: #f0c260;
	--tertiary-color-600: #EBAD21;
	--tertiary-color-700: #EBAD21;
	--tertiary-color-800: #EBAD21;
	--tertiary-color-900: #EBAD21;
	
	/*  Shadows  */
	--shadow-xs: 0 0 0 1px rgba(0, 0, 0, 0.05);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
	--shadow-outline: 0 0 0 3px rgba(66, 153, 225, 0.5);

	/* Border Radii */
	--rounded-none: 0px;
	--rounded-sm: 0.125rem;
	--rounded-md: 0.375rem;
	--rounded-lg: 0.5rem;
	--rounded-xl: 0.75rem;
	--rounded-2xl: 1rem;
	--rounded-3xl: 1.5rem;
	--rounded-full: 9999px;
	--rounded-circle: 50%;

	/* Transitions */
	--transition-appendix: 0.25s ease;

	/* Social Share */
	--share-trigger-button-color: var(--blue16);
	--share-trigger-icon-color: var(--redc6);
  }