/* reset all */

html {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    font: 16px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a,
img {
    outline: none;
    border: none;
}

img {
    width: 100%;
    display: inline-block;
}


/* body set-up */

body {
    font-family: 'Arial', sans-serif;
    font-size: .812rem;
    line-height: 1.4;
    color: #000;
    background: #fff;
    font-weight: normal;
}


/* main style */

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

u {
    text-decoration: underline;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: underline;
}

p {
    margin: 0 0 .937rem;
}

h1 {
    color: #206BAF;
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2;
    margin: .937rem -1.562rem;
    text-align: center;
    border-top: 3px dotted #206BAF;
    border-bottom: 3px dotted #206BAF;
    padding: .937rem 0
}

h1 span {
    font-size: 0.7em;
    font-weight: normal;
}

h2 {
    text-align: left;
    font-size: .937rem;
    color: #206BAF;
    margin: 0 0 .437rem;
}

h3 {
    margin: 0 0 .625rem;
    font-size: .875rem;
}

ul {
    padding: 0;
    margin-bottom: .937rem;
    list-style: none;
}

ul li {
    padding-left: .75rem;
}

ul li:before {
    content: "◆"
        /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -.75rem;
    font-size: .937rem;
    color: #206BAF;
}




/* layout  */

#wrapper {
    display: block;
    max-width: 760px;
    margin: .625rem auto;
    box-shadow: 0 0 .937rem .312rem #ddd;
}

header {
    position: relative;
}

header a {
    display: block;
    position: absolute;
    width: 25%;
    right: 3%;
    bottom: 0;
    top: 0;
}

header img {
    display: block;
    max-width: 100%;
}

article {
    padding: .937rem 1.562rem;
}


/*--use clearfix when float get's overflowed--*/

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}


@-moz-document url-prefix() {
    ul li {
        padding-left: 1rem;
    }

    ul li:before {
        content: "◆"
            /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
        ;
        float: left;
        margin-left: -.937rem;
        font-size: .687rem;
        color: #206BAF;
        line-height: 1.6
    }

}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    ul li {
        padding-left: 1rem;
    }

    ul li:before {
        content: "◆"
            /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
        ;
        float: left;
        margin-left: -.937rem;
        font-size: .687rem;
        color: #206BAF;
        line-height: 1.6
    }
}




/*----------------- footer --------------------*/

footer {
    border-top: 3px dotted #206BAF;
    padding: 1.25rem 1.562rem;
    display: flex;
    justify-content: space-between;
}

footer p {
    text-align: right;
    margin-bottom: 0;
}

footer p span {
    color: #206BAF;
}

p a {
    white-space: pre-wrap;
    display: inline;
}

footer h2 {
    font-family: "Times New Roman", serif;
}

@media only screen and (max-width: 760px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
    }

    a {
        font-weight: bold;
    }

    footer {

        display: block;
    }

    footer h2,
    footer p {
        text-align: center;
    }


    h1 {
        font-size: 1.25rem;
        padding: .625rem;
        margin: .937rem 0;
    }

    h2 {
        font-size: .875rem;
    }

    article {
        padding: .625rem;
    }

    p,
    ul {
        margin-bottom: .625rem;
    }
}

@media only screen and (max-width:479px) {
    h1 {
        font-size: 1.062rem;
    }
}
