* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    border-left: 9px solid #E3001B;
    border-bottom: 9px solid #E3001B;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper article {
    padding: 20px 40px;
}

#wrapper footer {
    padding: 0 16px 16px;
}

#wrapper footer p {
    text-align: center;
}

#wrapper .logo {
    display: flex;
    margin-bottom: 15px;
    justify-content: center;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 30px 0;
    font-size: 27px;
    font-weight: 700;
    color: #E3001B;
    text-align: center;
}

#wrapper h1 .big {
    font-size: 24px;
}

#wrapper h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    width: auto;
    margin: 0 0 14px -40px;
    padding-left: 40px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;

    border: 0;
}

#wrapper h3::after {
    content: "";
    height: 2px;
    background: #E3001B;
    flex: 1;
    transform: translateY(4px);
}

#wrapper :is(a:link, a:visited) {
    color: #E3001B;
    text-decoration: none;
}

#wrapper a:hover,
#wrapper a:active {
    color: #b80016;
}

#wrapper .color {
    color: #0000ff !important;
}

#wrapper ul {
    margin: 0 0 19px 30px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 6px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}
#wrapper .image {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

#wrapper .image p {
    margin-bottom: 0;
}

#wrapper .image .logo-link {
    width: 250px;
    max-width: 35%;
    flex-shrink: 0;
}

#wrapper .image .logo-link img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

#wrapper .image img {
    width: 250px;
    max-width: 35%;
    height: auto;
    margin: 0 0 5px auto;
}
@media (max-width: 789px) {
    #wrapper {
        margin: 0;
        border-left-width: 6px;
        border-bottom-width: 6px;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 18px 18px 24px;
    }

    #wrapper h1 {
        font-size: 24px;
    }

    #wrapper h3 {
        margin-left: -18px;
        padding-left: 18px;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
        #wrapper .image {
        display: block;
    }

    #wrapper .image img {
        display: block;
        width: 100px;
        max-width: 65%;
        margin: 20px 0 0 auto;
    }
}