@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 520px;
    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: #6BCFF6;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
p a {
    display: inline-block;
    margin-top: 0.5rem;
}
h1 {
    margin: 0 0 0 2rem;
    font-size: 3.5em;
    line-height: 1;
    background: linear-gradient(to right, #01549A 0%, #00ADEE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}
h1 span {
    font-size: 0.5em;
    display: block;
    margin-right: 1rem;
    text-align: right;
    margin-top: 0.25rem;
    color: #01549A;
    background: transparent;
}
h2 {
    font-size: 1.6em;
    line-height: 1.1;
    color: #00559A;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.125em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

h3:last-of-type {
    margin-bottom: 2rem;
}
h3 :is(span, small) {
    text-transform: none;
}
h3 small {
    font-size: 0.875rem;
}
h3 span {
    display: block;
    font-size: 0.938em;
    font-weight: 400;
}
h3+p {
    font-size: 1.188em;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #fff;
    height: 1px;
    margin: 0;
}
header {
    position: relative;
}
header a {
    position: absolute;
    top: 3%;
    left: 5%;
    width: 53%;
    height: 18%;
}
.title {
    position: absolute;
    left: 2.5rem;
    top: 43%;
}
.box {
    width: 329px;
    position: absolute;
    left: 3.5rem;
    bottom: 0;
    padding: 3rem 1rem 5.5rem;
    background: linear-gradient(90deg, #00ADEE, #01549A);
}
.box figure {
    position: absolute;
    right: 1rem;
    top: 5.25rem;
}
footer {
    position: absolute;
    left: 4.5rem;
    bottom: 1.75rem;
}
@media only screen and (max-width: 519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    .box {
        position: static;
        width: 100%;
        padding-bottom: 0;
    }
    .box figure {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    h1 {
        margin-left: 0;
    }
    h1, h2 {
        width: 100%;
    }
    h1, h2, h3, p, h1 span {
        text-align: center;
    }
    h1 span {
        margin: 0.5rem 0 0;
    }
    .title {
        position: static;
        padding: 1rem;
    }
    footer {
        position: static;
        background: linear-gradient(90deg, #00ADEE, #01549A);
        padding: 1rem 1rem 0;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 3em;
    }
    
}