@charset "utf-8";
@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-v47-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/roboto-v47-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v47-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/roboto-v47-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/roboto-v47-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-v47-latin-regular.svg#Roboto') format('svg');
    /* Legacy iOS */
}
@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: 700;
    src: url('../fonts/roboto-v47-latin-700.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/roboto-v47-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v47-latin-700.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/roboto-v47-latin-700.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/roboto-v47-latin-700.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/roboto-v47-latin-700.svg#Roboto') format('svg');
    /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #000;
    font: 400 1rem/1.3 'Roboto', Arial, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
}
#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
h1 {
    font-size: 1.4375rem;
    line-height: 1.3;
    margin: 1rem 0;
    text-align: center;
    color: #25A12D;
}
h1 span {
    font-weight: 400;
}
h2 {
    font-size: 1rem;
    line-height: 1.25;
    color: #25A12D;
    margin: 1rem 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
p {
    margin: 0 0 16px;
}
ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
   
}
ul li {
    padding-left: 46px;
}
ul li:before {
    content: "\25a0";
    float: left;
    margin-left: -23px;
    font-size: 11px;
    line-height: 1.6;
    color: #25A12D;
}
li .block {
    display: block;
    margin: 0.5rem 0;
}
.title p {
    text-align: center;
}
article {
    padding: 1rem 6rem 0;
}
footer {
    padding: 0 6rem 1.5rem;
}
@media only screen and (max-width: 56.188rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p, ul {
        hyphens: auto;
        margin: 0 0 1rem;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem;
    }
    footer br, h1 br {
        display: none;
    }
}
@media only screen and (max-width: 30rem) {
    h1 {
        font-size: 22px;
        line-height: 1.3;
        margin: 1rem 0;
    }
    h1 span {
        font-weight: 400;
    }
    ul li {
        padding-left: 16px;
    }
    ul li:before {
        margin-left: -16px;
    }
    article {
        padding: 1rem 0 0;
    }
    footer {
        padding: 0;
    }
    .flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem
    }
    .flex p, footer p, h2:last-of-type, .center {
        text-align: center;
    }
}