/* 
Do CSS reset
http:/*meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*
Define coloring
*/
:root {
	--color-dark-blue: #0A111F;
	--color-medium-blue: #14213D;
	--color-brown-blue: #253D45;
	--color-dark-brown: #4E4232;
	--color-medium-brown: #856B45;
	--color-light-brown: #BB9457;
  
	--color-orange-accent: #FCA311;
	--color-green-accent: #00A834;
  
	--color-cream-white: #FFF9E5;
	--color-blueish-white: #F1F7F8;
	--color-off-white: #FFF7EB;
	--color-steel: #FFFEFE;
  
	--accent: #E5CF00;
	--bg-dark: #4B4737;
	--bg-light: #B1AB99;
	--orange-accent: #f06008;

	--padding-desktop: 50px;
	--padding-mobile: 25px;

	--width-toggle: 900px;
  }


/*
Import fonts
*/
  
@font-face {
	font-family: 'Odachi';
	src: url("../inc/Odachi.otf") format("opentype");
}
@font-face {
	font-family: 'Progress';
	src: url("../inc/Progress.ttf") format("opentype");
}
@font-face {
	font-family: 'Urban';
	src: url("../inc/Urban.ttf") format("opentype");
}
@font-face {
	font-family: 'Grafolita';
	src: url("../inc/Grafolita.ttf") format("opentype");
}
@font-face {
	font-family: 'Rockwell';
	src: url("../inc/rockwen.ttf") format("opentype");
}
@font-face {
	font-family: 'Capsmall';
	src: url("../inc/Capsmall.ttf") format("opentype");
}



/*
Default CSS markup
*/
body {
    font-family: 'Montserrat';
	width: calc(100vw - (100vw - 100%)); /*Make sure body fits within scroll bar*/
    background-color: white;
	color: black;
}

strong {
    font-weight: bold;
}
a {
	color: orange;
	text-decoration: none;

}

h1 {
	font-family: 'Rockwell', sans-serif;
	font-style: normal;
	font-size: 200%;
	font-weight: bold;
	letter-spacing: 2px;
}
h2 {
	font-family: 'Rockwell', sans-serif;
	font-style: normal;
	font-size: 150%;
	font-weight: bold;
	letter-spacing: 1px;
}
h3 {
	font-size: 117%;
	font-weight: bold;
	letter-spacing: 1px;
}
h4 {
	font-size: 100%;
	font-weight: bold;
	letter-spacing: 1px;
}


p {
	line-height: 1.5;
}

small {
	font-size: 70%;
}
i, em {
	font-style: italic;
}

br.little-bit-more-space {
	display: block;
	margin: 7px;
	line-height: 7px;
	content: " ";
}
ul.bulleted-list {
	margin-left: 15px;
}

ul.bulleted-list li{
	list-style-type: none;
	position: relative;
	padding-left: 15px;
	margin-bottom: 5px;
}
ul.bulleted-list li:before {
	content: "\25BA \0020";
	font-size: 6px;
	position: absolute;
	top: 5px;
	left: -10px;
}
