@charset "utf-8";


@font-face {
    font-display: swap;
    font-family: 'Antonio';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/antonio-v19-latin-regular.eot');
    src: url('../fonts/antonio-v19-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/antonio-v19-latin-regular.woff2') format('woff2'),
        url('../fonts/antonio-v19-latin-regular.woff') format('woff'),
        url('../fonts/antonio-v19-latin-regular.ttf') format('truetype'),
        url('../fonts/antonio-v19-latin-regular.svg#Antonio') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Antonio';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/antonio-v19-latin-700.eot');
    src: url('../fonts/antonio-v19-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/antonio-v19-latin-700.woff2') format('woff2'),
        url('../fonts/antonio-v19-latin-700.woff') format('woff'),
        url('../fonts/antonio-v19-latin-700.ttf') format('truetype'),
        url('../fonts/antonio-v19-latin-700.svg#Antonio') format('svg');
}

: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: #EBF0F0
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    box-shadow: 0 0 0.625rem rgb(75 75 75 / 50%);
    background: url(../images/background.jpg) no-repeat;
    background-size: cover;

}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    font-family: 'Antonio', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    color: #008a58;
    line-height: 1;
    hyphens: auto;
    margin-bottom: 1.5rem;
}

h1 span {
    color: #e3072d;
}

.big {
    font-size: 7rem;
}

h1 small {
    font-size: 1.2rem;
    line-height: 1;
}

h2 {
    font-size: 1.4rem;
    color: #008a58;
}

h3 {
    font-size: 1.2rem;
    color: #008a58;
}

h4 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0.5rem 0 1rem 0;
    list-style-type: none;
}

ul li {
    background: url(../images/checkmark.png) no-repeat left top;
    padding: 0 0 0 2rem;
}

header {
    padding: 2rem;
    display: flex;
}

main {
    display: flex;
    gap: 1rem;
}

aside {
    width: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.circle {
    position: relative;
    top: -5rem;
    margin-bottom: -5rem;
}

article {
    width: 60%;
    padding-right: 1rem;
}


footer .kontakt {
    text-align: center;
    padding: 1rem 2rem;
}

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%;
}

.responsive {
    display: none;
}

@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) {
    h1 {
        font-size: 4rem;
    }

    .big {
        font-size: 6rem;
    }
}

@media only screen and (max-width: 40rem) {
    .normal {
        display: none;
    }

    .responsive {
        display: block;
    }

    h1,
    .big {
        font-size: 3rem;
    }

    h1 {
        margin: 1rem 0 0;
        text-align: center;
    }

    header {
        padding: 1rem 1rem 0;
        flex-direction: column;
        align-items: center;
    }

    main {
        flex-direction: column-reverse;
        gap: 0;
        padding: 1rem;
    }

    article,
    aside {
        width: 100%;
    }


    aside .frau,
    .circle {
        width: 50%;
    }

    footer .kontakt {
        padding: 1rem 1rem 0;
    }
}

@media only screen and (max-width: 30rem) {
    h1,
    .big {
        font-size: 2.5rem;
    }
}