@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
	position: relative;
	max-width: 56.25rem;
	margin: 1rem auto;
	overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    font-size: 2rem;
    color:  #1f3662;
    line-height: 1.3;
    position: relative;
    margin: 0 0 1rem 0;
}
.plus {
    position: relative;
    left: -2rem;
}

h2 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.75rem;;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1.2rem;
    color: #fff;
    text-align: right;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}
  
header {
    position: relative;
    background-color: #1f3662;
    height: 3rem;
}

.logo {
    position: absolute;
    width: 9rem;
    left: 1rem;
}

article {
    padding: 2rem;
}

.width {
    width: 70%;
}

.margin-top {
    margin-top: 5rem;
}

hr {
    border: none;
    height: 1px;
    background-color:#000;
    margin: 2.5rem 0;
}


.kontakt {
    display: flex;
    gap: 1rem;
}

.kontakt .icon {
    background-color: #1f3662;
    height: 2rem; 
    width: 2rem;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt i {
    color: #fff;
    width: 2rem;
}


.interesse {
    background: #1F3662;
    padding: 1rem 1rem 5rem 3em;
    border-radius: 0 0 0 320px;
    color: #fff;
    text-align: right;
    margin-top: -10px;
    width: 35%;
    position: absolute;
    top: 58.1rem;
    right: 0;
}

.interesse p {
    color: #fff;
    text-align: right;
}

footer {
    background-color: #1f3662;
    padding: 0.5rem;
    display: flex;
    justify-content: end;
    gap: 0.5rem;
}

footer i {
    color: #fff;
    font-size: 2rem;
}

.button {
    display: flex;
    justify-content: center;
    margin: 1rem 0 2rem;
}

a.apply {
    background-color: #1f3662;
    color: #fff;
    border: 1px solid #1f3662;
    padding: 0.5rem 1rem;
}

a.apply:hover {
    background-color: #fff;
    color: #1f3662;
}

@media only screen and (max-width: 56.24rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .interesse {
        position: static;
        padding: 1rem;
        width: 100%;
        border-radius: 0;
        margin: 1rem 0 0;
    }
    .interesse p {
        text-align: center;
    }
    h4 {
        text-align: center;
    }
    .width {
        width: 100%;
    }

    .margin-top {
        margin-top: 0;
    }

    hr {
        display: none;
    }
}


@media only screen and (max-width: 40rem) {
    header {
        height: 100%;
        padding: 1rem;
    }
    
    .logo {
        position: static;
    }

    .plus {
        left: 0;
    }

    article {
        padding: 1rem;
    }
}

