@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 895px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #395199;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 2.25em;
    line-height: 1.1;
    color: #096FB6;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
.pb {
    padding-bottom: 0;
}
li {
    padding-left: 0.625rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -0.625rem;
}
article {
    padding: 0.75rem;
}
article p:first-of-type {
    font-size: 1.313em;
    line-height: 1.3em;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 48.5%;
}
.hide_d {
    display: none;
}
ul .no_icon::before {
    content: "";
}
article p, h1 {
    text-align: center;
}
.yellow {
    width: fit-content;
    background-color: #FFF101;
    color: #096FB6;
    padding: 0.25rem 0.625rem;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.6);
    transform: rotate(-6deg);
    position: absolute;
    right: 0.8rem;
    bottom: 3rem;
    font-size: 1.1em;
    line-height: 1.2em;
}
footer p {
    color: #fff;
    background-color: #2BA5DE;
    padding: 0.5rem 0.75rem;
    font-size: 1.25em;
    line-height: 1.3em;
}
@media only screen and (max-width: 894px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .yellow {
        position: static;
        transform: none;
        margin: 0 auto;
    }
    .hide_m, li br {
        display: none;
    }
    .hide_d {
        display: initial;
    }
    footer p {
        text-align: center;
    }
    p :is(span, a) {
        display: inline-block;
    }
    p, li {
        hyphens: auto;
    }
}
@media only screen and (max-width: 780px) {
    .flex {
        display: block;
    }
    .flex div {
        width: auto;
    }
    h1 {
        font-size: 1.75em;
    }
}