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

html {
    min-height: 100%;
}

body {
    background: none;
}

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

#wrapper .title {
    max-width: 470px;
    position: absolute;
    bottom: 22%;
    left: 5%;
    text-shadow: 1px 1px 40px #fff, 1px 1px 40px #fff, 1px 1px 40px #fff, 1px 1px 40px #fff;
}

#wrapper .title p {
    color: #454751;
    letter-spacing: 1px;
    font-size: 14px;
}

#wrapper .left,
#wrapper .right {
    width: 48%;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .article {
    padding: 20px 50px;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
}

#wrapper .footer {
    padding: 20px 50px;
    background: #FDEAD8;
    position: relative;
    z-index: 1;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 24px;
    font-size: 38px;
    font-weight: 900;
    position: relative;
    padding-bottom: 10px;
}

#wrapper h1:before {
    content: "";
    width: 80px;
    height: 4px;
    background: #FD6C00;
    position: absolute;
    bottom: 0;
    left: 0;
}

#wrapper h3 {
    margin-bottom: 15px;
    font-size: 25px;
    position: relative;
    font-weight: 800;
    padding-bottom: 8px;
}

#wrapper h3:before {
    content: "";
    width: 50px;
    height: 4px;
    background: #FD6C00;
    position: absolute;
    bottom: 0;
    left: 0;
}

#wrapper .img {
    position: absolute;
    top: -96px;
    right: 0;
    z-index: -1;
}

#wrapper .border {
    border-top: 1px solid #FD6C00;
    padding-top: 10px;
    font-size: 14px;
    margin-top: 23px;
}

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

#wrapper .button {
    margin-bottom: 19px;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #FD6C00;
    color: #fff;
    border-radius: 5px;
    transition: .2s;
    width: 250px;
    text-align: center;
}

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

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

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

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

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

@media (max-width: 999px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

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

    #wrapper .title {
        bottom: 5%;
        left: 5%;
    }

    #wrapper .article {
        padding: 16px;
        position: relative;
        z-index: 3;
    }

    #wrapper .footer {
        padding: 16px;
    }
}

@media (max-width: 709px) {
    #wrapper .title {
        position: static;
        max-width: 100%;
        padding: 16px;
    }

    #wrapper h1 {
        font-size: 32px;
    }
}

@media (max-width: 579px) {

    #wrapper .left,
    #wrapper .right {
        width: 100%;
    }
}