@charset "utf-8";
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/cormorant-garamond-v16-latin-regular.eot');
    src: local(''),
        url('../fonts/cormorant-garamond-v16-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/cormorant-garamond-v16-latin-regular.woff2') format('woff2'),
        url('../fonts/cormorant-garamond-v16-latin-regular.woff') format('woff'),
        url('../fonts/cormorant-garamond-v16-latin-regular.ttf') format('truetype'),
        url('../fonts/cormorant-garamond-v16-latin-regular.svg#CormorantGaramond') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em "Lucida Sans Unicode", "Lucida Grande", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #0551A4;
    background: #fff url('../images/bg.jpg') no-repeat;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0;
    padding-left: 1rem;
    font-size: 1em;
    line-height: 1.3;
    position: relative;
}
h1:before {
    content: "\2010";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: -4px;
}
h2 {
    font: 400 2.8em/1em 'Cormorant Garamond', Times, serif;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    color: #EE1C28;
    text-transform: uppercase;
    margin: 0 0 0.5rem 1rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    align-items: center;
    gap: 1rem 5rem;
    flex-wrap: wrap;
    color: #fff;
    margin: 0 0 3rem 1rem;
}
.text {
    font-weight: 700;
    text-align: center;
    transform: rotate(-8deg);
    position: absolute;
    right: 2.5rem;
    top: 14rem;
    color: #fff;
    font-size: 1.3em;
    line-height: 1.3;
}
article {
    padding: 2rem 1.5rem 0;
}
article figure {
    margin: 0;
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}
footer {
    padding: 0 1.5rem 0.5rem;
}
footer p {
    text-align: center;
    color: #636366;
    font-size: 0.875em;
    line-height: 1.3;
}
footer figure {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    p {
        text-align: left;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    h3 {
        margin-left: 0;
    }
    .flex {
        background: #0551A4;
        padding: 1rem;
        margin: 0 0 1rem;
    }
    .text {
        position: static;
        background: #EE1C28;
        padding: 0.5rem;
        margin: 1rem 0;
        transform: none;
    }
    article figure {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 0.5rem;
    }
    h2 {
        font-size: 2.2em;
    }
}