﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 865px;
    margin: 12px auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    position: relative;
}

article {
    padding: 28px 42px;
}

footer {
    position: absolute;
    z-index: 3;
    right: 97px;
    top: 825px;
}

p {
    margin: 0 0 20px;
}

h1 {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    color: #112678;
}

h2 {
    font-size: 16px;
    margin: 0 0 7px;
    line-height: 20px;
    font-weight: 400;
    color: #112678;
}

sup {
    font-size: 70%;
}

a {
    color: #231f20;
    text-decoration: none;
}

ul {
    padding: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 21px;
    position: relative;
}

li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 3px;
    top: 7px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.jus {
    text-align: justify;
}

.left {
    width: 571px;
}

.right {
    padding: 0 6px 0 16px;
    border-left: 2px solid #0eb0a0;
    width: 225px;
    margin-right: -34px;
    font-size: 11px;
    line-height: 15px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.right h2 {
    font-size: 14px;
    line-height: 18px;
}

.logo {
    margin-bottom: 30px;
}

@media all and (max-width: 864px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    article {
        padding: 15px;
    }

    .jus {
        text-align: left;
    }

    .left {
        width: 70%;
    }

    .right {
        width: 29%;
        margin-right: 0;
    }

    footer {
        bottom: 16px;
        width: 26%;
        right: 15px;
    }
}

@media all and (max-width: 767px) {
    .flex {
        display: block;
    }

    .left {
        width: 100%;
    }

    .right {
        width: 100%;
    }

    footer {
        position: static;
        padding: 0 15px 15px;
        width: auto;
    }
}