@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 59.375rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 1.875rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .937rem;
}

ul {
    list-style: none;
    margin: 0 0 4.375rem;
    padding: 0;
}

ul li {
    padding-left: 2.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

h1 {
    font-size: 2.937rem;
    margin: 1.875rem 0;
}

h2 {
    font-size: 26px;
    margin: .937rem 0;
}

main {
    display: flex;
    justify-content: space-between;
}

.margin_bottom {
    margin-bottom: 4.375rem;
}

article {
    width: 65%;
}

.flex {
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
}

.flex p {
    text-align: center;
}

.column {
    width: 8.75rem;
}

footer {
    width: 30%;
}

a.button {
    background-color: #17181a;
    border: .062rem solid white;
    color: #f7f8f9;
    padding: .75rem 1.5rem;
    display: block;
    text-align: center;
    margin-bottom: .312rem;
}

a.button:hover {
    background: #A8AAAF;
    color: #000;
}

.flex1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.875rem;
}

.flex1 i {
    border: 1px solid #a8aaaf;
    padding: .625rem 3.125rem;
    font-size: 1.562rem;
}

.flex1 i:hover {
    border: 1px solid #17181a;
}

.flex2 {
    border-top: 1px solid #a8aaaf;
    border-bottom: 1px solid #a8aaaf;
    display: flex;
    align-items: center;
    padding: .625rem 0;
    column-gap: .625rem;
}

.flex2 p {
    margin: 0;
}

@media only screen and (max-width: 59.312rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    h1 {
        text-align: center;
        margin: .625rem 0;
        font-size: 2.25rem;
    }

    h2 {
        margin: .937rem 0;
    }

    header {
        display: flex;
        justify-content: center;
    }

    p,
    ul,
    .margin_bottom {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 .625rem;
    }

    ul li {
        padding-left: 1.375rem;
    }
}

@media only screen and (max-width: 53.062rem) {
    main {
        display: block;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.312rem;
    }

    article,
    footer {
        width: auto;
    }

    .flex,
    .flex1 {
        justify-content: center;
        column-gap: .937rem;
    }

    footer p {
        text-align: center;
    }

    .flex2 {
        flex-direction: column;
        align-items: center;
    }
}