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

html {
    min-height: 100%;
}

body {
    background: none;
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper {
    max-width: 902px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
}

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

#wrapper .hide {
    display: none;
}

#wrapper .border {
    border-top: 2px solid #D9D9D9;
    padding-top: 15px;
}

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

#wrapper footer {
    padding: 16px;
    background: #881E6F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

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

#wrapper .mb-0 {
    margin-bottom: 2px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    padding: 20px 0 35px;
    font-size: 28px;
    font-weight: 700;
    color: #85004D;
}

#wrapper h1 span.nobr {
    font-weight: 400;
}

#wrapper span.block {
    display: block;
}

#wrapper h3 {
    font-size: 18px;
    font-weight: 700;
    color: #85004D;
    margin-bottom: 15px;
}

#wrapper h4 {
    font-size: 16px;
    font-weight: 400;
    color: #85004D;
    margin-bottom: 15px;
}

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

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
}

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

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

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

#wrapper .boxline {
    margin-bottom: 30px;
}

#wrapper .line {
    border-top: 1px solid #D9D9D9;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 0;
    margin: 0;
}

#wrapper .line:last-of-type {
    border-bottom: 1px solid #D9D9D9;
}

#wrapper .line p {
    margin: 0;
}

#wrapper .line p:nth-of-type(1) {
    color: #85004D;
    width: 222px;
}

#wrapper .line p:nth-of-type(2) {
    width: calc(100% - 305px);
}

#wrapper .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 140px;
}

#wrapper .logo {
    position: relative;
    margin-top: 10px;
}

#wrapper .logo a {
    position: absolute;
    bottom: 10%;
    left: 1%;
    width: 13%;
    height: 41%;
}

@media all and (max-width:901px) {
    #wrapper article {
        padding: 16px;
    }

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

    #wrapper .justify p {
        text-align: left;
    }

    #wrapper span.block {
        display: inline;
    }

    #wrapper .flex {
        gap: 0;
        justify-content: space-between;
    }
}

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

    #wrapper .line p:nth-of-type(1) {
        width: 170px;
    }

    #wrapper .line p:nth-of-type(2) {
        width: calc(100% - 185px);
    }
}

@media all and (max-width:660px) {
    #wrapper .flex {
        flex-direction: column;
    }

    #wrapper .line {
        flex-direction: column;
        align-items: flex-start;
    }

    #wrapper .line p {
        width: 100% !important;
    }
}