@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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: local(''), 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 {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 10px solid #00b0f0;
    padding: 16px 6px 0;
    background-color: #fff;
}

header {
    display: flex;
    padding: 0 110px 0 0;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

header p {
    position: absolute;
    left: 25%;
    top: 36px;
}

:is(.center :is(p, h1), header p) {
    text-align: center;
}

p {
    margin: 0 0 16px;
    text-align: justify;
}

:is(strong, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 14px;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
}

:is(h1 span, h2) {
    font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0000ff;
    text-decoration: underline;
    white-space: nowrap;
}

a[href^="tel:"] {
    color: #000 !important;
    text-decoration: none !important;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 50px;
}

li:before {
    content: '\2212';
    float: left;
    font-size: 14px;
    text-indent: -28px;
}

img {
    max-width: 100%;
}

@media all and (max-width: 798px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    header {
        padding: 0 0 16px;
    }

    header p {
        left: 30%;
    }

    :is(p, ul) {
        text-align: left;
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    li br {
        display: none;
    }
}

@media all and (max-width: 680px) {
    header p {
        position: static;
        width: 100%;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }

    br {
        display: none;
    }

    footer a {
        white-space: normal !important;
        word-break: break-all;
    }
}

@media all and (max-width: 374px) {
    header {
        flex-direction: column;
    }
}