* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 12px auto;
    box-shadow: 1px 1px 10px #a1a1a1;
    background-color: #fff;
    overflow: hidden;
    color: #1F497D;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    display: flex;
    justify-content: center;
    padding: 26px 16px;
}

#wrapper .article {
    padding: 30px 30px 15px;
}

#wrapper .footer {
    padding: 20px 30px;
    background: #EBEBEB;
}

#wrapper .footer p,
#wrapper .footer h3 {
    text-align: center;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 .span {
    font-weight: 400;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 9px;
    font-size: 21px;
    font-weight: 700;
}

#wrapper a {
    color: #1F497D;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 17px 5px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 3px;
}

#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 .mb-0 {
    margin-bottom: 0;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 10px;
        border: none;
    }

    #wrapper .article {
        padding: 16px 16px 6px;
    }

    #wrapper .footer {
        padding: 16px;
    }
}