﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 715px;
    margin: 12px auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    color: #200e00;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

header {
    padding: 25px 16px 40px 70px;
}

article {
    padding: 10px 25px 1px 70px;
}

footer {
    padding: 21px 10px 2px 70px;
    background: #959595;
    position: relative;
    color: #fff;
}

footer a {
    color: #fff;
}

p {
    margin: 0 0 20px;
}

h1 {
    margin: 0 -25px 20px 0;
    padding: 10px 30px 20px 10px;
    font-size: 23px;
    line-height: 27px;
    font-weight: 400;
    background: #c92535;
    color: #fff;
}

h2 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    position: absolute;
    z-index: 3;
    right: 25px;
    bottom: 20px;
}

h1 small {
    display: block;
    font-weight: 700;
    font-size: 58px;
    line-height: 53px;
}

a {
    color: #200e00;
    text-decoration: none;
}

ul {
    padding: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 18px;
    position: relative;
}

li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #c92535;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 4px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.item {
    width: 49%;
}

@media all and (max-width: 714px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    header {
        padding: 15px;
    }

    article {
        padding: 0 15px 1px;
    }

    footer {
        padding: 15px;
    }

    h1 {
        margin: 0 0 20px;
        font-size: 22px;
        line-height: 26px;
        padding: 10px;
    }

    h1 small {
        font-size: 8vw;
        line-height: 1.2;
    }

    h2 {
        position: static;
    }

    .item {
        width: 100%;
    }
}