body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
    font-weight: 400;
}

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

html {
    min-height: 100%;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #000000 solid;
    max-width: 750px;
    position: relative;
    padding: 42px 36px 50px;
    background-color: #FFFFFF;
    overflow: hidden;
}

p {
    margin-bottom: 16px;
}

.margin-bottom {
    margin-bottom: 0;
}

h1 {
    margin: 28px 0;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

h1 span {
    font-weight: 500;
    font-size: 86%;
}

h2 {
    font-size: 13px;
    margin: 0 0 16px;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

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

.flex {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 100px 0;
}

.banner {
    margin: 0 0 20px;
    position: relative;
}

.banner p {
    position: absolute;
    top: -1px;
    left: 0;
    font-size: 14px;
    line-height: 19px;
}

.bottom {
    font-size: 12px;
    padding-top: 40px;
}

strong {
    font-weight: 600;
}

footer {
    display: flex;
    justify-content: flex-end;
    font-size: 12px;
    margin-top: -53px;
}

footer p {
    margin: 0;
}

.link {
    font-weight: 500;
    font-size: 28px;
}

.link a {
    text-decoration: none;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 54px;
}

ul li:before {
    content: "\2010";
    color: #000;
    float: left;
    margin-top: -3px;
    font-size: 17px;
    line-height: 1em;
    text-indent: -31px;
}

@media only screen and (max-width:748px) {
    #wrapper {
        border: none;
        hyphens: auto;
        margin: 0;
        padding: 16px;
    }

    footer {
        margin-top: 0
    }

    .flex {
        padding: 0 0 18px;
        gap: 16px;
    }

    .banner p {
        position: static;
        text-align: center;
    }

    h1 {
        font-size: 22px;
        text-align: center;
    }

    .hiden {
        display: none;
    }

    footer {
        padding: 0;
        display: block;
    }

    .link {
        text-align: center;
    }
}