/* --------------------------------------------- */
/* --------- Branding: Color Palette ----------- */
/* --------------------------------------------- */
/* These are the colors of the boxes under the Branding section */
#swatch1{
    background-color: #ab1f25;
    /*red*/
}
#swatch2{
    background-color: #1a204e;
    /*dark blue*/
}
#swatch3{
    background-color: #d6eff7;
    /*light blue*/
}
#swatch4{
    background-color: #cda120;
    /*gold*/
}

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


body{
    font-family: 'Klint Standard', 'Exo 2', sans-serif;
    color: #1a204e;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Egytian-Slate','Rokkitt', serif;
}


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

/* Main Navigation Style */
#mainnav{
    font-family: 'Klint Standard', 'Exo 2', sans-serif;
    font-size: 29px;
    color: #d6eff7;
    line-height: 48px;
    background-color: #1a204e;
    width: 205px;
}
#mainnav ul{
    list-style: none;

}
#mainnav li{


}
#mainnav a:link{
    color: #d6eff7;
    text-decoration: none;
}
#mainnav a:visited{
    color: #d6eff7;
    /* other styles */
}
#mainnav a:hover{
    color: #cda120;
}
#mainnav a:active{
    color: #cda120;
}


/* Secondary Navigation Style */
#secondnav{
    font-family: 'Klint Standard', 'Exo 2', sans-serif;
    font-size: 16px;
    color: #d6eff7;
    line-height: 19px;
    background-color: #1a204e;
    width: 205px;

}
#secondnav ul{
    list-style: none;

}
#secondnav li{

}
#secondnav a:link{
    color: #d6eff7;
    text-decoration: none;
}
#secondnav a:visited{
    color: #d6eff7;
}
#maisecondnavnnav a:hover{
    color: #cda120;
}
#secondnav a:active{
    color: #cda120;
}




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

/* True for all headings */
h1, h2, h3 ,h4, h5, h6{
    color: #cda120;
    font-weight: 600;
}


/* Style for individual headings */
h1{
    color: #232d61;
    font-size: 40px;

}

h2{
    font-family: 'Klint Standard', 'Exo 2', sans-serif;
    font-size: 20px;
    color: #d6eff7;

}

h3{
    font-size: 18px;

}

h4{
    font-size: 25px;
    color: #232d61;

}

h5{

}

h6{

}


/* List Styles */
ul{
    list-style: none;


}
ul li{
    color: #232d61;

}

ol{

}
ol li{
    color: #232d61;
}


/* Non-Navigational Link Styles */
/* This is for all default links on your page */
a:link{
    text-decoration: none;
    color: #cda120;

}
a:visited{
    color: #cda120;

}
a:hover{
    color: #cda120;

}
a:active{
    color: #cda120;

}

/* 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:#232d61;
    /* Other paragraph styles */
}


/* Figure and Figcaption Styles */
figure{

}
figure img{

}
figcaption{
    color: #cda120;
    font-family: 'Egytian-Slate','Rokkitt', serif;
    font-size: 26px;
    line-height: 32px;

}












/* ------------------------------------- */
/* --------- 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;
}
.styleguide img{

}
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;
}
