@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #778085;
    font: 300 0.875em/1.4em "Ubuntu", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 910px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(h1, h2, h3, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
.color, a.color, h3 {
    color: #00ADC2;
}
.padb {
    padding-bottom: 2rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.7em;
    line-height: 1.2;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.313em;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 5rem 0 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2010";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: -2px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.title {
    position: absolute;
    left: 4rem;
    top: 13.5rem;
}
.title :is(p, h1) {
    color: #fff;
}
.title p {
    font-size: 1.125em;
    line-height: 1.3;
}
article {
    padding: 1.25rem 4rem 3rem;
}
footer {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    position: absolute;
    right: 4rem;
    bottom: 3rem;
}
footer p {
    text-align: right;
    font-size: 0.875em;
    line-height: 1.4;
}
@media only screen and (max-width:909px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    .hide_m, footer br {
        display: none;
    }
    .title {
        left: 3rem;
        top: 10rem;
    }
    h3 {
        margin-top: 1rem;
    }
    article {
        padding: 1rem 3rem 0;
    }
    footer {
        padding: 2rem 3rem 0;
        position: static;
        justify-content: center;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width:780px) {
    article {
        padding: 1rem 2rem 0;
    }
    footer {
        padding: 1rem 2rem;
    }
    .title {
        position: static;
    }
    .title :is(p, h1) {
        color: #778085;
    }
    h1 br {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
}