@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?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 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('bg.jpg') no-repeat top right;
    overflow: hidden;
    padding: 1.25rem 2rem 1rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1, h2, a.color, .color {
    color: #B7282E;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.6em;
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    text-transform: uppercase;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.text {
    color: #6C6D70;
    font-weight: 500;
    position: absolute;
    right: 4rem;
    top: 2rem;
    font-size: 1.063em;
    line-height: 1.3;
}
.text span:nth-of-type(1) {
    margin-left: 1rem;
}
.text span:nth-of-type(2) {
    margin-left: 2rem;
}
.text span:nth-of-type(3) {
    margin-left: 3rem;
}
footer {
    position: absolute;
    left: 34.8rem;
    bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0 3rem;
}
@media only screen and (max-width:999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    br:not(footer br) {
        display: none;
    }
    .text {
        position: static;
    }
    .text span {
        margin-left: 0 !important;
        display: inline;
    }
    footer {
        position: static;
    }
}
@media only screen and (max-width:780px) {
    h1 {
        font-size: 2.2em;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.7em;
    }
    li{
        padding-left: 1rem;
    }
}