<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

:root {
    --main-color: #0075c9;
}

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

body {
    color: #3a434f;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    line-height: 1.5rem;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 18.75rem, rgba(239, 239, 239, 1) 50rem), url(../images/background.jpg) no-repeat top center;
    background-size: 100%;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: 29px;
    line-height: 120%;
    margin: 1rem 0;
}

h1 span {
    font-size: 1.6rem;
    font-weight: normal;
}

h2 {
    font-size: 22px;
    line-height: 120%;
    margin: 0 0 1.5rem;
}

h3 {
    font-size: 1.2rem;
    margin: 0 0 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

:is(h1, h2, h3, h4) {
    color: var(--main-color);
}

ul {
    margin: .5rem 0 0 3.5rem;
}

header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    padding: 2rem 2rem 1rem;
    margin-bottom: .5rem;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.info :is(.fas, .far) {
    margin-right: 0.625rem;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    30% {
        left: 0%;
    }

    33% {
        left: -100%;
    }

    64% {
        left: -100%;
    }

    67% {
        left: -200%;
    }

    97% {
        left: -200%;
    }

    100% {
        left: -300%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 18s slidy infinite;
}

figure img {
    width: 25%;
    float: left;
}

article p {
    margin: .5rem 0;
}

section {
    background: #fff;
    margin: 0 0 .5rem;
    padding: 1rem 1.5rem;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
}

.flex :is(figure, aside) {
    margin: 0;
}

.button {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 .5rem;
}

.button a.apply {
    color: #fff;
    background: var(--main-color);
    font-size: 1.1rem;
    text-align: center;
    border: solid 2px var(--main-color);
    padding: .7rem 2rem;
    width: 14.375rem;
    text-decoration: none;
}

a.apply:hover {
    background: #fff;
    color: var(--main-color);
}

.section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    width: 50%;
}

.fa-solid {
    font-size: 3.2rem;
}

.details p {
    margin: 0;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

footer {
    background: #fff;
    padding: 1rem;
    margin-top: .5rem;
}

footer p {
    text-align: center;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    body {
        background: rgba(239, 239, 239, 1);
    }

    header,
    section {
        padding: 1rem;
    }

    footer {
        padding: 1rem 0;
    }
}

@media only screen and (max-width: 768px) {
    header {
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
    }

    header h2 {
        text-align: center;
    }

    .info {
        align-items: center;
    }

    .kontakt .flex {
        gap: 80px;
    }

    .section {
        width: auto;
    }
}

@media only screen and (max-width: 560px) {
    ul {
        margin: .5rem 0 0 1rem;
    }

    .kontakt .flex {
        gap: 30px;
    }

    :is(.flex, .section) {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }

    .details :is(h4, p) {
        text-align: center;
    }
}
</pre></body></html>