* {
    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: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .width {
    padding: 30px;
    flex: 1 1 0;
}

#wrapper .background {
    background: #F8F8F8;
    padding: 30px 20px;
    width: 346px;
    box-shadow: 1px 1px 13px #ccc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    position: relative;
}

#wrapper header a {
    position: absolute;
    top: 4%;
    right: 6%;
    width: 25%;
    height: 31%;
    z-index: 1;
}

#wrapper article {
    display: flex;
    flex-wrap: wrap;
}

#wrapper footer {
    padding: 0;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 30px 0;
    font-size: 30px;
    font-weight: 400;
    color: #FF7100;
}

#wrapper h2 {
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 700;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #006AAF;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #006AAF;
    text-decoration: none;
}

#wrapper .button {
    margin-bottom: 60px;
}

#wrapper .button a {
    display: inline-block;
    padding: 8px 20px;
    color: #003B95;
    border-radius: 25px;
    border: 3px solid #003B95;
    font-size: 22px;
}

#wrapper .button a:hover {
    box-shadow: 0 0 20px #006AAF;
    transform: translateY(-2px);
}

#wrapper .big {
    font-size: 18px;
    text-align: left;
    max-width: 218px;
    margin-bottom: 26px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
    margin-bottom: 8px;
}

#wrapper .ul li {
    padding-left: 26px;
}

#wrapper .ul li:before {
    content: '\2713';
    font-size: 14px;
    top: 0;
}

#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 .w80 {
    width: 80%;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .w80 {
        width: 100%;
    }

    #wrapper header a {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    #wrapper .background,
    #wrapper .width {
        padding: 16px;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper .background {
        width: 37%;
    }
}

@media (max-width: 767px) {
    #wrapper .background {
        width: 100%;
    }

    #wrapper .big {
        max-width: 100%;
    }
}