@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 0.813em 'Montserrat', sans-serif;
    line-height: 1.35;
    font-weight: 500;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('bg.jpg') no-repeat left bottom;
    overflow: hidden;
    padding: 0.6rem 0.8rem 0.5rem;
    text-align: justify;
}

a {
    color: #000;
    text-decoration: none;
}

p {
    padding-bottom: 0.5rem;
}

h1 {
    margin: 0.2rem 0rem 0.8rem;
    padding-left: 1.8rem;
    font-size: 2.063em;
    line-height: 1.1;
    color: #529CBE;
    background: url('icon_bg.png') no-repeat 0px 9px;
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0rem;
    color: #529CBE;
}

ul {
    padding: 0rem 0rem 0.75rem;
    list-style: none;
}

li {
    padding-left: 1.2rem;
}

li:before {
    content: "\2022";
    display: block;
    font-size: 1.5em;
    line-height: 0.8;
    position: relative;
    float: left;
    top: 0px;
    margin-left: -1.2rem;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem;
}

article {
    padding: 0rem;
}

footer {
    padding: 1.5rem 0rem 0rem;
    text-align: right;
}

footer aside {
    position: absolute;
    right: 0.8rem;
    bottom: 6.7rem;
}

@media only screen and (max-width: 749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.8rem;
        text-align: left;
    }
    br{
        display: none;
    }
    footer aside {
        position: static;
    }
}