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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 935px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Nunito", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 30px 30px 20px 80px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

#wrapper .header p {
    text-align: justify;
    width: calc(100% - 185px);
    font-size: 15px;
    margin: 0;
}

#wrapper .banner {
    position: relative;
    margin: 0 -70px 10px;
    background: url(header.jpg) no-repeat;
    background-size: cover;
    padding: 20px 70px;
    background-position: center;
}

#wrapper .article {
    padding: 0 70px 5px;
}

#wrapper .title {
    background: rgba(85, 181, 227, 0.85);
    border-radius: 30px;
    padding: 14px 16px 3px;
}

#wrapper .title p {
    text-align: center;
    color: #fff;
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 10px;
}

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

#wrapper .box div {
    width: calc(100% - 90px);
}

#wrapper .footer {
    background: #0E2B58;
    padding: 16px;
}

#wrapper .footer p {
    text-align: center;
    color: #fff;
}

#wrapper .footer p a {
    color: #fff !important;
}

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

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

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

#wrapper h3 {
    font-size: 16px;
    font-weight: 700;
    color: #55B5E3;
}

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

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

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #55B5E3;
    color: #fff;
    border-radius: 5px;
    transition: .2s;
}

#wrapper .button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
    width: calc(100% - 90px);
}

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

#wrapper ul li:before {
    content: "\0025a0";
    color: #000;
    font-size: 10px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 5px;
    line-height: 1;
    left: 0;
}

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

@media all and (max-width: 934px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

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

    #wrapper .header p {
        text-align: left;
    }
}

@media all and (max-width: 900px) {
    #wrapper .header {
        padding: 16px;
    }

    #wrapper .article {
        padding: 0 16px 5px;
    }

    #wrapper .left {
        padding-right: 0;
    }
}

@media all and (max-width: 700px) {
    #wrapper .header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #wrapper .header p {
        width: 100%;
    }

    #wrapper .title p {
        font-size: 20px;
    }
}

@media all and (max-width: 400px) {
    #wrapper .box img {
        display: none;
    }

    #wrapper .box div,
    #wrapper ul {
        width: 100%;
    }
}