* {
    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: 15px;
    line-height: 1.3;
}

#wrapper {
    max-width: 910px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

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

#wrapper .logo {
    padding: 20px 40px;
    border-bottom: solid 5px #FE000B;
}

#wrapper article {
    padding: 20px 40px;
}

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

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

#wrapper h1 span {
    font-weight: 400;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

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

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

#wrapper .button a {
    background: #fff;
    color: #000;
    border-radius: 5px;
    border: solid 5px #FE000B;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    display: inline-block;
    padding: 10px 40px;
    text-decoration: none;
    transition: all .4s ease-in-out;
}

#wrapper .button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#wrapper .logo img,
#wrapper .bottom img {
    max-width: 200px;
}

#wrapper .flex div {
    width: 45%;
}

#wrapper .button a:hover {
    color: #FE000B;
}

#wrapper ul {
    margin: 0 0 20px 30px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
}

#wrapper ul li:before {
    content: '\25a0';
    font-size: 9px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 3px;
    line-height: 1;
    left: 0;
}

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

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

    #wrapper p {
        text-align: left;
    }

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

    #wrapper .logo,
    #wrapper article {
        padding: 16px;
    }

    #wrapper .flex div {
        width: 55%;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper .flex div {
        width: 100%;
    }

    #wrapper :is(.logo, .bottom) {
        display: flex;
        justify-content: center;
    }
}