body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #000 solid;
    max-width: 920px;
    position: relative;
    padding: 50px;
    background-color: #FFF;
    overflow: hidden;
}

p {
    margin-bottom: 15px;
}

h1 {
    margin: 0 0 15px;
    font-size: 27px;
    font-weight: 400;
    font-family: 'Lisu Bosa', serif;
    color: #0073CF;
}

h1 span {
    display: block;
}

h2 {
    font-size: 16px;
    font-weight: 700;
}

.h2 {
    padding-bottom: 10px;
}

a {
    color: #00f;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}
footer a{color: #000!important;}
ul {
    margin-bottom: 15px;
    list-style: none;
}

ul li {
    padding-left: 50px;
    position: relative;
}

ul li:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 25px;
    background: #000;
    display: block;
}

strong {
    font-weight: 700;
}

header {
    margin: 0 0 20px;
}

.small {
    font-size: 14.4px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
}

address {
    font-style: normal;
    font-size: 14px;
}

.info strong {
    display: inline-block;
    margin: 0 35px 0 0;
}

.info span {
    margin: 0 10px 0 0;
}

.color {
    color: #0073CF;
}

@media only screen and (max-width:920px) {
    body {
        font-size: 14px;
    }

    #wrapper {
        border: none;
        hyphens: auto;
        margin: 0;
        padding: 16px;
    }

    header img {
        width: 100%;
    }

    .flex {
        padding: 16px 0 0;
    }

    .logo {
        margin: 0;
    }

    .info span {
        display: block;
        margin: 0;
    }

    ul li {
        padding-left: 30px;
    }

    ul li:before {
        left: 15px;
    }
}

@media only screen and (max-width:560px) {
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .logo {
        text-align: center;
    }
}