* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
}

#wrapper {
    max-width: 900px;
    margin: 24px auto;
    background-color: #fff;
    overflow: hidden;
    position: relative;

    
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
}

#wrapper .big {
    font-size: 18px;
    line-height: 1.4;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}


#wrapper .logo {
    padding: 20px 16px;
    display: flex;
    justify-content: center;
    background: #ffffff;
}

#wrapper article {
    padding: 32px 48px;
}

#wrapper footer {
    position: absolute;
    bottom: 65px;
    right: 40px;
}

#wrapper p {
    margin-bottom: 18px;
}

#wrapper strong {
    font-weight: 700;
}




#wrapper h1 {
    margin: 28px 0 34px;
    padding: 20px 24px;

    background: #ffffff;
    color: #FF0000;

    border-left: 7px solid #FF0000;

    font-size: 34px;
    line-height: 1.18;
    font-weight: 700;
    text-align: left;
}

#wrapper h1 .small {
    font-size: 26px;
}




#wrapper h3 {
    margin-top: 30px;
    margin-bottom: 12px;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;

    
    color: #333;

    
    text-decoration: none;
}


#wrapper h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 4px;
    margin-top: 7px;

    background: #FF0000;
    border-radius: 999px;
}




#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #FF0000;
    text-decoration: none;
}

#wrapper a:hover {
    text-decoration: underline;
}




#wrapper ul {
    margin: 0 0 26px 0;
    padding: 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 7px;
    line-height: 1.4;
}

#wrapper ul li::before {
    content: "\0000e2\000080\0000a2";
    position: absolute;
    left: 0;
    top: 0;

    color: #FF0000;

    
    font-size: 17px;
    line-height: 1.35;
}




#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}




@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 24px;
    }

    #wrapper h1 {
        margin: 24px 0 30px;
    }
}

@media (max-width: 675px) {
    #wrapper footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 499px) {
    #wrapper article {
        padding: 20px;
    }

    #wrapper h1 {
        font-size: 28px;
        padding: 16px 18px;
        border-left-width: 5px;
    }

    #wrapper h3 {
        font-size: 18px;
    }
}