@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #808285;
    font: 400 1em/1.3em Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 850px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 0;
    height: 614px;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1em;
    line-height: 1.3;
    color: #fff;
}
h2 {
    font-size: 2.65em;
    line-height: 1.2;
    color: #fff;
    transform: rotate(-15deg);
    width: fit-content;
    margin: 6.5rem 3rem 2.5rem;
}
h2 span {
    font-size: 1.5em;
}
h3 {
    font-size: 1.75em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    display: none;
    color: #0C4BA0;
}
h4 {
    font-size: 2.7em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: #F5821F;
}
h4 + p {
    font-size: 1.125em;
    line-height: 1.3;
}
header {
    padding: 0;
}
article {
    padding-left: 10rem;
}
footer a {
    padding: 0.375rem 0.25rem 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #F5821F;
    color: #fff !important;
    border-radius: 100%;
    font-size: 1.75em;
    position: absolute;
}
.fb {
    bottom: 11.625rem;
    right: 3.625rem;
}
.ig {
    bottom: 7.625rem;
    right: 5.8125rem;
}
@media only screen and (max-width:849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        height: auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        color: inherit;
    }
    h2 {
        padding: 4rem 1rem;
        background: #F5821F;
        border-radius: 100%;
        margin: 1rem auto;
    }
    h3 {
        display: block;
    }
    h3 br {
        display: none;
    }
    article {
        padding: 1rem;
    }
    footer a {
        position: static;
    }
    footer {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
}
@media only screen and (max-width:480px) {
    h4 {
        font-size: 2em;
        line-height: 1.3;
    }
}