@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('../images/bg.jpg') no-repeat;
    overflow: hidden;
}
:is(h1, h2, h3, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1, h2, h3 {
    text-transform: uppercase;
}
h1 {
    margin: 0 0 12.5rem 6.5rem;
    padding-left: 1.5rem;
    font-size: 2.9em;
    line-height: 1;
    position: relative;
    width: fit-content;
}
h1 span {
    font-size: 1.125rem;
}
h1:before {
    content: "/";
    font-size: 3rem;
    position: absolute;
    left: 0;
    top: 0;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\25A0";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #F58220;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin: 0 1rem 0 9rem;
}
.left, .right {
    width: 49%;
}
.left {
    padding-top: 5.5rem;
}
article {
    padding: 0 2rem 0.5rem;
}
footer :is(p, h3) {
    color: #fff;
    font-size: 1.188em;
}
.address {
    position: absolute;
    left: 30.8rem;
    top: 6rem;
    font-size: 1.085em;
}
.contact {
    position: absolute;
    left: 29rem;
    top: 41rem;
}
.social {
    position: absolute;
    left: 2rem;
    top: 2rem;
    z-index: 1;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .hide_m, ul br {
        display: none;
    }
    h1 {
        margin: 1rem 0 1.5rem;
        font-size: 2.5em;
    }
    .flex {
        flex-direction: column;
        margin: 0;
    }
    .left, .right {
        width: 100%;
        padding-top: 0;
    }
    footer {
        background: #3E3E3F;
        padding: 1rem 1rem 0.5rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .address {
        position: static;
    }
    .contact {
        position: static;
    }
}
@media only screen and (max-width:480px) {
    h1 {
        font-size: 2em;
    }
    h1:before {
        font-size: 2rem;
    }
    .big {
        font-size: 1.313em;
    }
    article {
        padding: 0 1rem;
    }
    .social {
        position: static;
        margin-top: 1rem;
    }
}