@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #666;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    font-size: 2rem;
    color: #008243;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.4rem;
    color: #008243;
    font-weight: 400;
    margin:2rem 0 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1.25rem;
}

.header-top {
    padding: 1.5rem 1rem 1rem;
    box-shadow: 0 0 0.625rem rgb(75 75 75 / 50%);
}

.container {
    margin: 0 auto;
    max-width: 50rem;
}

header {
    padding: 1rem;
    border: 1px solid #ebebeb;
}

.details {
    display: flex;
    gap: 3rem;
    margin: 1rem 0;
}

.details div {
    display: flex;
    align-items: center;
    margin: 0 0 0.5rem 0;
}

.details p {
    margin: 0;
}

.details i {
    color: #008243;
    margin-right: 0.75rem;
}

article {
    padding: 1rem;
}

.kontakt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.button {
    display: flex;
    justify-content: flex-end;
    margin: 2rem 1rem 2.5rem;
}

a.apply {
    padding: 0.6rem 1rem;
    background-color: #44A12b;
    color: #fff;
}

a.apply:hover {
    color:#fff;
    background-color: #266b13;
}

.footer-icons {
    display: flex;
    background-color: #666;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    margin: 0;
}

.fa-brands {
    color: #fff;
}

iframe {
    display: block;
    width: 100%;
    height: 28.125rem;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 52.4%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    .details {
        flex-direction: column;
        gap: 0;
    }
}


