@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 1rem auto;
    box-shadow: 3px 3px 11px 2px #939095;
    background-color: #f3f3f3;
}

.logo {
    display: flex;
    justify-content: flex-start;
    padding: 20px 30px;
    background: #fff;
}

article {
    padding: 30px 50px;
}

.boder {
    border: 2px solid #dadada;
    border-radius: 1rem;
    padding: 20px;
    margin-bottom: 20px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
}

.text {
    width: 70%;
}

footer {
    padding: 0px;
}

.map {
    position: relative;
    padding-bottom: 50%;
    padding-top: 15px;
    height: 0;
    overflow: hidden;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

p:not(:first-of-type) {
    margin-top: 20px;
}

h1 {
    font-size: 24px;
    line-height: 1.3;
    margin: 0;
}

h1+p {
    padding-bottom: 20px;
}

h2 {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
}

:is(h1, h2) {
    color: #555
}

ul {
    list-style: none
}

ul li {
    padding-left: 19px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 23px;
    text-indent: -19px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:800px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    :is(.logo, article) {
        padding: 16px
    }
}

@media only screen and (max-width:617px) {
    .flex {
        flex-direction: column;
        align-items: center;
    }

    .text {
        width: auto
    }
}