.row {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
}

body {
    font-family: Arial;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 2px solid;
    position: relative;
}

header:after {
    content: "";
    position: absolute;
    bottom: -.8em;
    height: 2px;
    width: 80%;
    background: black;
    right: 0;
}

header:before {
    content: "";
    position: absolute;
    bottom: -1.6em;
    height: 2px;
    width: 90%;
    background: black;
    right: 0;
}

main figure, header figure {
    line-height: 0;
    margin: 0;
    padding: 0;
}

main figure img, header figure img {
    max-height: 100px;
    width: auto;
    max-width: 100%;
}

header, main, footer {
    padding: 1% 10%;
}

footer {
    border-top: 2px solid;
    width: 100%;
    text-align: center;
}

.content section.card {
    width: 100%;
    max-width: 600px;
    font-style: normal;
    font-size: .9em;
    padding: 30px 20px;
    position: relative;
    line-height: 1.4;
    margin-top: 2em;
}

.content section.card:before {
    content: "";
    height: 5em;
    border-width: 2px 2px 0 2px;
    border-style: solid;
    border-color: black;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.content section.card:after {
    content: "";
    height: 2em;
    border-width: 0 2px 2px 2px;
    border-style: solid;
    border-color: black;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.content section.card h1 {
    font-size: 1.5em;
    margin: 0 0;
    padding: 0 0;
    line-height: 1.5;
}

.content section.card .uppercase {
    font-size: .8em;
    letter-spacing: .03em;
    display: block;
    margin-bottom: 1em;
}

a {
    color: inherit;
}

main {
    flex-grow: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.content {
    width: 80%;
}

.content p {
    font-size: 1.2em;
    line-height: 1.5;
}

.col-6 {
    width: 50%;
}

.row .logo {
    width: 100%;
    justify-self: flex-end;
}

.row .logo figure {
    text-align: right;
}

.card h2 {
    font-weight: 400;
    margin-bottom: 5px;
    padding-bottom: 0;
}

.card h3 {
    margin-top: 0;
}

address {
    font-style: normal;
}

address .row {
    gap: 1rem;
    align-items: flex-start;
    margin: 3px 0;
}

address .row span:last-child {
    flex-grow: 1;
}

@media (max-width: 666px) {
    .col-6 {
        width: 100%;
    }
}

@media (max-width: 350px) {
    h2 {
        font-size: 1.3em;
    }
}

@media (min-width: 666px) {
    .card .col-6:last-child {
        padding-top: 3rem;
    }
}