@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_8b7d8b69c993f3aa.eot) 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_26c12a414c33bdbb.svg) format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/roboto-v30-latin-500.eot);
    src: local(''),
        url(../fonts/roboto-v30-latin-500_8b7d8b69c993f3aa.eot) format('embedded-opentype'),
        url(../fonts/roboto-v30-latin-500.woff2) format('woff2'),
        url(../fonts/roboto-v30-latin-500.woff) format('woff'),
        url(../fonts/roboto-v30-latin-500.ttf) format('truetype'),
        url(../fonts/roboto-v30-latin-500_26c12a414c33bdbb.svg) 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_8b7d8b69c993f3aa.eot) 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_26c12a414c33bdbb.svg) format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #494949;
    font: 400 1em/1.5em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 850px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(h2, strong) {
    font-weight: 500;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1.5rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.6em;
    line-height: 1.1;
    font-weight: 700;
    color: #333333;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1.5rem 1.25rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.25rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #F0F1F2;
    height: 2px;
    margin: 0 -1.5rem 1.5rem;
}
a.button {
    display: inline-block;
    background: #FBBA00;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 24px;
    font-weight: 700;
}
a.button:hover {
    background: #FDE399;
}
.logo {
    padding: 1.5rem;
    background: #003366;
}
.info {
    display: flex;
    flex-wrap: wrap;
    gap: 0 5rem;
    margin-bottom: 1.5rem;
}
.info p {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}
article {
    padding: 1.5rem 1.5rem 0;
}
footer {
    padding: 0 1.5rem 0.5rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    .logo{
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    .logo{
        padding: 1rem;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 0.5rem;
    }
    ul{
        padding-left: 0;
    }
    li{
        padding-left: 1rem;
    }
    .info{
        gap: 1rem 2rem;
    }
}