@font-face {
    font-family: 'Century Gothic';
    src: url('CenturyGothic-Bold.woff2') format('woff2'),
        url('CenturyGothic-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('CenturyGothic.woff2') format('woff2'),
        url('CenturyGothic.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 1030px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: 'Century Gothic', Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .bg1 {
    background: #B51827;
    padding: 30px 60px;
    margin: 0 -60px;
}

#wrapper :is(.bg1, .bg2) :is(h3, p, ul, a) {
    color: #fff !important;
}

#wrapper .bg2 {
    background: #58585A;
    padding: 30px 60px 30px 60px;
    margin: 0 -60px;
}

#wrapper .content {
    width: 48%;
}

#wrapper .img {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}


#wrapper .img p {
    margin-bottom: 0;
    flex: 1;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .header a {
    position: absolute;
    top: 13%;
    right: 3%;
    width: 26%;
    height: 51%;
    z-index: 1;
}

#wrapper .article {
    padding: 20px 60px 0;
}

#wrapper .footer {
    padding: 16px;
    background: #BDBEC0;
}

#wrapper .footer p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 0;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span {
    font-weight: 400;
    font-size: 21px;
    position: relative;
    top: -8px;
}

#wrapper h1 {
    margin-bottom: 18px;
    font-size: 36px;
    font-weight: 700;
    color: #B51827;
}


#wrapper h3 {
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
}


#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul .li {
    margin-right: -40px;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 15px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 21px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 1029px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper .header a {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    #wrapper ul .li {
        margin-right: 0;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 16px 16px 0;
    }

}

@media all and (max-width: 767px) {
    #wrapper .content {
        width: 100%;
    }
}


@media all and (max-width: 429px) {
    #wrapper .img {
        flex-direction: column;
    }

    #wrapper h1 {
        font-size: 32px;
    }
}