@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: 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: #4a4a4a;
    font: 400 1em/1.3em 'Barlow', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 880px;
    margin: 1rem auto;
    border: 1px solid #4a4a4a;
    background: #fff;
    overflow: hidden;
    padding: 2rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #1b66b3;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    font-size: 2.5em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h1+p {
    color: #fff;
    font-size: 1.125em;
    line-height: 1.3;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem 2rem;
    list-style: none;
}
li {
    padding: 0 0 0 2.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #fce531;
    height: 2px;
    margin: 0 0 1rem;
    width: 35px;
}
.info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    background: #F3F3F3;
    padding: 1rem 2rem;
    margin: 1rem -2rem 2rem;
}
.info p {
    padding: 0;
}
.info p:nth-of-type(2) {
    border-inline: 1px solid #000;
    padding-inline: 3rem;
}
.hl {
    display: block;
    font-weight: 700;
    font-size: 1.313em;
    line-height: 1.1;
    margin-top: 0.5rem;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0 3rem;
    align-items: flex-start;
}
.flex p {
    font-weight: 700;
    text-align: center;
}
.flex div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
header {
    margin-bottom: 1rem;
    text-align: center;
}
.box_top {
    background: #000 url('../images/bg.jpg') no-repeat;
    color: #FFF22E;
    padding: 0.5rem;
}
.box_top>p:first-of-type {
    font-size: 1.5em;
    line-height: 1.1;
    hyphens: none;
}
article figure {
    margin-bottom: 1.5rem;
}
footer {
    padding: 2rem 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    flex-flow: row-reverse;
}
a.button {
    background: #1B66B3;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 2.5rem;
    text-transform: uppercase;
}
a.button:hover {
    background: #FCE531;
    color: #4a4a4a;
}
.iframe {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border: none;
}
.iframe iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
}
figure {
    margin: 0;
}
@media only screen and (max-width:879px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .flex {
        justify-content: space-around;
    }
}
@media only screen and (max-width:580px) {
    .info {
        flex-direction: column;
    }
    .info p:nth-of-type(2) {
        border: none;
        border-block: 1px solid #4a4a4a;
        padding: 1rem 0;
    }
    footer {
        flex-direction: column;
    }
    h1 {
        font-size: 2em;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
}