/**
* Reset
*
* Adapted from:
* @link http://meyerweb.com/eric/tools/css/reset/
* @version 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;
    box-sizing: border-box;
}

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

/**
 * Basic grid
 */
 * {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
 }

 .grid:after {
   /* Or @extend clearfix */
   content: "";
   display: table;
   clear: both;
 }

 [class*='col-'] {
   float: left;
   padding-right: 20px;
 }
 .grid [class*='col-']:last-of-type {
   padding-right: 0;
 }

 .col-2-3 {
   width: 66.66%;
 }

 .col-1-3 {
   width: 33.33%;
 }

 .col-1-2 {
   width: 50%;
 }

 .col-1-4 {
   width: 25%;
 }

.col-3-4 {
    width: 75%;
}

 .col-7-8 {
     width: 87.5%;
 }

 .col-1-8 {
   width: 12.5%;
 }

 .module {
   padding: 20px;
   background: #eee;
 }

 /* Opt-in outside padding */
 .grid-pad {
   padding: 20px 0 20px 20px;
 }
 .grid-pad [class*='col-']:last-of-type {
   padding-right: 20px;
 }

/**
 * Basic setup
 */
i, em {
    font-style: italic;
}

b, strong {
    font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 2px;
}

h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.17em; }
h4 { font-size: 1.12em; }
h5 { font-size: .83em; }
h6 { font-size: .75em; }

.page-content-box p, .page-hero p {
    padding: 20px 0;
    line-height: 1.6em;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

a:link,
a:visited {
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

ul {
    padding: 20px 50px;
    list-style: disc;
}

ul li {
    padding: 5px 0;
}

/**
* Styles
*/

body {
    background: rgb(30, 50, 80);
    background-size: 45%;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 16px;
}

.page-container {
    width: 100%;
}

.row {
    max-width: 1300px;
    margin: 0 auto;
}

#page-header {
    background: rgb(255, 255, 255);
    width: 100%;
    background: rgb(255,255,255);
}

#page-header .page-container.info-bar {
    background: rgb(30, 50, 80);
    color: #dfdfdf;
    padding: 10px;
    text-align: left;
    width: 100%;
    font-size: 0.85em;
    line-height: 1.8em;
}

#page-header .page-container.info-bar .social-media {
    text-align: right;
    font-size: 1.8em;
}

#page-header .page-container.info-bar .social-media img {
    height: 1em;
}

#page-header h1 {
    color: #000;
    font-family: 'Libre Baskerville', sans-serif;
    font-size: 2em;
    letter-spacing: 1px;
    height: 100%;
    display: inline-block;
    line-height: 75px;
}

#page-header h1 span.name {
}

#page-header h1 span.subtext {
    color: rgb(150, 170, 210);
    font-size: .45em;
    line-height: normal;
    font-family: 'Libre Franklin', sans-serif;
}

#page-navigation {
    float: right;
}

#page-navigation ul {
    padding: 0;
    list-style: none;
}

#page-navigation ul li {
    display: inline;
    line-height: 75px;
    font-size: 1.1em;
}

#page-navigation ul li a,
#page-navigation ul li a:link,
#page-navigation ul li a:visited {
    color: #000;
    padding: 0 10px;
    display: inline-block;
    text-decoration: none;
}

#page-navigation ul li.current a,
#page-navigation ul li.current a:hover {
    background: rgb(60, 90, 120);
    color: #fff;
}

#page-navigation ul li a:hover {
    text-decoration: underline;
}

.page-image-bar {
    background: rgba(255, 255, 255, 0.1) url(images/collage.png);
    background-size: auto 100%;
    position: relative;
    height: 160px;
}

.page-image-bar:before {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: inherit;
  content: ' ';
}

.page-content-box {
    background: rgb(240, 240, 240);
    box-shadow: 0px 0px 0px 12px rgb(240, 240, 240);
    border: 3px solid rgb(80, 70, 80);
    color: rgb(0, 0, 0);
    font-size: 1.2em;
    margin: 40px auto;
    padding: 25px;
}

.page-footer {
    text-align: center;
    color: rgb(150, 170, 210);
    padding-bottom: 20px;
}

.page-footer .separator {
    padding: 5px;
}

.btn {
    background: rgb(180, 130, 160);
    box-shadow: -4px 0 0 0 rgb(240, 240, 240),
                -8px 0 0 0 rgb(180, 130, 160);
    padding: 15px;
    margin: 0 20px 0 0;
    text-decoration: none;
    text-transform: uppercase;
    color: inerit;
    font-size: .9em;
}

/* --------- Smaller than 960px --------- */
@media only screen and (max-width: 1200px) {
    #page-header h1 {
        display: block;
        text-align: center;
    }

    #page-navigation {
        padding: 10px;
        float: none;
        text-align: center;
    }

    .page-content-box {
        width: 95%;
    }
}

/* --------- Smaller than 960px --------- */
@media only screen and (max-width: 960px) {
    .page-image-bar {
        background-position: -208px;
    }

    #page-header {
        font-size: .9em;
    }

    #page-header .page-container {
        display: block;
    }
}

/* --------- Smaller than 800px --------- */
@media only screen and (max-width: 800px) {

}

/* --------- Smaller than 600px --------- */
@media only screen and (max-width: 600px) {
    .page-container {
        width: 95%;
    }

    .page-image-bar {
        background-position: -630px;
    }

    #page-header h1 span {
        display: block;
    }

    #page-navigation {
        font-size: .9em;
    }

    #page-navigation ul li {
        line-height: 50px;
    }

    #page-navigation ul li a,
    #page-navigation ul li a:link,
    #page-navigation ul li a:visited {
        padding: 0 10px;
    }
}
