@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v30-latin-300.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-300.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-300.woff') format('woff'),
        url('../fonts/roboto-v30-latin-300.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-300.svg#Roboto') 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.eot?#iefix') 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.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 670px;
    margin: 1rem auto;
    border: 12px solid #D7171F;
    background: #fff;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 500;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
}
h1 {
    margin: -3.1rem -1rem 0;
    padding: 0.5rem 1rem 1rem;
    font-size: 1.7em;
    line-height: 1.1;
    clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 0% 100%);
    background: #D7171F;
    color: #fff;
    position: relative;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #D7171F;
    margin-bottom: 0.25rem;
}
.big {
    font-size: 1.188em;
    line-height: 1.3;
}
h3 {
    font-size: 1.25em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: #262626;
    color: #fff;
    margin: -0.75rem -1rem 0.5rem auto;
    width: fit-content;
    padding: 0.5rem 1rem 0.5rem 2rem;
    font-weight: 300;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 1px;
}
.list li:before {
    content: "\25A0";
    font-size: 1.125rem;
    top: -1px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0;
}
article {
    padding: 0 1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left, .right {
    width: 48%;
}
footer {
    padding: 0.5rem 0 0 1rem;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
}
footer p {
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: #D7171F;
    color: #fff;
    padding: 0.5rem 2rem 0;
}
.logo {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:669px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        text-align: left;
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    h1 {
        font-size: 1.5em;
    }
    h1, h3 {
        margin: 0 -1rem;
        padding: 0.5rem 1rem;
        clip-path: none;
        width: auto;
    }
    h3 {
        margin-bottom: 1rem;
    }
    footer {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    footer p {
        width: 100%;
        margin: 0 -1rem 1rem;
        padding: 0.5rem 1rem;
        clip-path: none;
        text-align: center;
    }
}