* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #242021;
}

#wrapper {
    max-width: 910px;
    margin: 1rem auto;
    border: solid thin #242021;
    overflow: hidden;
    background: #F2F2F1;
    position: relative;
}

article {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 10px 38px 75px;
}

.colum-left {
    width: 65%;
    font-size: 14px;
}

.colum-right {
    width: 32%;
    padding: 6px 0 0;
}

.color {
    color: #767777 !important;
}

.colum-right ul {
    font-size: 13px;
    line-height: 17px;
    font-style: italic;
    margin: 0 0 1rem;
}

.colum-right ul li {
    padding-left: 12px;
    margin: 10px 0px;
}

.colum-right li:before {
    text-indent: -12px;
    content: "\2022";
    float: left;
    font-size: 17px;
}

article .button {
    padding: 0 16px;
    display: flex;
    justify-content: center;
}

article .button a {
    font-size: 28px;
    line-height: 1.2;
    text-decoration: underline;
    font-family: "Times New Roman", Times, serif;
    display: flex;
    gap: 20px;
    text-align: center;
    align-items: center;
}

footer {
    position: absolute;
    bottom: 1.5rem;
    left: 40px;
    width: 32%;
    z-index: 10;
}

figure {
    margin-bottom: 6px;
}

.social {
    display: flex;
    gap: 9px;
    margin: 0 0 20px;
}

.flexbox {
    margin: 16px 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.flexbox p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.flexbox p span {
    display: block;
    text-align: center;
    font-size: 13px;
    line-height: 17px;
}

.font-size {
    font-size: 13px;
    margin: 65px 0 13px !important;
    font-style: italic;
}

h1 {
    font-size: 30px;
    margin: 0 0 25px;
    line-height: 1.2;
    font-weight: 400;
    font-family: "Times New Roman", Times, serif;
}

h2 {
    font-size: 15px;
    font-style: italic;
    margin: 20px 0 2px;
}

h3 {
    margin: 0 0 15px;
    color: #767777;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
}

img {
    max-width: 100%;
}

p:not(:last-child, .flexbox p) {
    margin-bottom: 25px;
    text-align: justify;
}

.nowrap {
    white-space: nowrap;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

ul ul {
    margin: 0 0 0 24px !important;
}

ul li {
    padding-left: 1px;
    margin: 0 0 0px;
    position: relative;
}

li:before {
    text-indent: -10px;
    content: "\2022";
    float: left;
    font-size: 12px;
    margin-top: 1px;
}

ul ul li:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 6px;
    height: 6px;
    border: 1px solid #000;
    border-radius: 50%;
}

.bottom {
    margin-bottom: 9px !important;
    font-size: 15px;
    line-height: 19px;
}

@media screen and (max-width:908px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    article {
        padding: 16px 16px 95px;
    }

    article .button {
        display: flex;
        padding: 0;
        justify-content: center;
    }

    :is(h1, .colum-left ul) {
        text-align: left;
    }

    span {
        white-space: nowrap;
    }

    .flexbox {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        grid-gap: 12px;
    }

    footer {
        left: 16px;
        bottom: 16px;
    }

    :is(p, ul) {
        text-align: left !important;
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media screen and (max-width:841px) {
    article {
        padding-bottom: 64px;
    }
}

@media screen and (max-width:767px) {
    article {
        display: block;
        padding-bottom: 16px;
    }

    article>div {
        width: auto !important;
    }

    footer {
        align-items: center;
        position: static;
        display: flex;
        justify-content: center;
        width: auto;
        flex-direction: column;
        padding: 0 16px 16px;
    }

    footer p {
        text-align: center !important;
        margin: 16px 0 0;
    }

    .colum-right>img {
        display: block;
        margin: 20px auto 0;
    }

    .social {
        justify-content: center;
        align-items: center;
    }

    h1 {
        font-size: 28px;
    }

    :is(.social+p, h3) {
        text-align: center !important;
    }

    .font-size {
        margin-top: 16px !important;
    }
}

@media screen and (max-width:480px) {
    ul ul {
        margin-left: 0 !important;
    }
}