@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 0.725em 'Roboto', sans-serif;
    line-height: 1.45;
}
#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #142430;
    overflow: hidden;
    padding: 0rem;
    text-align: left;
}
a {
    color: #fff;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-size: 1.8em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0rem;
}
ul {
    padding: 0rem 0rem 1.25rem;
    list-style: none;
}
li {
    padding-left: 0.8rem;
}
li:before {
    content: "\2022";
    display: block;
    font-size: 1.3em;
    line-height: 1;
    position: relative;
    float: left;
    top: 0px;
    margin-left: -0.8rem;
    font-family: Arial, sans-serif;
}
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;
    position: relative;
}
header>img {
    display: block;
}
header aside {
    background: rgba(0, 128, 190, 0.45);
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 2rem 1.7rem;
    font-size: 1.45em;
    line-height: 1.1;
}
article {
    padding: 2.5rem 1.7rem 1.5rem;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-flow: row wrap;
}
article section {
    width: 47%;
}
article section:first-of-type ul:last-of-type li:nth-of-type(3) {
    margin-right: -1.5rem;
}
footer {
    padding: 0rem;
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
}
@media only screen and (max-width: 749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    .hide_m {
        display: none;
    }
    article section:first-of-type ul:last-of-type li:nth-of-type(3) {
        margin-right: 0rem;
    }
}
@media only screen and (max-width: 650px) {
    header aside {
        padding: 1rem;
    }
    article {
        display: block;
        padding: 1rem;
    }
    article section {
        width: 100%;
    }
    footer {
        position: static;
        padding: 0 1rem 1rem;
    }
}
@media only screen and (max-width: 450px) {
    header aside {
        font-size: 1.2em;
        position: static;
    }
    h1 {
        font-size: 1.7em;
        line-height: 1.2;
    }
}