* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 922px;
    margin: 12px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #144478;
    font-family: "Assistant", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    padding: 60px;
}

#wrapper h2 {
    font-weight: 400;
    font-style: italic;
    text-align: right;
    font-size: 30px;
    line-height: 1;
}

#wrapper span.red {
    color: #EF4066;
}

#wrapper h2 .text-right {
    display: block;
    text-align: left;
}

#wrapper .nobr,
#wrapper .nobr-1 {
    white-space: nowrap;
}

#wrapper .block {
    display: block;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 55px;
}

#wrapper .footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
}

#wrapper .footer p {
    text-align: center;
    margin: 20px 0 0;
    flex: 1 1 0;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px 0;
    font-size: 27px;
    font-weight: 700;
    width: 83%;
    line-height: 1.1;
}

#wrapper h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
}

#wrapper a {
    color: #0000ff;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 28px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 26px;
    position: relative;
}

#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;
}

@media (max-width: 921px) {
    #wrapper {
        margin: 0;
        border: none;
        padding: 5%;
    }

    #wrapper h1 {
        width: auto;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }
    
    #wrapper .block {
        display: inline;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper ul li {
        padding-left: 15px;
    }

    #wrapper .footer {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 475px) {
    #wrapper .header {
        display: block;
    }

    #wrapper h2 {
        text-align: center;
    }

    #wrapper h2 span.text-right {
        text-align: center;
    }

    #wrapper .logo {
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
    }
}