@font-face {
    font-family: 'Chaparral Pro';
    src: url('ChaparralPro-Regular.woff2') format('woff2'), url('ChaparralPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chaparral Pro';
    src: url('ChaparralPro-Semibold.woff2') format('woff2'), url('ChaparralPro-Semibold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chaparral Pro';
    src: url('ChaparralPro-Light.woff2') format('woff2'), url('ChaparralPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 820px;
    margin: 12px auto;
    border: 1px solid #000;
    background-color: #5d035b;
    overflow: hidden;
    color: #fff;
    font-family: 'Chaparral Pro', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
}

#wrapper .logo p {
    font-size: 14px;
    font-weight: 300;
    border-top: 1px solid #fff;
    padding: 5px 0;
    text-align: center;
    line-height: 1.2;
}

#wrapper .logo>a {
    margin: 0 0 8px 5px;
    display: inline-block;
}

#wrapper .logo {
    width: 130px;
    position: relative;
    z-index: 2;
}

#wrapper .logo p:nth-of-type(3) {
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    font-size: 13px;
}

#wrapper .nobr,
#wrapper .nobr-1 {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 30px;
    display: flex;
    justify-content: end;
}

#wrapper .article {
    padding: 20px 90px;
    margin-top: -21%;
    position: relative;
    z-index: 1;
}

#wrapper .footer {
    padding: 20px 90px;
    background: #898E1A;
    border-top: 1px solid #fff;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    column-gap: 40px;
    align-items: center;
}

#wrapper .footer div {
    flex: 1 1 0;
}

#wrapper .footer p {
    font-size: 15px;
    font-weight: 300;
}

#wrapper .width h3 {
    padding-right: 22%;
}

#wrapper .banner {
    position: absolute;
    bottom: 132px;
    right: 6%;
    z-index: -1;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 66px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
}

#wrapper h1 .small {
    display: block;
    font-weight: 300;
    font-size: 29px;
}

#wrapper h1 .span {
    white-space: nowrap;
}

#wrapper h2 {
    margin-bottom: 6px;
    font-size: 51px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: 2px;
    padding-right: 5%;
}

#wrapper h4 {
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 300;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
    letter-spacing: 0.4px;
}

#wrapper a {
    color: #fff;
    text-decoration: none;
}

#wrapper ul {
    margin: 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 17px;
}

#wrapper ul li:before {
    content: url(icon.jpg);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper .width {
    width: 55%;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 819px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper .width {
        width: 50%;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }

    #wrapper .banner {
        bottom: 120px;
        right: 16px;
    }

    #wrapper .footer,
    #wrapper .header {
        padding: 16px 5%;
    }

    #wrapper .article {
        margin-top: -19%;
        padding: 16px 5%;
    }
}

@media (max-width: 679px) {
    #wrapper .banner {
        position: static;
        display: flex;
        justify-content: center;
    }

    #wrapper .width {
        width: auto;
    }

    #wrapper h2 {
        font-size: 40px;
    }

    #wrapper h1 {
        font-size: 50px;
    }

    #wrapper h1 .span {
        white-space: normal;
    }

    #wrapper .article {
        margin-top: 0;
    }

    #wrapper .header {
        justify-content: center;
    }
}

@media (max-width: 519px) {
    #wrapper .footer {
        flex-direction: column;
        gap: 15px;
    }
}