@charset "utf-8";
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v34-latin-600.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-600.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-600.woff') format('woff'), url('../fonts/open-sans-v34-latin-600.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-600.svg#OpenSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1185px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 1.5rem;
}
:is(h1, h2, strong) {
    font-weight: 600;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline;
}
a[href^="tel:"] {
    white-space: nowrap;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2em;
    line-height: 1.1;
}
h1+p {
    padding-bottom: 1.5rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    background: #248E82;
    color: #fff;
    width: fit-content;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.text {
    text-transform: uppercase;
    margin-top: 2rem;
    font-size: 1.33em;
}
article {
    padding: 1rem 0 3rem;
}
article figure {
    margin: 0 0 1rem;
}
article .flex {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
article .flex .box-first {
    flex: 1;
}
article .flex .box {
    width: 61%;
}
article .flex .box-last {
    width: 310px;
    background: #E5E5E5;
    padding: 1rem 1rem 0;
}
footer {    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    align-items: center;
}
footer p {
    color: #248E82;
    font-size: 1.25em;
    font-weight: 600;
}
footer figure {
    margin: 0 0 0.5rem;
}
@media only screen and (max-width:1184px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    article .flex {
        display: block;
    }
    article .flex .box {
        width: 100%;
    }
    article .flex .box-last {
        margin-top: 2rem;
    }
    article figure {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:550px) {
    article {
        padding-bottom: 1.5rem;
    }
    footer {
        justify-content: center;
        flex-direction: column;
    }
}
@media only screen and (max-width:480px) {
    body{
        font-size: 0.938em;
        line-height: 1.3;
    }
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.625em;
        margin-bottom: 2rem;
    }
    li:before{
        top: -6px;
    }
}