
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Verdana, Geneva, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #231f20;
}

#wrapper {
    max-width: 910px;
    margin: 1rem auto;
    box-shadow: 0 4px 8px 0 #aaa;
    background-color: #fff;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 2rem;
}

.slogan {
    position: relative;
    z-index: 1;
}

.slogan p {
    background: #006899;
    position: absolute;
    bottom: 4px;
    right: 0;
    padding: 6px 7% 6px 1rem;
    font-size: 16px;
    color: #fff;
    box-shadow: -3px 3px 20px -5px #000;
}

article {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.colum-left {
    width: 610px;
    padding: 1rem 0 1rem 2rem;
}

.colum-right {
    width: 239px;
    padding: 63px 16px 0 0;
}

.colum-right>p {
    margin-bottom: 14px;
    font-size: 12px;
}

.title {
    clip-path: polygon(0 0, 100% 10%, 100% 95%, 0% 100%);
    margin: -19px 0 20px -2rem;
    background: #F0F7F9;
}

.kontakt {
    margin: 18px -16px 0 -35px;
    padding: 35px 16px 56px 35px;
    background: #F0F7F9;
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 92%);
}

footer p {
    padding: 0 45px 30px;
    margin: 30px 0 0;
    text-align: right;
    font-size: 16px;
    line-height: 19px;
    color: #001f47;
}

footer .images {
    padding: 0 0 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 50px;
}

.button {
    display: flex;
    justify-content: center;
    padding: 0 10px 30px;
}

.button a {
    display: inline-block;
    padding: 10px 15px;
    background: #006b99;
    border: 1px solid transparent;
    transition: .3s;
    color: #fff !important;
    text-align: center;
}

.button a:hover {
    opacity: 0.75;
}

h1 {
    font-size: 31px;
    line-height: 1.8;
    padding: 63px 22px 37px 30px;
    color: #001f47;
}

h1 small {
    display: block;
    font-size: 17px;
    line-height: 1.35;
}

h2 {
    font-size: 15px;
    margin: 30px 0 16px;
    line-height: 19px;
    color: #006899;
}

h3 {
    font-size: 24px;
    margin: 20px 0 16px;
    line-height: 32px;
    font-weight: normal;
    color: #001f47;
}

p:not(:last-child) {
    margin-bottom: 16px;
}

img {
    max-width: 100%;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 31px 30px 0;
    list-style: none;
}

ul li {
    padding-left: 25px;
}

li:before {
    text-indent: -25px;
    content: "\2022";
    color: #006899;
    float: left;
    font-size: 15px;
}

span {
    white-space: nowrap;
}

@media screen and (max-width:909px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(h1, h2, h3, p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        padding: 38px 16px;
    }

    .colum-left {
        width: calc(100% - 275px);
        padding-left: 1rem;
    }

    .title {
        margin: 0 0 20px -1rem;
    }

    .button {
        padding: 0 16px 30px;
    }
}

@media screen and (max-width:767px) {
    article {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
    }

    .kontakt {
        padding: 16px;
        margin: 0 -16px;
        clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    }

    :is(.colum-left, .colum-right) {
        width: 100%;
        padding: 0;
    }

    footer .images {
        flex-direction: column;
        padding: 0 1rem;
    }

    footer p {
        padding: 0 16px 16px;
        text-align: center;
    }

    ul {
        margin-right: 0;
    }
}

@media screen and (max-width:480px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slogan p {
        font-size: 4vw;
        text-align: center;
    }

    .logo {
        margin: 1rem;
    }
}