@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.eot');
    src: url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), url('../fonts/poppins-v20-latin-regular.woff') format('woff'), url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'), url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.eot');
    src: url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v20-latin-700.woff2') format('woff2'), url('../fonts/poppins-v20-latin-700.woff') format('woff'), url('../fonts/poppins-v20-latin-700.ttf') format('truetype'), url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    color: #000;
    font: 400 0.875em/1.5em 'Poppins', Arial, sans-serif;
}

#wrapper {
    max-width: 872px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #7878ff url('../images/background.jpg') repeat-x;
    background-size: cover;
    padding: 2.375rem;
    overflow: hidden;
}

header {
    padding: 0 10rem 1.5625rem 0;
    position: relative;
}

header figure {
    position: absolute;
    top: 0;
    right: 0;
}

header p {
    font-size: 1.2625em;
    line-height: 1.3em;
}

article {
    padding: 1.25rem;
    background: #fff;
    display: flex;
    justify-content: space-between;
}

article p {
    margin-bottom: 16px;
}

video {
    width: 100%;
}

video.mobile {
    display: none;
}

.article-content {
    width: 349px;
}

footer {
    padding: 1.25rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer p {
    font-size: 0.9em;
    padding-top: 3px;
}

:is(h1, h2, strong, footer p) {
    font-weight: 700;
}

span {
    white-space: nowrap;
}

h1 {
    font-size: 44px;
    line-height: 1.1;
    margin: 3rem 0 0;
    text-transform: uppercase;
}

h1 span {
    font-weight: 400;
    font-size: 1.052rem;
    text-transform: lowercase;
    display: inline-block;
}

h2 {
    margin-top: 1.5rem;
}

:is(h2, h3) {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 3px;
    color: #7878ff;
    text-transform: uppercase;
}

ul {
    list-style: none;
    margin: 0 0 1.5rem;
}

ul li {
    padding-left: 23px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 24px;
    text-indent: -23px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media only screen and (max-width:871px) {
    #wrapper {
        border: none;
        padding: 1rem;
        margin: 0;
    }

    header {
        padding: 0 184px 30px 0;
    }

    header p {
        font-size: 1em;
    }

    .article-content {
        width: 48%;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer p {
        padding-top: 1rem;
        text-align: center;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
    }

    h1 {
        font-size: 2.25em;
        line-height: 1.2;
    }

    h1 span {
        display: block;
        line-height: 1.3;
		white-space: normal;
    }
}

@media only screen and (max-width:750px) {
    :is(article, video.mobile) {
        display: block;
    }

    .pc {
        display: none;
    }

    .article-content {
        width: auto;
    }

    h2 {
        margin-top: 20px;
    }

    ul {
        margin: 0 0 1.25rem;
    }
}

@media only screen and (max-width:510px) {
    :is(header, header figure) {
        padding: 0 0 1rem;
    }

    header figure {
        position: static;
        display: flex;
        justify-content: center;
    }

    header :is(h1, p) {
        text-align: center;
    }

    h1 {
        margin-top: 1rem
    }
}