@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 690px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    font-size: 1.5em;
    line-height: 1.2;
    background: #000 url('../images/bg.jpg') center center no-repeat;
    background-size: 100% 100%;
    color: #fff;
    padding: 1rem;
}
h1 span {
    font-size: 1.25em;
    text-transform: uppercase;
    line-height: 1.3;
}
h1 small {
    display: block;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.3;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
    margin-bottom: 0.35rem;
}
li:before {
    content: "\2022";
    font-size: 1.25rem;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    position: relative;
}
article {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.text {
    padding: 0.5rem 0;
}
.box1 {
    background: #00AEEF;
}
.box2 {
    background: #EC008C;
}
.box2 ul {
    font-weight: 700;
}
.box3 {
    background: #FFF200;
}
:is(.box1, .box2) :is(h2, p, ul) {
    color: #fff;
}
article div {
    width: 50%;
    padding: 0.5rem 1rem;
}
footer {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: #231F20;
    justify-content: center;
}
footer p {
    padding: 0;
    color: #fff;
    font-size: 0.9375em;
    line-height: 1.2;
}
footer a {
    text-transform: uppercase;
    font-size: 1.4em;
    line-height: 1.1;
}
@media only screen and (max-width:689px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    ul {
        padding-bottom: 0.25rem;
    }
    article, footer {
        flex-direction: column;
        align-items: center;
    }
    article div {
        width: 100%;
    }
    footer p {
        text-align: center;
    }
}