@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-v16-latin-regular.eot');
    src: local(''), url('../fonts/fira-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'), url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'), url('../fonts/fira-sans-v16-latin-regular.ttf') format('truetype'), url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans') format('svg');
}

@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/fira-sans-v16-latin-700.eot');
    src: local(''), url('../fonts/fira-sans-v16-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v16-latin-700.woff2') format('woff2'), url('../fonts/fira-sans-v16-latin-700.woff') format('woff'), url('../fonts/fira-sans-v16-latin-700.ttf') format('truetype'), url('../fonts/fira-sans-v16-latin-700.svg#FiraSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 630px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #fff;
    padding: 20px;
}

article {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0 0;
}

article a {
    text-decoration: underline !important;
    font-weight: bold;
}

.column {
    width: 49%;
}

footer {
    position: relative;
}

footer a[href^="tel:"] {
    display: inline-block;
    padding-left: 8px;
}

.info {
    width: 230px;
}

.logo {
    display: flex;
    justify-content: flex-start;
}

figure {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 37px;
    line-height: 1.1;
    background: #ffe71f;
    padding: 10px;
    text-align: center;
}

h1 span {
    font-size: 24px;
}

h2 {
    font-size: 16px;
    line-height: 24px;
}

h3 {
    font-size: 26px;
    line-height: 1.1;
    margin-top: 16px;
}

h3 span {
    display: block;
    font-weight: 400
}

ul {
    list-style: none;
    padding-bottom: 20px;
}

ul li {
    padding-left: 15px;
}

li:before {
    content: "\2010";
    color: #000;
    float: left;
    font-size: 24px;
    text-indent: -15px;
    margin-top: -2px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, h3, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:630px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
    }

    footer {
        margin-top: 20px
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    figure {
        width: 50%;
    }
}

@media only screen and (max-width:540px) {
    h1 {
        font-size: 30px
    }

    .info {
        width: auto
    }

    .logo {
        justify-content: center;
    }

    article {
        flex-direction: column;
    }

    .column {
        width: auto;
    }

    .column br {
        display: none
    }

    figure {
        position: static;
        margin-top: 20px;
        width: auto;
        display: flex;
        justify-content: center;
    }

    footer :is(h3, p) {
        text-align: center;
    }
}
}