@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.125em;
    line-height: 1.4;
    font-weight: 500;
}
#wrapper {
    position: relative;
    max-width: 555px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('./bg.jpg') no-repeat top center;
    overflow: hidden;
    padding: 2.5rem 2.5rem 0;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.625em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.88em;
    font-weight: 300;
    line-height: 1.3em;
    display: block;
}
h2 {
    font-size: 2.25em;
    line-height: 1.25;
    margin-bottom: 14rem;
}
h2 span {
    display: block;
    color: #F47523;
}
h3 {
    display: inline-block;
    background-color: #231F20;
    color: #fff;
    margin: 0 0 2rem -2.5rem;
    padding: 0.5rem 1.5rem 0.5rem 2.5rem;
    font-size: 2.438em;
    line-height: 1.2em;
    font-weight: 400;
}
h4 {
    font-size: 1.75em;
    line-height: 1.3em;
    color: #0F60AE;
    margin-bottom: 0.4rem;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
article section {
    margin: 0 -2.5rem;
    padding: 1rem 2.5rem;
    background: url('./bg2.jpg') no-repeat top center;
}
article section h2 {
    font-size: 2.25em;
    line-height: 1.25;
    margin-bottom: 17.5rem;
}
article figure {
    margin: 0 -2.5rem;
}
article figure img {
    display: block;
}
footer {
    padding: 1.5rem 1.5rem 1rem 3rem;
    background: #0F60AE url('./bg-f.jpg') no-repeat top left;
    margin: 0 -2.5rem;
}
footer figure {
    margin: 0 0 1.25rem;
    display: flex;
    justify-content: flex-end;
}
footer p {
    color: #fff;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.1em;
}
@media only screen and (max-width: 554px) {
    body {
        font-size: 0.938em;
        line-height: 1.4em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background: #fff;
    }
    h2 br, article br {
        display: none;
    }
    h2 {
        font-size: 1.75em !important;
        line-height: 1.2em;
        margin-bottom: 2rem !important;
    }
    article section {
        background: #fff;
    }
    article figure {
        margin: 0 -1rem;
    }
    footer {
        margin: 0 -1rem;
        padding: 1.25rem 1rem;
        background: #0F60AE;
    }
    footer figure {
        justify-content: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 380px) {
    h3 {
        font-size: 1.75em;
    }
}