@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 1px 2px 10px 2px rgb(0 0 0 / 44%);
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

article p {
    padding-bottom: 1rem;
}

p :is(span, strong),
ul span {
    white-space: nowrap;
}

.justify {
    text-align: justify;
}

h1 {
    font-size: 2rem;
    color: #073070;
    font-weight: 400;
    position: relative;
    line-height: 1.2;
}

h1 span {
    font-size: 1.2rem;
    display: block;
}

h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5rem;
    width: 60px;
    height: 100%;
    background-color: #448dde;
}

h2 {
    font-size: 1.375rem;
    font-weight: 400;
    color: #448dde;
    margin: 3rem 0 1rem;
}

ul {
    list-style: none;
    padding-bottom: 2rem;
}

ul li {
    padding: 0 0 0 1.2rem;
}

ul li:before {
    content: "\25A0";
    color: #448dde;
    float: left;
    margin: 0 0 0 -1.2rem;
    line-height: 1.1;
}

section {
    display: flex;
    gap: 1rem;
}

section div {
    flex: 50%;
}

article {
    padding: 1.5rem 5rem 0;
}

footer {
    padding: 0 5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3rem;
}

footer p {
    flex: 0 1 45%;
}

footer div {
    display: flex;
    align-items: end;
    gap: 1rem;
}

footer div a:first-of-type {
    flex: 0 0 75px;
}

footer div a:last-of-type {
    flex: 0 0 250px;
}

@media only screen and (max-width: 54.938rem) {

    #wrapper {
        box-shadow: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 52rem) {
    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
        margin-bottom: 1rem;
    }

    h1:before {
        display: none;
    }
}

@media only screen and (max-width: 44rem) {
    section {
        display: block;
    }

    .justify {
        text-align: left;
    }

    h1 {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    h2 {
        margin: 0 0 .3rem;
    }

    ul {
        padding-bottom: 1.5rem;
    }

    footer {
        display: block;
    }

    footer div {
        flex-direction: column;
        align-items: center;
        padding-top: 1rem;
    }

    footer div a:last-of-type {
        flex: auto;
    }
}

@media only screen and (max-width: 30rem) {
    h1 {
        font-size: 1.5rem;
    }

    h1 span,
    h2 {
        font-size: 1.1rem;
    }
}