* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 800px;
    margin: 12px auto;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 21px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .pb-1 {
    padding-bottom: 16px;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .article {
    padding: 16px 48px 16px;
    background: #13181E;
    background-size: cover;
    color: #fff;
}

#wrapper .footer {
    padding: 35px 42px 40px 48px;
    background: #D6512B;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    gap: 10px;
    flex-wrap: wrap;
}

#wrapper .mobi {
    display: none;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .right {
    width: 49%;
    border-left: 2px dashed #DBAF28;
    padding-left: 13px;
}

#wrapper .left {
    width: 49%;
}

#wrapper .left a,
#wrapper .right a {
    color: #fff;
}

#wrapper p {
    padding-bottom: 20px;
    text-align: justify;
}

#wrapper strong {
    font-weight: bold;
}

#wrapper strong.big {
    font-size: 40px;
    display: inline-block;
    line-height: 41px;
    padding: 8px 0;
}

#wrapper h1 {
    font-size: 68px;
    line-height: 63px;
    font-weight: bold;
    position: absolute;
    bottom: 4%;
    right: 2%;
    text-align: center;
    color: #171D24;
    width: 49%;
}

#wrapper h1 small {
    font-size: 28px;
    display: block;
    line-height: 34px;
    padding-top: 7px;
}

#wrapper h3 {
    margin-bottom: 16px;
    font-size: 27px;
    line-height: 31px;
    font-weight: bold;
}

#wrapper a {
    color: #000;
    text-decoration: none;
}

#wrapper a.link {
    display: inline-block;
    background: #DBAF28;
    padding: 10px 5px;
}

#wrapper ul {
    padding-bottom: 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 30px;
    padding-bottom: 10px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #fff;
    font-size: 36px;
    position: absolute;
    top: -3px;
    left: 11px;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper h1 small {
        font-size: 2.5vw;
    }

    #wrapper h1 {
        font-size: 8vw;
    }
}

@media all and (max-width: 766px) {
    #wrapper {
        font-size: 14px;
        line-height: 20px;
    }
}

@media all and (max-width: 738px) {
    #wrapper .footer {
        justify-content: space-around;
    }
}

@media all and (max-width: 699px) {
    #wrapper .mobi {
        display: block;
    }

    #wrapper .mobi p {
        padding-bottom: 0;
    }

    #wrapper .pc {
        display: none;
    }

    #wrapper .article {
        padding: 10px 16px;
    }

    #wrapper .footer {
        padding: 16px;
        display: block;
        text-align: center;
        font-size: 14px;
    }

    #wrapper .footer div {
        margin: 5px;
    }

    #wrapper .left,
    #wrapper .right {
        width: auto;
    }

    #wrapper .right {
        padding-right: 8px;
    }

    #wrapper h1 {
        top: 53%;
        line-height: 1;
    }

    #wrapper h1 small {
        line-height: 1.6;
    }
}