* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0px, rgba(255, 255, 255, 0.3) 570px), url(background.jpg) no-repeat top center;
    background-size: 100%;
}

#wrapper {
    max-width: 890px;
    margin: 16px auto;
    border: 1px solid #1A2B4C;
    background-color: #fff;
    overflow: hidden;
    font-family: "Poppins", Arial, sans-serif;
    color: #1A2B4C;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .mobi {
    display: none;
}

#wrapper .article {
    padding: 20px;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 58px;
    background: #EE7F3F;
    color: #fff !important;
    font-weight: 600;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper p {
    margin-bottom: 20px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #EE7F3F;
    line-height: 1.3;
}

#wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    color: #EE7F3F;
    margin-bottom: 5px;
    line-height: 1.2;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #EE7F3F;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 10px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 889px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 16px;
    }
}

@media all and (max-width: 767px) {
    #wrapper .mobi {
        display: inline;
    }

    #wrapper .show {
        display: none;
    }

    #wrapper h1 {
        font-size: 26px;
    }

    #wrapper ul {
        margin-left: 0;
    }
}