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

@font-face {
    font-family: 'Audi Type';
    src: url('AudiType-Bold.eot');
    src: url('AudiType-Bold.eot?#iefix') format('embedded-opentype'), url('AudiType-Bold.woff2') format('woff2'), url('AudiType-Bold.woff') format('woff'), url('AudiType-Bold.ttf') format('truetype'), url('AudiType-Bold.svg#AudiType-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Audi Type';
    src: url('AudiType-Normal.eot');
    src: url('AudiType-Normal.eot?#iefix') format('embedded-opentype'), url('AudiType-Normal.woff2') format('woff2'), url('AudiType-Normal.woff') format('woff'), url('AudiType-Normal.ttf') format('truetype'), url('AudiType-Normal.svg#AudiType-Normal') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Audi Type Extended';
    src: url('AudiType-ExtendedNormal.woff2') format('woff2'), url('AudiType-ExtendedNormal.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 971px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    padding: 30px 60px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Audi Type', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

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

#wrapper .just {
    text-align: justify;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    column-gap: 10px;
}

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

#wrapper h1 {
    font-size: 34px;
    line-height: 1.2;
    font-family: 'Audi Type Extended', Arial, sans-serif;
    margin: 30px 0 16px;
    font-weight: 400;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.1;
    font-family: 'Audi Type Extended', Arial, sans-serif;
    font-weight: 400;
}

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

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #BC1733;
    color: #fff;
    border-radius: 5px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 13px;
    position: relative;
    margin-bottom: 2px;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 23px;
    position: absolute;
    top: -1px;
    left: 0;
    font-family: Arial, sans-serif;
    line-height: 1;
}

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

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

#wrapper .font {
    font-family: Arial, sans-serif;
}

@media (max-width: 970px) {
    #wrapper {
        padding: 16px;
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

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

    #wrapper .ml {
        margin-left: 0;
    }

    #wrapper .just {
        text-align: left;
    }
}

@media all and (max-width: 728px) {
    #wrapper .header {
        display: block;
    }

    #wrapper .logo {
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
    }
}

@media all and (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }

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

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

    #wrapper ul li:before {
        top: -2px;
    }
}