@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: .9rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

.color,
a.color {
    color: #e5006d;
}

article p {
    padding-bottom: 1rem;
}

article>p:first-of-type {
    hyphens: auto;
    text-align: justify;
    margin-top: -2rem;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    background-color: #e5006d;
    color: #fff;
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    padding: .625rem 3rem .625rem 2rem;
    margin: 0 0 0 -2rem;
    display: inline-block;
}

h1 span {
    font-weight: normal;
    font-size: .6em;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    padding-bottom: .625rem;
    color: #e5006d;
    display: flex;
    align-items: center;
    gap: .625rem;
}

h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    padding-bottom: .5rem;
    color: #585756;
}

h4 {
    font-size: 1.5rem;
    color: #fff;
    display: inline-block;
    background-color: #585756;
    clip-path: polygon(7.5% 0%, 100% 0%, 92.5% 100%, 0% 100%);
    padding: .625rem 1.6rem;
    margin: 0 0 0 -1.85rem;
}

ul {
    list-style: none;
    padding-bottom: 1.5rem;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "\276F";
    float: left;
    margin-left: -1rem;
    font-size: .7rem;
    line-height: 2;
    color: #e5006d;
}

header a {
    position: absolute;
    top: 0;
    right: 2rem;
}

.title {

    display: flex;
    align-items: end;
    transform: translateY(-50%);
}

article {
    padding: 0 2rem;
}

.flex {
    display: flex;
    gap: 1.5rem;
}

.flex>div {
    flex: 50%;
}

footer {
    padding: 1rem 2rem;
}

footer>p {
    letter-spacing: -.45px;
}

.block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem .5rem;
    padding-bottom: 1.5rem;
}

.block>div {
    display: inline-block;
    color: #585756;
    border-top: 2px dotted #b2b2b1;
    padding: 1rem 0 0 2rem;
    margin-left: -2rem;
}

.social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: .3rem;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .title {
        flex-direction: column;
        transform: translate(0);
        margin: 0 -2rem;
    }

    article>p:first-of-type {
        text-align: left;
        margin-top: 1rem;
    }

    h1,
    h4 {
        width: 100%;
        clip-path: none;
        font-size: 1.8rem;
        text-align: center;
        padding: .625rem 2rem;
        transform: translateY(0);
        display: block;
    }

    h4 {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 48rem) {

    .flex {
        display: block;
    }

    .block>img {
        display: none;
    }

    footer>p {
        letter-spacing: normal;
    }
}

@media only screen and (max-width: 45rem) {

    header a {
        right: 1rem;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        text-align: center;
        padding: 0 1rem 1rem;
    }

    .title {
        margin: 0 -1rem;
    }

    h1,
    h4 {
        padding: .625rem 1rem;
    }

    h2,
    h3 {
        font-size: 1.2rem;
    }

    .block {
        flex-direction: column;
        padding-bottom: 1rem;
    }

    .block>div {
        width: 100%;
        padding: 1rem 0 0 0;
        margin-left: 0;
    }
}

@media only screen and (max-width: 35rem) {
    h1 {
        font-size: 1.45rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }

    header a {
        position: static;
    }
}