@charset "utf-8";

@font-face {
    font-family: 'DaxlinePro';
    src: url('../fonts/DaxlinePro-Light.woff2') format('woff2'), url('../fonts/DaxlinePro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DaxlinePro';
    src: url('../fonts/DaxlinePro.woff2') format('woff2'), url('../fonts/DaxlinePro.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DaxlinePro';
    src: url('../fonts/DaxlinePro-Bold.woff2') format('woff2'), url('../fonts/DaxlinePro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 300 15px/1.5em 'DaxlinePro', Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

article {
    padding: 1.5rem 3rem 1rem;
}

article h1 {
    font-weight: 700;
    color: #0b4ea2;
    font-size: 1.05rem;
    margin: 1rem 0;
    line-height: 120%;
}

article h3 {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

article h2 {
    color: #0b4ea2;
    font-size: 15px;
    font-weight: 400;
}

article ul {
    margin: .3rem 0 1rem 2rem;
    list-style: none;
}

article ul li:before {
    content: url('../images/star.jpg');
    float: left;
    margin: 0 0 0 -20px;
}

article p:not(:last-child) {
    margin-bottom: 1rem;
}

article .address p {
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
}

article p span {
    white-space: nowrap;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

footer {
    padding: 1rem 3rem 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem 2rem;
    align-items: flex-end;
}

footer a.url {
    color: #0b4ea2;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article :is(p, ul) {
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {

    article {
        padding: 1.5rem 2rem 1rem;
    }

    footer {
        padding: 1rem 2rem 1.5rem;
    }
}

@media only screen and (max-width: 30rem) {

    article {
        padding: 1rem;
    }

    article ul {
        margin: .3rem 0 1rem 1.2rem;
    }

    .address p {
        text-align: center;
    }

    footer {
        padding: 0 1rem 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}