@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.4em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 930px;
    border: 1px solid #999;
    background: #fff;
    padding: 1.5rem;
}
p {
    padding-bottom: 2.5rem;
}
.pb0 {
    padding-bottom: 0;
}
.pb1 {
    padding-bottom: 0.25rem;
}
.pb2 {
    padding-bottom: 0.5rem;
}
.lh {
    line-height: 2em;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding: 0 0 0.375rem 2rem;
    line-height: 1.7em;
}
ul li:before {
    content: "\2022";
    float: left;
    margin: -1px 0 0 -2rem;
}
.icons {
    padding-bottom: 1rem;
}
.icons li:before {
    display: none;
}
.icons .flex1 {
    flex: 1;
}
.icons .width {
    vertical-align: -6px;
    width: 23%;
}
.icons li {
    padding: 0 0 0.375rem;
    line-height: 1.7em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2.125em;
    line-height: 1.3em;
}
h2 {
    font-size: 1.4em;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
article {
    padding: 1.5rem 0;
    position: relative;
}
.flex {
    display: flex;
    justify-content: space-between;
}
article:before {
    content: "";
    position: absolute;
    top: 1.5rem;
    right: 50%;
    height: 96%;
    width: 2px;
    background-color: #000;
}
.left, .right {
    width: 47.5%;
}
figure {
    margin-bottom: 3rem;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer figure {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
p span{
    display: inline-block;  
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
    color: #00f;
}
.font {
    font-size: 1.4em;
    line-height: 1.3em;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a {
        display: inline-block;
    }
    article:before{
        display: none;
    }
    .flex {
        display: block;
    }
    .left, .right {
        width: 100%;
    }
    .icons li span {
        width: 10%;
    }
    footer {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:655px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.75em;
    }
    .icons .width {
        width: 40px;
    }
    li {
        padding-left: 1.25rem;
    }
    ul li::before {
        margin-left: -1.25rem;
    }
}