/* 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 {
    max-width: 100%;
    display: inline-block;
}


/* body set-up */

body {
    font-family: 'Roboto', sans-serif;
    font-size: .875rem;
    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: #ED7013;
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
    margin: 1.25rem 0;
}

h2 {
    text-align: left;
    font-size: .875rem;
    line-height: 1;
    margin: 0;
}

ul {
    padding: 0;
    margin-bottom: 1.25rem;
    list-style: none;
    /*    width: 47%;*/
    /*    float: left*/
}

ul + ul {
    /*    float: right;*/
}

ul li {
    padding-left: .5rem;
}

ul li:before {
    content: "\2022"
        /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -.5rem;
    font-size: 1.25rem;
    line-height: 0.9;
}


/* layout  */

#wrapper {
    display: block;
    max-width: 48.75rem;
    margin: .625rem auto;
    padding: .937rem 3.125rem .312rem;
    box-shadow: 0 0 .937rem .312rem #ddd;
}

header {
    position: relative;
    margin-bottom: 1.562rem;
}

header a {
    display: block;
    margin: 0 auto .625rem;
    width: 22%;
    height: 25%;
    position: absolute;
    right: 0;
    bottom: 0;
}

header img {
    display: block;
    max-width: 100%;
}

article {
    border-bottom: .625rem solid #ED7013;
}

p:last-of-type {
    margin-bottom: .312rem;
}


/*--use clearfix when float get's overflowed--*/

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}


@media only screen and (max-width: 779px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: .625rem;
    }

    a {
        font-weight: bold;
    }

    footer {
        margin: 0 -.625rem -.625rem;
        padding: .625rem;
    }

    header {
        margin: -.625rem -.625rem .625rem;
        padding: .625rem;
    }

    h1 {
        font-size: 1.25rem;
        margin: .937rem 0;
    }

    h2 {
        margin-bottom: .312rem;
    }

    ul {
        width: 100%;
    }

    p,
    ul {
        margin-bottom: .625rem;
    }

    ul br {
        display: none
    }
}

@media only screen and (max-width:479px) {
    body {
        font-size: .812rem;
    }

    h1 {
        font-size: 1.125rem;
    }

    ul li:before {
        font-size: 1rem;
        line-height: 1.1;
    }
}
