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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 10px #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    color: #414141;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

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

#wrapper .article {
    padding: 15px 77px 0;
    position: relative;
}

#wrapper .footer {
    padding: 0 78px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: -14%;
}

#wrapper p {
    padding-bottom: 20px;
}

#wrapper p.big {
    font-size: 17px;
}

#wrapper .footer p {
    text-align: right;
    position: relative;
    margin-top: 6px;
}

#wrapper .footer>a {
    position: relative;
}

#wrapper .width {
    max-width: 360px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 29px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    bottom: 28%;
    left: 9%;
    width: 38%;
}

#wrapper h1 .block {
    display: block;
    font-weight: 400;
    font-size: 16px;
}

#wrapper h2 {
    margin-bottom: 16px;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 700;
}

#wrapper h3 {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
}

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

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

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    border: 1px solid #ff3700;
    color: #ff3700;
    transition: .2s;
}

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

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

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

#wrapper ul li:before {
    content: "\002022";
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

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

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

    #wrapper h1 {
        font-size: 4vw;
    }

    #wrapper h1 .block {
        font-size: 3vw;
    }

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

    #wrapper .footer {
        padding-left: 16px;
        padding-right: 16px;
    }
}

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

    #wrapper .footer {
        margin-top: 0;
        align-items: center;
    }

    #wrapper .width {
        max-width: 100%;
    }

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