@charset "utf-8";



:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em 'Arial', sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 910px;
    border: solid 1px #000;
    background: #fff;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0;
    font-size: 1.892em;
    line-height: 1.4;
    color: #fff;
    background: #E2041A;
    padding: 1rem 2rem 0.5rem;
    font-weight: 500
}

h1 small {
    font-size: 0.7em;
    display: block;
    font-weight: normal
}

h2 {
    font-size: 1.25em;
    line-height: 1.2;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.125em;
    line-height: 1.2;
    padding: 0 0 1rem 20px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0 0 2rem 20px;
    list-style: none;
}

li {
    padding: 0 0 0 20px;
    background: url('../images/star.jpg') no-repeat -1px 3px;
}

.justify {
    text-align: justify;
}

header {
    position: relative;
}

header img {
    display: block;
}

header p {
    padding-bottom: 0.5rem;
    font-size: 0.875em;
    line-height: 1.2;
}

.introduction {
    padding: 0.7rem 1rem;
    background: rgb(255, 255, 255, 0.5);
    width: 26%;
    position: absolute;
    left: 0;
    bottom: 55px;
}

.flexbox,
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem;
}

footer {
    align-items: end;
}

.flexbox {
    margin-top: 20px
}

.left {
    width: 52%;
}

.right {
    width: 40%;
}

.right h3:last-of-type {
    margin-left: -20px;
}

footer {
    padding: 0 2rem 1rem;
    font-size: 15px
}

img {
    max-width: 100%;
    height: auto;
}

.right h3:first-of-type {
    padding: 0 0 20px 0
}

.right ul {
    padding: 0 0 42px 0
}

@media only screen and (max-width:909px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }

    p {
        text-align: left;
    }

    p:is(a, span) {
        display: inline-block;
    }

    .introduction {
        position: static;
        width: 100%;
    }

    br {
        display: none;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width:780px) {

    .left,
    .right {
        width: auto
    }

    .justify {
        text-align: left;
    }

    h1 {
        font-size: 25px;
        padding: 1rem;
        text-align: center;
    }

    h3 {
        padding: 0 0 .5rem;
    }

    ul,
    .right ul {
        padding: 0 0 1rem 0;
    }

    .right h3:last-of-type {
        margin-left: 0;
    }

    .flexbox {
        margin-top: 0.5rem;
    }

    footer {
        display: block;
        padding: 0 1rem 1rem;
    }

    .logo {
        display: flex;
        justify-content: center;
        padding: 0;
    }
}