@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Montserrat', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 730px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1, h2, strong {
    font-weight: 700;
}
h1, h2 {
    font-family: "Roboto Condensed", Arial, sans-serif;
    text-transform: uppercase;
}
p {
    padding-bottom: 1rem;
}
h1 {
    font-size: 2.35em;
    line-height: 1.1;
    background: #A7213B;
    margin: -2rem 10rem 1rem -2rem;
    padding: 0.625rem 1rem;
    position: relative;
    z-index: 999;
}
h1 span {
    font-size: 0.7em;
    text-transform: none;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 0;
    border-bottom: 10px solid #A7213B;
    color: #A7213B;
    margin-bottom: 0.5rem;
}
a {
    color: #FFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div, .box {
    width: 47%;
}
article {
    padding: 0 2rem;
}
footer {
    background: #A7213B;
    padding: 0.75rem 1rem;
    width: 343px;
    position: absolute;
    bottom: 0;
    right: 0;
}
footer p {
    font-size: 0.85em;
}
footer :is(h2, p), h1 {
    color: #FFF;
}
footer h2 {
    border-bottom: 10px solid #FFF;
}
footer figure {
    border: 2px solid #A7213B;
    border-radius: 10px;
    padding: 0.2rem 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
}
footer .flex-s {
    background: #FFF;
    padding: 0.2rem;
    border-radius: 10px;
    width: fit-content;
}
@media only screen and (max-width:729px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    p a {
        display: inline-block;
    }
    .flex {
        flex-direction: column;
    }
    .flex div, footer, .box {
        width: 100%;
    }
    footer {
        position: static;
    }
    ul {
        padding-bottom: 1rem;
    }
    h1 {
        margin-right: 0;
        margin: -0.5rem -1rem 1rem;
    }
    article {
        padding: 0 1rem 1rem;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.75em;
    }
}