* {
    margin: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 0.75rem auto;
    border: 3px #231F20 solid;
    max-width: 493px;
    color: #231F20;
    position: relative;
    padding: 14px;
    background-color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    line-height: 20px;
    font-size: 16px;
    font-family: "Roboto Condensed", sans-serif;
    text-align: left;
    overflow: hidden;
}

p {
    padding-bottom: 10px;
}

p.pad {
    padding-bottom: 8px;
}

h1 {
    margin: -6px 0 10px;
    font-size: 24px;
    line-height: 28px;
    position: relative;
    padding: 0 0 0 27px;
}

h1 span {
    font-size: 16px;
    font-weight: 400;
    display: block;
    line-height: 20px;
}

h1 small {
    font-weight: normal;
    font-size: 16px;
    display: block;
}

h1:before {
    content: '';
    width: 19px;
    height: 19px;
    background: url(iconli.png) no-repeat left 5px;
    position: absolute;
    left: 0;
    top: 0;
}

.font {
    font-size: 18px;
    line-height: 1.3;
    margin: 29px 0 9px;
}

.font1 {
    font-size: 16px;
    padding: 0;
}

.mar {
    margin-bottom: 5px;
}

a {
    color: #231F20;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

header {
    margin: 0 0 8px;
    display: flex;
    justify-content: flex-end;
}

footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

footer p {
    text-align: right;
    padding-bottom: 0;
}

footer img {
    float: right;
}

aside {
    float: left;
    text-align: right;
    margin: 28px 10px 0 0;
    line-height: 18px;
}

section {
    float: right;
    margin: 0;
}

.jus {
    /* text-align: justify; */
}

@media only screen and (max-width: 493px) {
    #wrapper {
        border: none;
        padding: 15px;
    }

    header {
        display: flex;
        justify-content: center
    }

    h1 {
        font-size: 20px;
        line-height: 22px;
    }

    h1 span {
        font-size: 16px;
        line-height: 20px;
    }

    br {
        display: none
    }

    footer {
        flex-direction: column;
        justify-content: center;
        margin-top: 0;
        align-items: center;
    }

    footer p {
        text-align: center;
    }

    .jus {
        text-align: left;
    }
}