html {
	font-size: 16px;
}

body,
button,
input,
select,
optgroup,
textarea {
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.5em;
}

h1,
h2,
h5,
h6 {
	font-family: var(--font-heading);
	clear: both;
	margin-top: 0;
	margin-bottom: 1.25rem;
}

h1 {
	font-weight: 300;
	font-size: 3rem;
	line-height: 1.25em;
}

h2 {
	font-weight: 300;
	font-size: 2rem;
	line-height: 1.125em;
}

h3 {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.25em;
	font-family: var(--font-body);
}

h4 {
	font-weight: 600;
	font-family: var(--font-body);
	font-size: 1.25rem;
	line-height: 1.375em
}

h5 {
	font-weight: 300;
	font-size: 0.875rem;
	line-height: 1.375em
}

h6 {
	font-weight: 300;
	font-size: 0.75rem;
	line-height: 1.375em
}

p {
	margin-bottom: 1.5em;
}


.type-medium {
	font-weight: 500;
}
.type-bold {
	font-weight: 800;
}
.type-light {
	font-weight: 300;
}


dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0.5em 0 1.5em 0;
	padding: 0.5em 3em 0.5em 2em;
	border-left: 5px solid var(--color-primary-light);
	font-style: italic;
	font-family: var(--font-heading);
	font-size: 1.375rem;
	font-weight: 300;
}

q, blockquote q,
cite, blockquote cite {
	font-style: normal;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 300;
	color: var(--color-primary-main);
}

blockquote p:first-child {
	margin-top: 0;
}

blockquote p:last-child {
	margin-bottom: 0;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Links
--------------------------------------------- */
a,
a:visited {
	color: var(--color-primary-main);
	font-weight: 300;
	transition-timing-function: var(--transition-timing);
	transition-duration: var(--transition-duration);
	transition-property: color;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: var(--color-primary-light);
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Dark BG
--------------------------------------------- */
.dark_bg {
	color: #FFF;
	background:var(--color-primary-dark);
}

.dark_bg a {
	color: var(--color-primary-light)
}

.dark_bg a:hover {
	color: var(--color-off-white)
}




/* Responsive type optimization
--------------------------------------------- */

@media screen and (max-width:782px) {
	
	
	h1 {
		font-weight: 300;
		font-size: 2.4rem;
		line-height: 1.25em;
	}

	h2 {
		font-weight: 300;
		font-size: 1.8rem;
		line-height: 1.125em;
	}

	h3 {
		font-weight: 300;
		font-size: 1.325rem;
		line-height: 1.25em
	}

	h4 {
		font-weight: 300;
		font-size: 1rem;
		line-height: 1.375em
	}

	h5 {
		font-weight: 300;
		font-size: 0.875rem;
		line-height: 1.375em
	}

	h6 {
		font-weight: 300;
		font-size: 0.75rem;
		line-height: 1.375em
	}
	
	
	
}







