@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #fff;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 554px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #0D6EB7;
    overflow: hidden;
}

p {
    padding-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    margin: -1rem 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
    position: relative;
    text-align: justify;
    letter-spacing: -0.1px;
}
h1:before {
    content: "";
    position: absolute;
    left: -2.25rem;
    top: 0.25rem;
    width: 0;
    height: 0;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 1rem solid #fff;
}
.custom {
    color: #fff;
    background-color: #ED0C6E;
    position: absolute;
    top: 18rem;
    right: -1px;
    width: 65%;
    font-size: 1.15em;
    line-height: 1.3;
    clip-path: polygon(51% 0%, 100% 0, 100% 100%, 0 100%);
    padding: 0.75rem 0.75rem 0.5rem 4.5rem;
    text-align: left;
}

.custom::before {
    content: "";
    width: 138px;
    height: 136px;
    float: left;
    shape-outside: polygon(118px 0px, 0px 109px, 0 0);
}

.custom strong {
    background: #fff;
    color: #ED0C6E;
    padding: 0 0.5rem;
    -webkit-box-decoration-break: clone;
    -o-box-decoration-break: clone;
    box-decoration-break: clone;
}

.custom small {
    display: block;
    font-size: 0.75em;
    text-indent: 1.5rem;
    margin-left: -2rem;
}

.hl {
    background: #ED028C;
    color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    right: 2rem;
    top: 40.5rem;
    padding: 2rem 0 0;
    z-index: 1;
    font-size: 1.25em;
    line-height: 1.3;
}

header {
    position: relative;
}

header a:last-of-type {
    position: absolute;
    top: 9%;
    right: 7%;
    width: 23%;
    height: 25%;
    z-index: 9999;
}

article {
    padding: 2rem 2.25rem 0;
}

footer {
    padding: 0 2rem 0.5rem;
}
.bg {
    background: #ED0C6E;
    color: #fff;
    padding: 0 0.25rem;
    -webkit-box-decoration-break: clone;
    -o-box-decoration-break: clone;
    box-decoration-break: clone;
    font-weight: bold;
}
@media only screen and (max-width:551px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p, h1 {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    p :is(span, a) {
        display: inline-block;
    }

    figure {
        display: flex;
        justify-content: center;
        margin: 0 0 1rem;
    }
    h1 {
        margin: 1rem 0 0;
    }
    .custom {
        position: static;
    }

    .custom {
        padding: 0.5rem 1rem;
        background: #ED0C6E;
        margin: 0 0 1rem;
        width: auto;
        clip-path: none;
    }
    .custom small {
        text-indent: 0;
        margin: 0;
    }
    .custom strong {
        display: block;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.25rem;
    }

    br, .custom::before {
        display: none;
    }

    .hl {
        position: static;
        width: auto;
        height: auto;
        border-radius: 0;
        padding: 0.5rem;
        margin-bottom: 2rem;
    }

}

@media only screen and (max-width:480px) {
    article {
        padding: 1rem;
    }

    footer {
        padding: 0 1rem 0.5rem;
    }

}