@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #6C6D70;
    font: 1em/1.3 "Segoe UI", Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 456px;
    margin: 1rem auto;
    border: solid 2px #0160AE;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}

p {
    text-align: justify;
    padding-bottom: 0.5rem;
}

h1 {
    font-size: 1.692em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #23B24B;
}

h1 span {
    font-size: 0.7em;
}
h1 + p {
    padding-bottom: 1rem;
}
h2 {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #23B24B;
    text-transform: uppercase;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

article {
    padding: 0 1rem 1rem;
    position: relative;
}

.logo {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
}
.zindex2 {
    position: relative;
    z-index: 2;
    width: fit-content;
}
footer {
    padding: 0.5rem 1rem;
    background: #0160AE;
    color: #FFF;
}

footer p {
    padding-bottom: 0rem;
    text-align: right;
}

footer p a {
    color: #FFF;
}

@media only screen and (max-width:455px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        hyphens: auto;
    }
    article {
        padding: 0 1rem;
    }

    .logo {
        position: static;
        margin: 0.5rem 0;
        display: flex;
        justify-content: center;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer p {
        text-align: center;
    }
    .hide_m {
        display: none;

    }
}