@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #004998;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1152px;
    margin: 1rem auto;
    border: 1px solid #c2c2c2;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 3rem;
    font-size: 1.75em;
    line-height: 1.1em;
}
h2 {
    font-size: 1.0625em;
    line-height: 1.3em;
    margin: 1rem 0;
}
h1, h2 {
    color: #008767;
    font-weight: 400;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    background: #004998;
    padding-bottom: 1rem;
}
main {
    padding: 2.5rem 4rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left {
    width: 22%;
}
.right {
    width: 76%;
    position: relative;
}
a.apply {
    position: absolute;
    bottom: 1rem;
    right: 0;
    color: #008767;
    border-radius: 2rem;
    display: inline-block;
    padding: 0.25rem 1rem;
    border: 1px solid #008767;
}
.bor {
    display: inline-block;
    border-radius: 2rem;
    padding: 0.25rem 1rem;
    border: 1px solid #008767;
}
.kununu {
    margin: 9.5rem 0 2rem;
}
.kununu img {
    margin-top: -9.5rem;
}
footer p {
    font-size: 0.875em;
    line-height: 1.3;
}
@media only screen and (max-width: 1151px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
    a.apply {
        display: block;
        width: fit-content;
        margin: 0 auto 1rem;
        position: static;
    }
}
@media only screen and (max-width: 780px) {
    main {
        padding: 2rem;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: auto;
    }
}
@media only screen and (max-width:480px) {
    main {
        padding: 1rem;
    }
    li {
        padding-left: 1rem;
    }
}