* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #212529;
}

#wrapper {
    margin: 1rem auto 50px;
    max-width: 1160px;
    background-color: #fff;
    overflow: hidden;
}

header {
    padding: 35px 40px;
    background: #334248;
}

article {
    padding: 5px 40px 45px;
}

:is(.banner, .social) {
    margin: 40px 0 20px;
}

.button a {
    display: inline-block;
    padding: 14px 36px;
    background: #334248;
    color: #fff !important;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.button a:hover {
    opacity: 0.9;
}

p {
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
}

h1 {
    font-size: 30px;
    color: #fff;
}

h1 small {
    display: block;
    font-weight: normal;
    font-size: 16px;
    margin: 16px 0 0;
}

h2 {
    font-size: 18px;
    margin: 40px 0 20px;
    color: #e4342b;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin-bottom: 20px;
    list-style: none;
}

ul li {
    padding-left: 32px;
    position: relative;
    margin: 0 0 8px;
}

ul li:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 17px;
    background: #212529;
    display: block;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media only screen and (max-width:1159px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(header, article, footer) {
        padding: 16px;
    }

    .banner {
        display: flex;
        justify-content: center;
    }

    :is(p, h1, li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    p {
        text-align: left;
    }

    span {
        white-space: nowrap;
    }
}

@media only screen and (max-width:480px) {
    .button {
        display: flex;
        justify-content: center;
    }

    h1 {
        text-align: center;
    }

    ul li {
        padding-left: 20px;
    }

    ul li:before {
        left: 0;
    }
}