@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;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-family: "Poppins", sans-serif;
    font-size: 0.875em;
    line-height: 1.3;
    font-weight: 300;
}
#wrapper {
    position: relative;
    max-width: 907px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem;
}
p {
    padding-bottom: 1rem;
}
h2, strong {
    font-weight: 500;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.65em;
    line-height: 1.1;
    background: #4074B9;
    color: #fff;
    text-align: center;
    padding: 0.25rem 1rem;
    font-weight: 700;
}
h1 span {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
    padding-top: 0.3rem;
    display: block;
}
h2 {
    font-size: 1em;
    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;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.1rem;
}
li:before {
    content: "▪";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: -2px;
    margin-left: -1.1rem;
}
ul + p {
    text-align: center;
}
hr {
    border: none;
    border-bottom: 1px solid #4074B9;
    margin: 1rem auto 2rem;
    max-width: 530px;
}
footer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0 2rem;
}
header {
    padding-bottom: 1.5rem;
}
@media only screen and (max-width:906px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    i br {
        display: none;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
    span {
        display: inline-block;
    }
}