@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #404040;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #2e496b;
}

a.link:hover {
    text-decoration: underline;
    color: #a82732;
}

p {
    padding-bottom: 1.875rem;
}

h1 {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: .625rem;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1rem;
    margin-bottom: .625rem;
}

ul {
    list-style: none;
    padding-bottom: 1.5rem;
}

ul li {
    padding: 0 0 0.375rem 1.25rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1rem;
    color: #a82732;
    font-size: .9rem;
}

header {
    display: flex;
    padding: 1.5rem 2rem;
}

article {
    display: flex;
    padding: 2.5rem 2.5rem 0;
    gap: 1.875rem;
}

.left {
    flex: 70%;
    padding: 1rem 0 0;
}

.left>a {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.right {
    flex: 30%;
}

.right>div:first-of-type {
    border-left: 1px dotted #c4c4c4;
    padding: 1rem 1.25rem 0.5rem;
}

.right>div:last-of-type {
    display: flex;
    padding: 0 1.25rem;
}

.right div p {
    font-size: 1.25rem;
    line-height: 1.4;
    padding-bottom: 1rem;
}

footer {
    padding: 0 2.5rem 2.5rem;
}

.button a {
    padding: 9px 24px;
    background-color: #2e496b;
    border: 1px solid #2e496b;
    color: #fff;
    display: inline-block;
    transition: .2s;
}

.button a:hover {
    background: #a82732;
    border: 1px solid #a82732;
}

@media only screen and (max-width: 54.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 50rem) {
    article {
        display: block;
        padding-bottom: 2rem;
    }

    .right>div:first-of-type,
    .right>div:last-of-type {
        border-left: none;
        padding: 0 0 0.5rem;
    }
}

@media only screen and (max-width: 40rem) {
    header {
        justify-content: center;
        padding: 1.5rem 1rem;
    }

    article {
        padding: 0 1rem 1rem;
    }

    footer {
        padding: 0 1rem 1.5rem;
        display: flex;
        justify-content: center;
    }

    p {
        padding-bottom: 1.25rem;
    }

    ul {
        padding-bottom: 1rem;
    }

    ul li {
        padding-left: 1rem;
    }

    .right div p {
        text-align: center;
    }

    .right>div:last-of-type {
        display: flex;
        justify-content: center;
    }
}