:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-regular.eot');
    src: url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), url('../fonts/barlow-v12-latin-regular.woff') format('woff'), url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/barlow-v12-latin-700.eot');
    src: url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-700.woff2') format('woff2'), url('../fonts/barlow-v12-latin-700.woff') format('woff'), url('../fonts/barlow-v12-latin-700.ttf') format('truetype'), url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
}

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

body {
    font: 400 1em / 1.5em 'Barlow', Arial, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    max-width: 1168px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

.logo {
    margin: 1rem 2rem;
    background-color: #fff;
}

article {
    padding: 1rem 2rem 2rem;
    background-color: #F1F3F7;
}

.background {
    box-shadow: 0 30px 90px rgba(0, 40, 110, .08), 0 10px 30px rgba(0, 40, 110, .08);
    border-radius: 12px;
    padding: 1rem;
}

.bieten {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2%;
}

.bieten section {
    position: relative;
    padding: 0 0 0 60px;
    width: 49%;
}

.bieten section img {
    position: absolute;
    top: 0;
    left: 0;
}

footer {
    padding: 1.875rem 2rem 1rem;
    background: #1E3278;
    position: relative;
}

footer :is(p, a) {
    color: #FFF !important;
}

.fix-bottom {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
}

.logo-footer {
    position: absolute;
    top: 1.875rem;
    right: 1rem;
}

.solical {
    margin-bottom: 9px;
}

:is(strong, h1, h3) {
    font-weight: 700;
}

h1 {
    margin: 0.5rem 1.25rem 1.5rem;
    font-size: 2.8rem;
    line-height: 48px;
    text-align: center;
    color: #FF5A00;
}

h1 span {
    white-space: nowrap;
}

h2 {
    font-size: 2.2em;
    margin: 2rem 0 1rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1e3278;
}

h3 {
    font-size: 16px;
    margin: 0 0 10px;
    line-height: 1.125rem;
}

p {
    margin: 0 0 1rem;
}

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

ul {
    margin: 0 0 2rem;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
    background: url('../images/mark.png') no-repeat 0 7px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.button {
    display: flex;
    margin: 25px 0 15px;
    justify-content: center;
}

.button a {
    display: inline-block;
    padding: 10px 1rem;
    background: #1E3278;
    color: #fff !important;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
}

.button a:hover {
    opacity: 0.9;
}

@media all and (max-width:1166px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    article {
        padding: 1rem;
    }

    footer {
        padding: 1.5rem 1rem;
    }

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

@media all and (max-width:767px) {
    article {
        padding: 1rem;
    }

    .bieten {
        flex-direction: column;
    }

    .bieten section {
        width: 100%;
    }

    footer {
        padding: 1.875rem 1rem 1rem;
    }
}

@media all and (max-width:480px) {
    h1 {
        font-size: 24px;
        line-height: 30px;
    }

    h2 {
        font-size: 21px;
        line-height: 25px;
    }
}