/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
    color: #595959;
    font: 300 1.25em/1.5 "Lato", Arial, sans-serif;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 40px;
}

ul {
    margin-bottom: 40px;
}

strong {
    font-weight: 400;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Headlines
   ========================================================================== */
h1,h2 {
    font-weight: 700;
    font-family: "Roboto Slab", Georgia, serif;
}

h1 {
    font-size: 1.5em;
    margin: 0 0 30px;
    overflow: hidden;
    text-align: center;
}

h1.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #fff;
}

h1::before, h1::after {
    content: '';
    position: relative;
    width: 8%;
    height: 6px;
    background-color: #ccc;
    display: inline-block;
    vertical-align: middle;
    top: -5px;
  }

h1::before {
    left: -0.5em;
    margin-left: -50%;
  }

h1::after {
    right: -0.5em;
    margin-right: -50%;
}

h2 {
   font-size: 1.2em;
   margin-bottom: 20px;
}

a {
    border-bottom: 1px dotted #51c404;
    color: #51c404;
    display: inline-block;
    text-decoration: none;
}
/* ==========================================================================
   Header
   ========================================================================== */
header {
    text-align: center;
    margin-bottom: 40px;
}

.header-logo {
    border-bottom: none;
    display: inline-block;
    margin: 30px 0;
}

.header-logo img{
    width: 190px;
}

.header-intro {
    background-color: #f6f6f6;
    font-size: 1.2em;
    padding: 40px 0;
}

.header-intro  p {
    margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    border-top: 1px solid #eee;
    background-color: #f6f6f6;
    font-size: 0.6em;
    margin: 80px 0 0;
    padding: 15px 0;
}

footer a {
    float: right;
}


/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (min-width: 62.5em) {
    body {
        font-size: 1.5em;
    }

    .header-logo img{
        width: auto;
    }
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {

}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.centered {
    text-align: center;
}
.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}