@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-700.woff') format('woff'),
        url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 3rem;
    font-size: 2em;
    line-height: 1.1;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h2.boder {
    border-top: 1px solid #000;
    padding-top: 1rem;
}
h3 {
    font-size: 1.7em;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #FAEC6E;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.3rem 1.5rem;
}
ul li:before {
    content: "•";
    float: left;
    margin: 0 0 0 -1.5rem;
}
.tt {
    padding: 2rem 2rem 0;
}
.tt :is(h1, p) {
    color: #FFF;
}
header {
    flex-direction: row-reverse;
}
header, article {
    display: flex;
    justify-content: space-between;
}
article {
    padding: 2rem;
}
article div, header figure {
    width: 48%;
}
article figure {
    margin-bottom: 1rem;
}
header, footer {
    background: #2A2C41;
}
footer :is(p, a) {
    color: #FFF !important;
}
footer {
    display: inline-block;
    padding: 1rem 5rem 0 1rem;
    position: absolute;
    bottom: 3rem;
    left: 2rem;
}
@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    p {
        text-align: left;
    }
    footer {
        position: static;
        display: block;
    }
    footer br {
        display: none;
    }
}
@media only screen and (max-width: 780px) {
    header {
        align-items: center;
    }
    header, article {
        flex-direction: column;
    }
    article figure {
        display: flex;
        justify-content: center;
    }
    article div, header figure {
        width: 100%;
    }
    .tt :is(h1, h3, p) {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    article {
        padding: 1rem;
    }
}