@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    color: #242021;
    font-weight: 400;
}

#wrapper {
    max-width: 905px;
    margin: 1rem auto;
    padding: 60px;
    border: solid thin #242021;
    overflow: hidden;
    position: relative;
}

header {
    display: flex;
    justify-content: center;
}

article {
    margin: 10px 0 50px;
}

span {
    white-space: nowrap;
}

:is(article p:nth-of-type(1), h1, h3, h3+p) {
    text-align: center;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    font-size: 28px;
    margin: 30px 0;
    line-height: 32px;
}

:is(h2, h3) {
    font-size: 18px;
    margin: 16px 0 6px;
    line-height: 22px;
}

h3 {
    margin-top: 50px;
}

img {
    max-width: 100%;
}

p:not(:last-child) {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #242021;
    text-decoration: underline;
    white-space: nowrap;
}

a[href^="tel:"] {
    text-decoration: none;
}

a.mail {
    color: #467886 !important;
}

ul {
    margin: 0 0 25px 23px;
    list-style: none;
}

ul:nth-of-type(3) li {
    margin-bottom: 10px;
}

ul li {
    padding-left: 23px;
}

li:before {
    text-indent: -23px;
    content: "\2212";
    color: #242021;
    float: left;
    font-size: 13px;
}

@media screen and (max-width:903px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media screen and (max-width:480px) {
    ul {
        margin-left: 0;
    }
}