@charset "utf-8";
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-regular.eot');
    src: local(''),
        url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'),
        url('../fonts/barlow-v12-latin-regular.woff') format('woff'),
        url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'),
        url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/barlow-v12-latin-500.eot');
    src: local(''),
        url('../fonts/barlow-v12-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/barlow-v12-latin-500.woff2') format('woff2'),
        url('../fonts/barlow-v12-latin-500.woff') format('woff'),
        url('../fonts/barlow-v12-latin-500.ttf') format('truetype'),
        url('../fonts/barlow-v12-latin-500.svg#Barlow') format('svg');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/barlow-v12-latin-700.eot');
    src: local(''),
        url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/barlow-v12-latin-700.woff2') format('woff2'),
        url('../fonts/barlow-v12-latin-700.woff') format('woff'),
        url('../fonts/barlow-v12-latin-700.ttf') format('truetype'),
        url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Barlow', Arial, sans-serif;
    letter-spacing: 0.2px;
}
#wrapper {
    position: relative;
    max-width: 730px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('../images/bg.jpg') no-repeat center top 19rem;
    overflow: hidden;
    padding-top: 1rem;
}
strong, h2, h3 {
    font-weight: 500;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
footer p, h1, h2, .center {
    text-align: center;
}
h1 {
    margin: 0.25rem 0 1.5rem;
    padding: 0.5rem;
    font-size: 2.85em;
    line-height: 1.1;
    background: #FAB800;
    text-transform: uppercase;
    font-weight: 700;
}
h2 {
    font-size: 1.063em;
    line-height: 1.3;
    background: #1B1A17;
    color: #FAB800;
    margin: 0.5rem 0;
    padding: 0.25rem;
    width: 172px;
}
h3 {
    font-size: 1.5em;
    line-height: 1.1;
    text-transform: uppercase;
}
ul {
    padding: 0 0 0.75rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.nopd {
    padding: 0;
}
.ml {
    margin-left: 0.75rem;
}
.box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem -4.5rem 0;
    padding: 0.5rem 4.5rem 0.5rem 1rem;
    border: 3px solid #FAB800;
}
article {
    padding: 3rem 4.5rem 0;
}
article>p:first-of-type {
    font-size: 1.125em;
    line-height: 1.3;
    hyphens: none;
}
footer {
    padding: 0.5rem;
    background: #FAB800;
}
footer p {
    text-align: center;
    padding-bottom: 0.25rem;
}
footer>p:first-of-type {
    font-size: 1.25em;
    line-height: 1.3;
    font-weight: 700;
}
@media only screen and (max-width:729px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    article {
        padding: 1rem 1rem 0;
    }
    .box {
        padding-left: 4.5rem;
        flex-direction: column;
    }
    .ml {
        margin-left: 0;
    }
    ul {
        padding-left: 0;
    }
    .hide_m {
        display: none;
    }
    h1 {
        font-size: 2em;
    }
    h3 {
        text-align: center;
    }
}