@charset "utf-8";
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ubuntu-v20-latin-regular.eot');
    src: local(''),
        url('../fonts/ubuntu-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2'),
        url('../fonts/ubuntu-v20-latin-regular.woff') format('woff'),
        url('../fonts/ubuntu-v20-latin-regular.ttf') format('truetype'),
        url('../fonts/ubuntu-v20-latin-regular.svg#Ubuntu') format('svg');
}
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ubuntu-v20-latin-700.eot');
    src: local(''),
        url('../fonts/ubuntu-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'),
        url('../fonts/ubuntu-v20-latin-700.woff') format('woff'),
        url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'),
        url('../fonts/ubuntu-v20-latin-700.svg#Ubuntu') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #013778;
    font: 400 0.813em/1.3em 'Ubuntu', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 7rem 0 10.5rem 1rem;
    padding-left: 0.7rem;
    font-size: 1.55em;
    line-height: 1.3;
    background: url('../images/icon_bg.jpg') no-repeat 0 8px;
}
h2 {
    font-size: 2.45em;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 999;
}
ul {
    padding: 8.75rem 6rem 1rem 2rem;
    list-style: none;
    position: absolute;
    right: 2rem;
    top: 0.5rem;
    background: #fff url('../images/bg.jpg') no-repeat;
    width: 344px;
    height: 376px;
}
li {
    padding: 0 0 0.75rem 2.25rem;
    background: url('../images/icon_list.jpg') no-repeat 0 3px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.4em;
    line-height: 1.1;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article {
    padding: 1.5rem 1.75rem 0;
    position: relative;
}
footer {
    padding: 0 3.5rem 0 1.75rem;
    display: flex;
    justify-content: start;
    flex-flow: row-reverse;
    align-items: flex-end;
    gap: 1rem 2rem;
    position: relative;
    z-index: 1;
}
footer figure {
    margin: 0 0 1rem;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    ul {
        position: static;
        margin: 0 auto;
    }
    h1 {
        margin: 1rem 0 1.5rem;
    }
    footer {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width:480px) {
    h2 {
        font-size: 1.8em;
    }
    ul {
        width: auto;
        height: auto;
        background: #013778;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    article {
        padding: 0.5rem 1rem 0;
    }
    footer {
        padding: 0 1rem;
    }
}