@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 1.3;
    font-weight: 300;
}
#wrapper {
    position: relative;
    max-width: 550px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #032B42;
    overflow: hidden;
    padding: 2.5rem 1.5rem 0.5rem;
}
.fw-300{
    font-weight: 300;
}
.fw-300 a{
    font-weight: 400;
}
p {
    padding-bottom: 1rem;
}

h1, h2{
    font-weight: 700;
}
h1, h2, .color, ul li::before {
    color: #599CB3;
}
h1 {
    margin: -0.85rem 0 1.5rem;
    font-size: 2.8em;
    line-height: 1.1;
}
h1 span {
    font-weight: 400;
    font-size: 1rem;
}
h2 {
    font-size: 1.05em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul:last-of-type{
    padding-bottom: 1.5rem;
}
ul+p{
    padding-bottom: 0.25rem;
}
li {
    padding-left: 0.8rem;
}
ul li:before {
    content: "+";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -0.8rem;
    color: #599CB3;
}
.border {
    border-bottom: 2px solid #62A0B6;
}
.small {
    width: 35px;
    display: inline-block;
    font-size: 0.818em;
}
header {
    position: absolute;
    top: 1.4rem;
    right: 1.5rem;
}
.flex {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
}
.flex span {
    flex: 1;
}
footer{
    margin-top: 0.5rem;
}
footer img {
    position: absolute;
    bottom: 1.4rem;
    right: 1.5rem;
}
@media only screen and (max-width:549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    .hide_m {
        display: none;
    }
    footer img {
        position: static;
    }
    header {
        position: static;
        margin-bottom: 1rem;
    }
    p {
        text-align: left;
    }
    h1 {
        font-size: 2em;
    }
    header, footer {
        text-align: center;
    }
    footer p{
        text-align: center;
    }
}