@import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,700');
/* --------------------------------------------- */
/* --------- Branding: Color Palette ----------- */
/* --------------------------------------------- */
/* These are the colors of the boxes under the Branding section */
#swatch1{
	background-color: #424242;
}	
#swatch2{
	background-color: #FE6719;
}	
#swatch3{
	background-color: #30B109;
}	
#swatch4{
	background-color: #ffffff;
}		

/* ----------------------------------------------------- */
/* --------- Typography: Heading & Body Copy ----------- */
/* ----------------------------------------------------- */
/* These are the font families of all the headings and body copy */

body{
	font-family: 'Fira Sans', sans-serif;
}

h1,h2,h3,h4,h5,h6{
	font-family: 'Fira Sans', sans-serif;
	font-weight: bold;
}


/* -------------------------------------------------- */
/* --------- Navigation: Main & Secondary ----------- */
/* -------------------------------------------------- */
/* Colors, style, floating, shapes, etc of main & secondary navs */

/* Main Navigation Style */
#mainnav{
	background-color: #424242;
  
}
#mainnav ul{
	
}
#mainnav li{
  	display: inline-block;
	margin: 20px 0;
	padding: 0 30px;
}
#mainnav a:link{
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	padding: 20px 20px;
	/* other styles */
}
#mainnav a:visited{
	color:#30B109;
	/* other styles */
}
#mainnav a:hover{
	background-color:#FE6719;
	/* other styles */
}
#mainnav a:active{
	color: #30B109;
	/* other styles */
}




/* ----------------------------------- */
/* --------- HTML Elements ----------- */
/* ----------------------------------- */
/* Styling for all HTML Elements */

/* True for all headings */
h1, h2, h3 ,h4, h5, h6{
	color: #30B109;
	font-weight: 300;
	padding: .1em;
	margin: .1em 0;
}


/* Style for individual headings */
h1{
	font-size: 32px;
}

h2{
	font-size: 28px;
}

h3{
	font-size: 24px;
}

h4{
	font-size: 20px;
}

h5{
	font-size: 18px;
}

h6{
	font-size: 16px;
}


/* List Styles */
ul{
	color:#000000;
	font-size: 16px;

}
ul li{

}

ol{
	color:#000000;
	font-size: 16px;
}
ol li{

}


/* Non-Navigational Link Styles */
/* This is for all default links on your page */
a:link{
	font-size: 1.3em;
	font-weight: 600;
	letter-spacing: 1px;
	color: #FE6719;
	text-decoration: none;
}
a:visited{
	color: #0000FE;
}
a:hover{
	color: #30B109;
}
a:active{
	color: #666666;
}

/* This is for secondary link styles (possibly in your footer, etc) */
.linkstyle2 a:link{

}
.linkstyle2 a:visited{

}
.linkstyle2 a:hover{

}
.linkstyle2 a:active{

}


/* Paragraph Styles */
p{
	color: #000000;
	text-align: justify;
	letter-spacing: 1px;
	/* Other paragraph styles */
}


/* Figure and Figcaption Styles */
figure{
	text-align: center;
	width: 220px;
}
figure img{
	width: 220px;
	height: 180px;
	border: solid 2px #424242;

}
figcaption{
	color: #FE6719;
	letter-spacing: 1px;
	font-weight: 700;
}












/* ------------------------------------- */
/* --------- Style Guide CSS ----------- */
/* ------------------------------------- */
/* The following CSS is used for the styling of the structure of the Style Guide itself */
body{
	width: 700px;
	margin: 10px auto;
	border: 1px solid #777;
	padding: 20px;
}

.styleguide{
	font-family: "Courier New", Courier, monospace;
}
h1.styleguide, h2.styleguide, h3.styleguide, h4.styleguide, h5.styleguide, h6.styleguide{
	color: #777;
	font-family: "Courier New", Courier, monospace;
}
h2.styleguide{
    background-color: #777;
    border-radius: 15px;
    padding: 15px;
    margin-left: -15px;
    color: white;
}
p.styleguide{
	color: #777;
	font-family: "Courier New", Courier, monospace;
}

section{
    margin-top: -10px;
    margin-bottom: 70px; 
}
.colorgroup{
    float: left;
    width: 170px;
}
.colorgroup h4{
	font-size: .9em;
}
.colorgroup p{
    font-size: .8em;
}
.clear{
    clear: both;
}
.swatches{
    width: 100px;
    height: 100px;
    border-radius: 10px;
}
