@charset "utf-8";

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v32-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v32-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v32-latin-500.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v32-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v32-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v32-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v32-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v32-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: .937rem;
    line-height: 1.431em;
    font-weight: 400
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: 1px solid #c2c2c2;
    background-color: #fff;
    overflow: hidden;
}

h1 {
    color: #008767;
    font-size: 1.692em;
    line-height: 1.21em;
    font-weight: 500;
}

h2 {
    color: #004998;
    font-weight: 500;
    font-size: 1.062rem;
    line-height: 1.231;
     margin: .937rem 0;
}

:is(a:link,a:visited,a:hover,a:active) {
     color: #004998;
        text-decoration: underline;
        white-space: nowrap;
    }

a:hover {
    color: #0e66b7;
}

p {
    margin: .875rem 0;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 2.437rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.125rem;
    font-size: 1.375em;
    line-height: 1;
}

.gruen {
    color: #008767;
    font-size: 1.131em;
    line-height: 1.321em;
    margin: 1.562rem 0 0
}

a.link {
    text-decoration: underline .125rem;
    font-weight: 500;
    font-size: 1.321em;
    margin: 3rem 0;
    display: block;
}

span {
    display: inline-block;
}

article {
    padding: 2rem 5.5rem 0 4rem;
}

footer {
    padding: 3rem 5.5rem 2rem 4rem;
}

@media only screen and (max-width:49.312rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem
    }

    ul li {
        padding-left: 1.125rem
    }

    h1 {
        font-size: 1.25rem;
        text-align: center;
    }

    article,
    footer {
        padding: 0;
    }

    article br {
        display: none;
    }

    a.link {
        margin: 1.25rem 0;
    }

    footer {
        text-align: center
    }
}