@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.75em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -0.375rem 0 2rem 0.625rem;
    font-size: 2em;
    line-height: 1.1em;
    width: 70%;
    position: relative;
}
h1::before {
    content: "";
    width: 3px;
    height: 86%;
    background-color: #ffe92c;
    position: absolute;
    top: 1px;
    left: -10px;
}
h1 span {
    font-size: 0.65em;
    font-weight: 400;
    text-transform: initial;
    display: inline-block;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
header img {
    display: block;
}
main {
    width: 422px;
    position: absolute;
    top: 323px;
    left: 486px;
}
.pb {
    padding-bottom: 2.5rem;
}
h1, .link p {
    text-transform: uppercase;
}
footer p {
    padding-bottom: 0.25rem;
}
figure {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.link p {
    font-size: 1.4em;
    line-height: 1.3;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.mobile {
    display: none;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    main {
        padding: 1rem 2rem;
        width: auto;
        position: static;
    }
    .hide_m {
        display: none;
    }
    h1 {
        width: auto;
    }
    .mobile {
        display: block;
    }
}
@media only screen and (max-width: 570px) {
    header > * {
        width: auto;
    }
    header, footer {
        flex-direction: column;
        align-items: center;
    }
    footer {
        gap: 1rem;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    main {
        padding: 1rem;
    }
}