@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v43-latin-regular.eot');
    src: url('../fonts/open-sans-v43-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v43-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v43-latin-regular.woff') format('woff'), url('../fonts/open-sans-v43-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v43-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v43-latin-600.eot');
    src: url('../fonts/open-sans-v43-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v43-latin-600.woff2') format('woff2'), url('../fonts/open-sans-v43-latin-600.woff') format('woff'), url('../fonts/open-sans-v43-latin-600.ttf') format('truetype'), url('../fonts/open-sans-v43-latin-600.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 20px 70px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    margin: 0 0 20px;
}

h1 {
    font-size: 22px;
    margin: 0 0 20px;
}

h2 {
    font-size: 15px;
}

h3 {
    font-size: 15px;
    font-weight: normal;
}

ul {
    list-style: none;
    margin: 0 0 20px;
}

ul li {
    padding-left: 25px
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 8px;
    height: 8px;
    background: #000;
    margin-left: -25px;
    top: 7.5px;
}

ul ul {
    margin: 0;
}

ul ul li {
    padding-left: 0
}

ul ul li:before {
    background: #c1c0c0;
}

header {
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0 4rem;
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

}

@media only screen and (max-width:790px) {
    #wrapper {
        padding: 1rem;
    }

    h1 {
        text-align: center;
    }
}