@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1.25em/1.2em "Roboto Condensed", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 625px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #1D449B url("bg.jpg") no-repeat;
    overflow: hidden;
    padding: 1.5rem 0.8rem 1rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem -0.8rem;
    font-size: 2.125em;
    line-height: 1.1;
    position: relative;
}
h1 span {
    position: absolute;
    left: 0;
    top: 10%;
    color: transparent;
}
h1+p {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}
h2 {
    font: 700 1.188em/1.3em "Sofia Sans Condensed", sans-serif;
}
h3 {
    font: 700 1.1em/1.3em "Sofia Sans Condensed", sans-serif;
    margin-bottom: 1.5rem;
    text-align: right;
}
h3 span {
    font-size: 1.25em;
    line-height: 1.3;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.text {
    font-size: 0.938rem;
    line-height: 1.2;
}
.logos {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}
.logos img {
    height: 57px;
}
header {
    padding: 0;
}
article {
    padding: 0;
}
footer {
    position: absolute;
    right: 0.8rem;
    bottom: 0.5rem;
    color: #1D449B;
}
footer figure {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1rem;
}
figcaption {
    text-align: right;
    font: 700 1.5rem/1.2em "Sofia Sans Condensed", sans-serif;
}
figcaption strong {
    font-weight: 800;
}
@media only screen and (max-width:624px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #1D449B;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    h1 span {
        font-size: 7.5vw;
    }
    br {
        display: none;
    }
    h3 {
        text-align: center;
    }
    footer {
        position: static;
        background: #fff;
        margin: 1rem -0.8rem -1.5rem;
        padding: 1rem 0.8rem;
    }
    footer figure {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .logos {
        justify-content: center;
    }
}