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

/* GRID */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
    padding: 0 30px 0 30px;
    margin: 0 auto;
    width: 60%;
}

/* COLUMN */

.col {
    padding: 10px 10px 10px 10px;
}

#content {
    background: #fff;
    min-width: 100%;
}

/* TYPOGRAPHY */

body {
    color: #000;
    font: 300 16px/23px "Lato", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #155f92;
}

h2, h3 {
    font: 400 16px "Roboto", sans-serif;
    color: #000;
    letter-spacing: 2px;
}

h2 {
    font-size: 28px;
    line-height: 45px;
}

h3 {
    font-size: 21px;
    line-height: 40px;
    margin-top: 10px;
}

p {
    color: #000;
    margin-top: 10px;
}

strong {
    font-weight: 400;
}

cite, em {
    font-style: italic;
}

code {
    font: 400 16px "Ubuntu Mono", monospace; 
    color: #262626;
    line-height: 20px;
    background: #f2f2f2;
    padding: 3px 3px 3px 3px;
    border-color: #adadad;
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
}

pre {
    color: #262626;
    padding: 0 0 3px 15px;
    margin-top: 10px;
    border-color: #155f92;
    border-left-style: solid;
    border-width: 5px;
    background: #f2f2f2;
    background: -webkit-linear-gradient(to right, #f2f2f2, #fff);
    background:    -moz-linear-gradient(to right, #f2f2f2, #fff);
    background:         linear-gradient(to right, #f2f2f2, #fff);
    overflow: auto;
}

pre code {
    padding: 0 0 0 0;
    border-style: none;
    background: none;
}

/* LINKS */

a {
    color: #dd3333;
    text-decoration: none;
    border-bottom: 0.75px solid #dd3333;
}

a:hover {
    color: #dd3333;
    text-decoration: none;
    border: none;
}

ul { 
    display: block;
    list-style-type: disc;
    margin-top: 10px;
    padding-left: 40px;
}

/* HEADER */

#logo {
    padding: 10px 0 0 0;
    width: 45%;
}

#tagline {
    padding: 14px 0 0 0;
    float: right;
    color: #fff;
}

.buttons {
    line-height: 44px;
    padding-bottom: 15px;
    text-align: center;
}

#btn {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 0 30px 0 30px;
    margin: 10px 0 10px 0;
    color: #fff;
    font-weight: 400;
    letter-spacing: .5px;
    text-decoration: none;
}

#btn:hover {
    background: #fff;
    color: #155f92;
}

/*NAVIGATION*/

.navi {
    font-weight: 400;
    letter-spacing: 0.5px;
    /*text-transform: uppercase;*/
    text-align: right;
    color: #fff;
    margin-bottom: 10px;
}

.navi li {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
}

.navi li:last-child {
    margin-right: 0;
}

.navi a {
    color: #fff;
    border-style: none;
}

.navi a:hover {
    border-bottom: 0.75px solid #fff;
}

/* FOOTER */

.primary-footer {
    color: #fff;
    font-size: 14px;
    padding: 10px 0 10px 0;
    text-align: center;
}

/* MOBILE RESPONSIVENESS */

@media all and (max-width: 1050px) {
    
    .container {
        margin: 0 auto;
        width: 100%;
    }

    img {
        display: block;
        margin: 0 auto;
    }

    .clearing {
        clear: both;
    }
    #tagline {
        float: none;
        text-align: center;
    }

    .navi {
        text-align: center;
        display: unset;
    }
}