* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 1rem auto;
    border: 5px #7f7f7f solid;
    max-width: 750px;
    color: #000;
    position: relative;
    background-color: #ffffff;
    font-family: "Open Sans", sans-serif;
    line-height: 18px;
    font-size: 13px;
    overflow: hidden;
}

p {
    padding-bottom: 14px;
}

.justify {
    text-align: justify;
}

h1 {
    margin: 0 0 22px 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
}

h2 {
    font-size: 19px;
    line-height: 24px;
    margin: 0 0 10px;
    font-weight: 500;
}

h2.color {
    color: #fff;
}

h3 {
    font-size: 14px;
    line-height: 18px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    border: none;
}

ul {
    margin: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 18px;
    margin: 0 0 7px;
}

ul li:before {
    content: "\25A0";
    float: left;
    font-size: 14px;
    text-indent: -18px;
    position: relative;
    top: -1px;
}

.right ul li:before {
    color: #e82583;
    margin-top: -2px;
}

.logo {
    display: flex;
    justify-content: right;
    padding: 12px 25px 5px;
}

a.link {
    color: #0000ff;
    text-decoration: underline;
}

article {
    padding: 15px 27px 0 42px;
    border-bottom: 10px solid #e82583;
}

.font {
    font-size: 14px;
    line-height: 20px;
}

footer {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    column-gap: 25px;
    flex-wrap: wrap;
    row-gap: 10px;
}

aside:nth-of-type(2n) {
    margin: 4px 10px 0 0;
    line-height: 18px;
}

aside:nth-of-type(2n) span {
    display: inline-block;
    width: 143px;
}

.flexbox {
    display: flex;
    margin-left: -10px;
    justify-content: space-between;
    padding: 0 0 14px;
    align-items: center;
}

.right {
    width: 35%;
    margin-top: 60px;
}

section {
    background: #595959;
    color: #fff;
    padding: 14px 12px 3px;
    width: 61%;
    font-size: 14px;
    line-height: 1.3;
}

section ul {
    font-size: 16px;
    line-height: 1.4;
}

@media only screen and (max-width: 750px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    .justify {
        text-align: left;
    }

    .flexbox {
        display: block;
        margin-left: 0;
    }

    .right {
        width: auto;
        margin-top: 0;
    }

    article, footer,.logo {
        padding: 10px 16px;
    }

    aside:nth-of-type(2n) span {
        width: 123px;
    }

    section {
        width: auto;
        padding: 10px 12px 2px;
        margin: 0 0 20px;
    }

    ul li br {
        display: none;
    }

    aside:nth-of-type(2n) {
        margin: 4px 0 0 0;
    }
}