* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 14px;
    line-height: 18px;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper {
    margin: 1rem auto;
    padding: 0 60px 45px;
    max-width: 800px;
    background: #fff;
    overflow: hidden;
    border: solid thin #000;
}

header {
    margin: 3px -60px 10px;
}

.logo {
    display: flex;
    justify-content: space-between;
    margin: 2rem 1.5rem 2rem 2.5rem;
    align-items: center;
}

.box {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin: 25px 0 20px;
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    margin-top: 1.5rem;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blue {
    color: #0e2b8d;
}

footer {
    margin: 10px 0 0;
}

footer>section {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

footer>section .solical {
    display: flex;
    gap: 15px;
    padding-right: 16px;
}

:is(h1, h2) {
    color: #0e2b8d;
}

h1 {
    font-size: 24px;
    margin: 40px 0 20px;
    line-height: 30px;
}

h2 {
    font-size: 14px;
    line-height: 22px;
    margin: 10px 0 2px;
}

h3 {
    font-size: 16px;
    line-height: 1.625rem;
    margin: 20px 0 8px;
}

p:not(:last-child) {
    margin-bottom: 1rem
}

span {
    white-space: nowrap;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #8f8f8f;
    text-decoration: underline;
    white-space: nowrap;
}

a[href^="tel:"] {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0 0 20px;
}

ul li {
    list-style: none;
    padding-left: 49px;
}

ul li:before {
    font-size: 20px;
    text-indent: -30px;
    position: relative;
    top: 1px;
    float: left;
    content: "\2022";
    color: #231f20;
}

img {
    max-width: 100%;
}

@media screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 0 1rem 1rem;
    }

    header {
        margin: 0 -16px;
    }

    .logo {
        margin: 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        margin: 20px 0;
    }
}

@media screen and (max-width:480px) {
    .logo {
        margin: 1rem;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
    }

    footer>section {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .kontakt :is(p, h2) {
        text-align: center;
    }

    ul li {
        padding-left: 20px;
    }

    ul li:before {
        text-indent: -20px;
    }
}