@font-face {
    font-family: "Novela";
    src:
        url("../fonts/novela-displayregular-webfont.woff2") format("woff2"),
        url("../fonts/novela-displayregular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}


:root {
    --background-color: #F2E6CC;
    --background-color-sheer: #F2E6CCAA;
    --font-color: #000000;
    --white: #FFFFFF;
    --special-color: #253852;
    --brown: #5B3B30;
}


body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Novela", serif;
    color: #222;
    margin-bottom: 20px;
}

a {
    color: var(--font-color);
    text-decoration: none;
}

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

.header-container {
    padding-top: 75px;
    background-color: var(--background-color);
}

.header {
    .wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: start;
        padding: 0 75px;
    }

    .left {
        font-size: 23px;
        font-weight: 600;
    }

    .mainmenu {
        .menubutton {
            text-transform: uppercase;
            cursor: pointer;

            span.icon {
                display: inline-block;
                width: fit-content;
                transition: all 0.3s;
            }
        }

        ul.mod-menu {
            display: none;
            list-style: none;
            margin: 0;
            padding: 0;
        }
    }

    .mainmenu.open {
        position: fixed;
        top: 75px;
        display: flex;
        flex-wrap: wrap;
        height: calc(100vh - 102px);
        align-content: space-between;
        z-index: 250;

        ul.mod-menu,
        .menubutton {
            position: relative;
            z-index: 250;
            color: var(--white);
        }

        a {
            color: var(--white);
        }

        .menubutton {
            span.icon {
                transform: rotate(45deg);
            }
        }

        ul.mod-menu {
            display: block;
            flex: 0 0 100%;
            font-size: 60px;
            font-weight: normal;
            font-family: 'Novela', serif;
            line-height: 120%;

            li.active a,
            li a:hover {
                color: var(--background-color);
                text-decoration: underline;
            }
        }

        .secondaryMenu {
            height: fit-content;
            padding-bottom: 40px;

            ul.mod-menu {
                display: flex;
                font-family: 'Poppins', sans-serif;
                font-size: 22px;
                text-decoration: underline;
                font-weight: 600;
            }

            li {
                padding-right: 50px;
            }
        }
    }

    /* .mainmenu.open */

    .mainmenu.open:after {
        content: "";
        position: fixed;
        background: linear-gradient(135deg, rgb(91, 60, 48) 0%, rgb(91, 60, 48) 62%, rgba(91, 60, 48, 0.75) 81%, rgba(91, 60, 48, 0.12) 100%);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 200;
    }

    ul.lang-block {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 23px;
        font-weight: 600;

        li:first-child {
            margin-right: 8px;
        }

        ;

        li:first-child:after {
            content: "·";
            margin-left: 4px;
        }

        ;
    }
}

body.mainmenuOpen {
    height: 100vh;
    overflow: hidden;
}

body.home {
    .header-container {
        padding-top: 0;
    }
}

.header.home {
    position: relative;
    min-height: 100vh;
    color: var(--white);
    background-size: cover;
    background-position: center;

    a {
        color: var(--white);
    }

    .wrap {
        padding: 75px;
    }

    .top {
        display: flex;
        flex: 0 0 100%;
        justify-content: space-between;
        align-items: center;
    }

    .middle {
        flex: 0 0 100%;
        position: absolute;
        width: 100%;
        text-align: center;
        left: 0;
        top: 50%;
        transform: translateY(-50%);

        img {
            max-width: calc(100% - 150px);
        }
    }

    .bottom {
        position: absolute;
        bottom: 65px;
        font-size: 23px;
        font-weight: 600;
    }
}

.section>h4,
.section .wrap>h4 {
    font-size: 23px;
    text-transform: uppercase;
    text-align: center;
}

.section>h2,
.section .wrap>h2 {
    font-size: 80px;
    text-align: center;
}

a.button {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--font-color);
    border-radius: 15px;
    font-size: 22px;
    font-weight: 600;
}

.linkboxes {
    display: flex;

    .linkbox {
        flex: 1;
        position: relative;
    }

    .box {
        height: 800px;
        background-size: cover;
        background-position: center;
    }

    h2 {
        font-size: 50px;
        text-align: center;
        font-weight: normal;
        line-height: 115%;
        margin-top: 0;
        padding: 80px 20px 0;
        color: var(--white);
    }

    .link {
        position: absolute;
        bottom: 80px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 0 20px;

        a {
            color: var(--white);
            border-color: var(--white);
        }
    }
}

.footer-container {
    background: var(--background-color);

    .top {
        max-width: 1500px;
        margin: 0 auto;
        padding-top: 250px;
        padding: 250px 40px 75px;
        text-align: center;

        h2 {
            flex: 0 0 100%;
            font-size: 80px;
            font-weight: normal;
            line-height: 115%;
            margin-top: 0;
        }

        .contactData {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;

            a {
                text-decoration: underline;
            }

            .email,
            .claim,
            .phone {
                font-size: 22px;
            }

            .value {
                font-weight: 600;
            }

            .claim {
                flex: 1;
                padding: 0 40px;
            }
        }

        /* .contactData */

        .logoFooter {
            padding-top: 75px;

            img {
                width: 100%;
                height: auto;
            }
        }

        /* .logoFooter */
    }

    /* .top */

    .bottom {
        padding-bottom: 70px;

        ul.mod-menu {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 120px;

            li {
                font-size: 22px;
                font-weight: 600;
            }

            a {
                text-decoration: underline;
            }
        }
    }

    /* .bottom */
}

/* .footer-container */

.content.home {
    .section.intro {
        background: var(--background-color);
        padding-top: 200px;

        h4 {
            margin-top: 0;
            margin-bottom: 0;
        }

        h2 {
            margin-top: 0;
            padding-top: 60px;
            line-height: normal;
            font-weight: normal;
        }

        .wrap {
            position: relative;
            max-width: 1300px;
            padding: 0 20px;
            margin: 0 auto;
        }

        .link {
            position: relative;
            padding-top: 50px;
            text-align: center;
            z-index: 20;
        }

        .huhn {
            margin-top: -50px;
            position: relative;
            text-align: right;
            z-index: 10;
        }
    }

    /* .section.intro */

    .section.wine {
        background: var(--background-color);

        .banner {
            position: relative;
            background-size: cover;
        }

        .banner:after {
            content: "";
            display: block;
            padding-top: 55%;
        }

        .row.lifted {
            max-width: 1400px;
            padding: 0 20px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            transform: translateY(-100px);

            .left.slides {
                flex: 0 0 540px;
            }

            .right.text {
                flex: 0 0 560px;
                align-content: center;

                h2 {
                    font-family: 'Poppins', sans-serif;
                    font-size: 35px;
                    font-weight: normal;
                    line-height: 115%;
                    padding-bottom: 20px;
                }

                p {
                    font-size: 22px;
                    line-height: 145%;
                }

                .link.winelink {
                    margin-top: 40px;

                    a {
                        display: inline-flex;
                        align-items: center;
                        gap: 10px;
                        font-size: 22px;
                        font-weight: 600;
                        text-transform: uppercase;

                        img {
                            width: 24px;
                            height: auto;
                            transform: rotate(45deg);
                        }
                    }
                }
            }
        }
    }

    /* .section.wine */

    .divider.logoband {
        height: 55px;
        padding: 100px 0;
        background-color: var(--background-color);
        background-image: url('../images/logo_compact_white.png');
        background-repeat: repeat-x;
        background-size: 350px auto;
        background-position: center;
    }

    /* .divider.logoband */

    .section.family {
        background-color: var(--background-color);

        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 100px 40px 200px;
            align-items: center;
        }

        .text {
            display: flex;
            position: relative;
            z-index: 15;
            flex-wrap: wrap;
            align-items: center;
            align-content: center;
            width: 400px;
            height: 560px;
            padding: 20px;
            box-sizing: border-box;
            text-align: center;
            color: var(--special-color);
            border: 2px solid var(--special-color);
            border-top-left-radius: 200px;
            border-top-right-radius: 200px;
            border-bottom-left-radius: 200px;
            border-bottom-right-radius: 200px;

            h2,
            div {
                flex: 0 0 100%;
            }

            h2 {
                margin-top: 0;
                color: var(--special-color);
                font-size: 40px;
                font-weight: normal;
                line-height: 115%;
            }

            .link {
                font-size: 22px;
                text-transform: uppercase;
                font-weight: 600;

                a {
                    display: flex;
                    width: fit-content;
                    margin: 0 auto;
                    color: var(--special-color);
                }

                img {
                    width: 22px;
                    margin-left: 10px;
                    height: auto;
                    transform: rotate(45deg);
                }
            }
        }

        /* .text */

        .image {
            flex: 1;
            transform: translateX(-40px);
            z-index: 12;
            position: relative;
            padding-right: 40px;
        }

        /* .image */
    }

    /* .section.family */

    .section.philosophy {
        height: 900px;
        background-size: cover;
        background-position: center;
        color: var(--white);

        .wrap {
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            max-width: 1400px;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            padding: 40px 40px;
            margin: 0 auto
        }

        h4 {
            margin-top: 0;
            margin-bottom: 0;
            flex: 0 0 100%;
            font-size: 22px;
            text-transform: uppercase;
        }

        h2 {
            flex: 0 0 100%;
            font-size: 80px;
            font-weight: normal;
            line-height: 115%;
            color: var(--white);
        }
    }

    /* .section.philosophy */

    .section.lagen {
        background: var(--brown);
        color: var(--white);

        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 100px 40px 200px;
            align-items: center;
        }

        .left.text {
            flex: 0 0 560px;
            align-content: center;
        }

        .right.slides {
            flex: 0 0 540px;
        }

        h2 {
            margin-top: 0;
            font-family: 'Poppins', sans-serif;
            font-size: 35px;
            font-weight: normal;
            line-height: 115%;
            padding-bottom: 20px;
            color: var(--white);
        }

        p {
            font-size: 22px;
            line-height: 145%;
        }

        .link.lagenlink {
            margin-top: 40px;

            a {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-size: 22px;
                font-weight: 600;
                text-transform: uppercase;
                color: var(--white);

                img {
                    width: 24px;
                    height: auto;
                    transform: rotate(45deg);
                }
            }
        }

        .huhn {
            text-align: right;

            img {
                transform: translateX(50px) translateY(50px);
            }
        }

        .right.slides {
            transform: translateY(-200px);
        }
    }

    /* .section.lagen */
}

/* .content.home */

body.familie {
    background: var(--background-color);

    .subheader {
        padding: 100px 0 0;

        h1 {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 0 40px;
            font-size: 100px;
            font-weight: normal;
            line-height: 115%;
        }

        .banner {
            padding-top: 100px;
            line-height: 0;

            img {
                width: 100%;
            }
        }
    }
}

/* body.familie */

.content.familie {
    .section.intro {
        background: var(--white);
        padding-top: 115px;

        h2 {
            font-size: 60px;
            font-weight: normal;
        }

        p {
            font-size: 22px;
        }

        .wrap {
            box-sizing: border-box;
            width: 100%;
            max-width: 1480px;
            padding: 0 40px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .left {
            flex: 1;
            padding-top: 65px;
            padding-right: 40px;
        }

        .right.image {
            flex: 0 1 540px;
            line-height: 0;
            transform: translateY(80px);
        }
    }

    /* .section.intro */

    .section.wine {
        background: var(--background-color);
        padding-top: 300px;
        padding-bottom: 20px;

        .wrap {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
        }

        h4 {
            font-weight: 600;
            margin-bottom: 60px;
        }

        h2 {
            padding: 0 50px;
            font-size: 80px;
            font-weight: normal;
            line-height: 115%;
        }

        .readmore {
            padding-top: 60px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .huhn {
            position: relative;
            z-index: 5;
            transform: translateY(-100px);
        }
    }

    /* .section.wine */

    .section.vision,
    .section.mission {
        background: var(--brown);
        color: var(--white);
        font-size: 22px;

        h2 {
            font-size: 60px;
            line-height: 115%;
            color: var(--white);
        }

        .wrap {
            display: flex;
            flex-wrap: wrap;
        }

        .left,
        .right {
            flex: 0 0 50%;
        }

        .text {
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            padding: 40px 120px;
            box-sizing: border-box;
            font-weight: 300;

            h2,
            p {
                flex: 0 0 100%;
            }
        }

        .image {
            line-height: 0;
        }
    }

    /* .section.vision, .section.mission */

    .section.mission {
        margin-bottom: 200px;
    }
}

/* .content.familie */


body.weinhof {
    .subheader {
        padding-top: 1040px;

        h1 {
            font-size: 250px;
            color: white;
            position: absolute;
            font-weight: normal;
            z-index: 100;
        }

        h1.title_part1 {
            top: 237px;
            left: 75px;
        }

        h1.title_part2 {
            top: 700px;
            right: 75px;
        }

        .center_image {
            top: 250px;
            width: 540px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .badge {
            position: absolute;
            top: 350px;
            left: calc(50% + 210px);
            font-size: 35px;
            color: var(--font-color);
            line-height: 105%;
            padding: 20px 65px;
            border: 2px var(--font-color) solid;
            border-radius: 50%;

            h3 {
                font-weight: normal;
                margin: 0;
            }
        }
    }
}

/* body.weinhof */

.content.weinhof {
    .section.history {
        padding-bottom: 200px;
        background: var(--background-color);

        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            /*display: flex;*/
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .left.slider {
            flex: 0 1 540px;
        }

        .right.text {
            flex: 0 1 540px;
            padding-right: 40px;
            font-size: 22px;

            h2 {
                font-family: 'Poppins', sans-serif;
                font-size: 35px;
                font-weight: normal;
                line-height: 115%;
            }
        }

        .full.slider {
            section.splide {
                display: flex;
                flex-wrap: wrap;
            }

            .splide__track {
                flex: 0 0 100%;
                order: 1;
            }

            .splide__arrows {
                display: flex;
                order: 2;
                padding-top: 50px;

                .splide__arrow {
                    position: static;
                    margin-right: 10px;
                    background-color: transparent;
                    background-repeat: no-repeat;
                    background-size: 24px;

                    svg {
                        display: none;
                    }
                }

                .splide__arrow--prev {
                    margin-right: 25px;
                    background-image: url('../images/arrow_left.svg');
                }

                .splide__arrow--next {
                    background-image: url('../images/arrow_right.svg')
                }
            }

            .slide {
                .box {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    align-items: center;
                }

                .image {
                    flex: 0 0 540px;
                }

                .description {
                    flex: 0 1 540px;
                    padding-right: 40px;
                    font-size: 22px;

                    h2 {
                        font-family: 'Poppins', sans-serif;
                        font-size: 35px;
                        font-weight: normal;
                        line-height: 115%;
                    }
                }
            }

            .splide__pagination {
                display: none;
            }
        }
    }

    /* .section.history */

    .section.cellar {
        background: var(--brown);
        color: white;

        .banner img {
            width: 100%;
        }

        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 110px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .right.image {
            flex: 0 1 540px;
            transform: translateY(110px);
        }

        .left.text {
            flex: 0 1 540px;
            font-size: 22px;

            h2 {
                font-size: 60px;
                color: var(--white);
            }
        }
    }

    /* .section.cellar */

    .section.weinhof {
        padding-top: 250px;
        background: var(--background-color);

        h4 {
            font-size: 22px;
            text-transform: uppercase;
            padding: 0 40px 65px;
            margin: 0;
            color: var(--font-color);
            font-weight: 600;
        }

        h2 {
            line-height: 115%;
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .banner {
            height: 1000px;
            background-size: cover;
            background-position: center;
        }

        .description {
            max-width: 1100px;
            margin: 0 auto;
            padding: 90px 40px 60px;
            color: var(--font-color);
            font-size: 22px;
            text-align: center;
        }

        .readmore {
            padding-bottom: 200px;
            text-align: center;
        }
    }

    /* .section.weinhof */

    .section.nachhaltig,
    .section.produkte {
        display: flex;
        flex-wrap: wrap;
        font-size: 22px;
        background: var(--white);

        .left,
        .right {
            box-sizing: border-box;
            flex: 0 0 50%;
            color: var(--font-color);
        }

        h2 {
            box-sizing: border-box;
            flex: 0 0 100%;
            font-size: 60px;
            font-weight: normal;
            margin: 0;
            padding-bottom: 20px;
            line-height: 115%;
        }

        p {
            box-sizing: border-box;
            flex: 0 0 100%;
        }

        .text {
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            padding: 40px 120px;
            flex: 0 0 50%;
        }

        .img {
            background-size: cover;
        }

        .img::after {
            content: "";
            display: block;
            padding-top: 100%;
        }

        .readmore {
            padding-top: 25px;
        }
    }

    /* .section.produkte, .section.nachhaltig */
}

/* .content.weinhof */


body.wines,
body.leben {
    .subheader {
        height: 850px;

        h1 {
            font-size: 100px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 110px 40px 40px;
            line-height: 100%;
            font-weight: normal;
        }
    }
}

/* body.wines, body.leben */


.content.wines,
.content.leben {
    .section.intro {
        margin-top: -400px;

        .wrap {
            padding: 0 40px;
        }

        .slider {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        .description {
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
            padding-top: 100px;
            font-size: 22px;
            text-align: center;
        }

        .buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            padding-top: 50px;
        }
    }

    /* .section.intro */
}

/* .content.wines, .content.leben */

.content.wines {
    .section.wines {
        padding-top: 150px;
        padding-bottom: 150px;

        h2 {
            font-size: 12vw;
            color: var(--brown);
            text-align: center;
            padding: 0 40px;
            font-weight: normal;
            line-height: normal;
        }

        .list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 0 40px;

            .item {
                padding-bottom: 40px;
            }

            .image {
                padding: 120px 200px;
                background-color: var(--background-color-sheer);
                border-top-left-radius: 500px;
                border-top-right-radius: 500px;
                border-bottom-left-radius: 500px;
                border-bottom-right-radius: 500px;
            }

            .image img {
                height: 600px;
            }

            .text {
                padding-top: 50px;

                h3 {
                    font-size: 60px;
                    text-align: center;
                    font-weight: normal;
                    font-family: 'Novela', serif;
                    line-height: 115%;
                }
            }

            .buttons {
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                justify-content: center;

                a.button {
                    display: flex;

                    img {
                        margin-left: 20px;
                        transform: rotate(90deg);
                    }
                }
            }
        }
    }

    /* .section.wines */
}

/* .content.wines */


.content.wine {
    background: var(--background-color);

    .section.product {
        font-size: 22px;

        h1 {
            font-size: 60px;
        }

        .wrap {
            display: flex;
            flex-wrap: wrap;
            max-width: 1350px;
            margin: 0 auto;
            padding: 125px 40px 200px;
        }

        .left.image {
            flex: 0 0 544px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 400px;

            .img {
                text-align: center;
            }

            img {
                flex: 0 0 200px;
                width: 200px;
                padding: 96px 0;
            }
        }

        .right.data {
            flex: 1;
            padding-left: 75px;
        }

        .datasheet {
            display: flex;
            flex-wrap: wrap;

            h4,
            p {
                margin: 0;
            }

            h4 {
                font-weight: 500;
            }

            div {
                flex: 0 0 33.3333%;
                box-sizing: border-box;
                padding: 15px 20px 15px 0;
            }
        }

        .weinbrief {
            padding-top: 60px;

            a.button {
                padding: 15px 25px;
            }

            img {
                transform: rotate(90deg) translateX(4px);
                margin-left: 20px;
            }
        }
    }

    .banner {
        img {
            width: 100%;
        }
    }

    .more_wines {
        padding: 100px 40px;

        h2 {
            text-align: center;
            font-size: 80px;
            font-weight: normal;
            margin: 0;
            padding-bottom: 50px;
        }

        .list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .wine.box {
            position: relative;
            width: 540px;
            padding: 95px 0;
            margin: 40px 10px;
            border-radius: 400px;
            overflow: hidden;
            z-index: 20;
            background: rgba(255, 255, 255, 0.4);

            .image {
                text-align: center;

                img {
                    width: 200px;
                    height: auto;
                }
            }

            .overlay {
                position: absolute;
                z-index: 30;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-content: center;
                text-align: center;
                background: rgba(255, 255, 255, 0.8);
                transition: all 0.6s;
                opacity: 0;

                .title,
                .readmore {
                    flex: 0 0 100%;
                    box-sizing: border-box;
                    padding: 10px 20px;
                }

                h3 {
                    margin-bottom: 25px;
                    font-family: 'Novela', serif;
                    font-weight: normal;
                    font-size: 45px;
                    color: #000000;
                }
            }
        }

        /* .wine.box */

        .wine.box:hover {
            .overlay {
                opacity: 1;
            }
        }
    }

    /* .more_wines */
}

/* .content.wine */


.content.leben {
    .section.tiere {
        .wrap {
            padding: 150px 40px;
        }

        h3 {
            text-align: center;
            font-size: 23px;
            font-weight: bold;
        }

        .list {
            display: flex;
            flex-wrap: wrap;
            max-width: 1500px;
            margin: 0 auto;
            padding-top: 60px;
            justify-content: space-between;

            h2 {
                margin-bottom: 0;
                font-size: 50px;
                color: var(--brown);
                text-align: center;
            }

            h3 {
                margin-bottom: 10px;
                font-size: 35px;
                color: var(--brown);
                font-weight: 400;
                text-align: center;
            }

            .image {
                height: 380px;
            }
        }
    }

    /* .section.tiere */

    .section.garten {
        background: var(--background-color-sheer);
    }

    /* .section.garten */
}

/* .content.leben */


.content.leben .section.garten,
.content.besuch .section.intro_contact {
    .wrap {
        box-sizing: border-box;
        padding: 180px 40px;
        max-width: 1480px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .left.slides {
        img {
            width: 540px;
            height: auto;
        }
    }

    .right {
        display: flex;
        flex-wrap: wrap;
        flex: 1;
        align-content: center;
        padding-left: 250px;

        * {
            flex: 0 0 100%;
        }

        h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 35px;
            font-weight: normal;
            line-height: 120%;
        }

        p {
            font-size: 22px;
        }

        .readmore {
            padding-top: 30px;
            font-size: 22px;
            font-weight: 600;
            text-transform: uppercase;

            img {
                margin-left: 13px;
                transform: rotate(45deg) translateY(4px);
                height: 25px;
            }
        }
    }
}


body.besuch {
    .subheader {
        max-width: 1400px;
        margin: 0 auto;
        padding: 110px 40px 0;

        h1 {
            font-size: 90px;
            font-weight: normal;
            line-height: normal;
            text-align: center;
        }

        p {
            max-width: 960px;
            margin: 0 auto;
            text-align: center;
            font-size: 23px;
        }

        .readmore {
            padding-top: 50px;
            text-align: center;

            a {
                display: inline-block;
                padding: 13px 25px;
                border: 2px #000 solid;
                color: #000000;
                border-radius: 15px;
                font-weight: 600;
                font-size: 22px;
            }
        }
    }

    .mod_socials {
        background: var(--background-color-sheer);
    }
}

/* body.besuch */

.content.besuch {
    .section.intro {
        .banner {
            line-height: 0;
        }

        img {
            width: 100%;
            height: auto;
        }
    }

    .section.intro_contact {
        background: var(--background-color-sheer);
    }

    .section.verkaufsstellen {
        .wrap {
            display: flex;
            flex-wrap: wrap;
        }

        .left,
        .right {
            flex: 0 0 50%;
            box-sizing: border-box;
        }

        .left {
            padding: 240px 120px;
            font-size: 22px;

            h2 {
                font-size: 60px;
            }

            .readmore {
                padding-top: 25px;
            }
        }

        .right {
            .img {
                position: relative;
                height: 100%;
                background-size: cover;
                background-position: center;
            }
        }
    }
}

/* .content.besuch */


.content.kontakt {
    .section.visitus {
        background: var(--background-color);
    }

    .wrap {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1480px;
        margin: 0 auto;
        padding: 120px 40px;
        box-sizing: border-box;

        .left {
            flex: 1;
            padding-right: 100px;

            h1 {
                font-size: 80px;
                font-weight: normal;
                line-height: 110%;
            }

            .bottom {
                padding-top: 100px;
                color: #000;

                p {
                    font-size: 34px;
                    line-height: 120%;
                }

                .readmore {
                    padding-top: 10px;
                }
            }
        }

        .right.image {
            flex: 0 0 540px;

            img {
                width: 100%;
                max-width: 540px;
                height: auto;
            }
        }
    }

    .mod_socials {
        background: var(--background-color);
    }

    .section.poi {
        padding: 50px 40px;
        background: var(--background-color);

        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            overflow: hidden;
            width: 100%;
            height: 900px;
            display: flex;
            background: white;
        }

        .left {
            flex: 0 0 500px;
            box-sizing: border-box;
            padding: 70px 75px 60px;

            h2 {
                font-size: 35px;
                font-weight: normal;
            }

            .list {
                button {
                    transition: opacity 0.3s;
                    background: transparent;
                }

                button[disabled] {
                    opacity: 0;
                    pointer-events: none;
                }
            }

            .splide__track {
                mask-image: linear-gradient(to bottom, black calc(100% - 150px), transparent 100%);
                -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 150px), transparent 100%);
            }

            .place {
                box-sizing: border-box;
                border: 2px #000 solid;
                padding: 25px 30px;
                border-radius: 15px;
                margin-bottom: 25px;
                font-size: 18px;

                h4,
                p {
                    margin: 0;
                }

                h4 {
                    font-weight: 600;
                    font-size: 23px;
                }
            }
        }

        .right {
            flex: 1;
        }

        #map {
            width: 100%;
            height: 900px;

            .leaflet-popup-content-wrapper {
                border-radius: 0;

                h4 {
                    margin-bottom: 8px;
                    font-size: 18px;
                }
            }
        }
    }
}

/* .content.kontakt */


.content.galerie {
    background: var(--background-color);

    h1 {
        font-size: 90px;
        font-weight: normal;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding: 100px 40px;
        line-height: 110%;
    }

    .list {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 40px;
        column-count: 3;
        column-gap: 20px;
    }

    .item {
        a {
            display: block;
            line-height: 0;
        }

        margin-bottom: 20px;
    }
}

/* .content.galerie */


.mod_socials {
    padding: 210px 40px;
    background: var(--background-color);
    color: var(--font-color);

    h2 {
        font-size: 80px;
        line-height: 100%;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        font-weight: normal;
    }

    .socialLinks {
        display: flex;
        justify-content: center;
        gap: 50px;
        padding-top: 50px;
        text-align: center;
    }
}


@media(max-width: 1500px) {
    .linkboxes {
        flex-wrap: wrap;
    }

    body.home {
        .linkboxes {
            .linkbox {
                flex: 0 0 50%;
            }
        }
    }

    .content.familie {

        .section.vision,
        .section.mission {
            font-size: 18px;

            .text {
                padding: 40px 80px;

                h2 {
                    font-size: 40px;
                }
            }
        }
    }

    .content.weinhof {
        .section.cellar {
            .wrap {
                padding: 40px;
            }

            .right.image {
                transform: none;
            }
        }

        .section.nachhaltig,
        .section.produkte {
            .text {
                padding: 40px;

                h2 {
                    padding-bottom: 10px;
                    font-size: 36px;
                }

                p {
                    font-size: 18px;
                }

                a.button {
                    font-size: 18px;
                }
            }
        }
    }

    .content.wine {
        .section.product {
            .datasheet {
                div {
                    flex: 0 0 50%;
                }
            }
        }

        .more_wines {
            h2 {
                padding-bottom: 20px;
                font-size: 60px;
            }

            .wine.box {
                width: 400px;

                .image {
                    img {
                        width: 150px;
                    }
                }
            }
        }
    }

    .content.leben .section.garten,
    .content.besuch .section.intro_contact {
        .right {
            padding-left: 80px;
        }
    }

    body.besuch {
        .subheader {
            h1 {
                font-size: 60px;
            }

            p {
                font-size: 22px;
            }
        }
    }

    .content.besuch {
        .section.verkaufsstellen {
            .left.text {
                padding: 100px 40px;

                h2 {
                    font-size: 40px;
                    line-height: normal;
                }
            }
        }
    }

    .content.kontakt {
        .wrap {
            .left {
                h1 {
                    font-size: 60px;
                }

                .bottom {
                    padding-top: 50px;

                    p {
                        font-size: 28px;
                        line-height: 130%;
                    }
                }
            }
        }

        .section.visitus {}
    }
}


@media(max-width: 1240px) {
    .content.home {
        .section.wine {
            .row.lifted {
                transform: translateY(-50px);

                .left.slides {
                    flex: 0 0 440px;
                }

                .right.text {
                    flex: 1;
                    padding-left: 40px;

                    h2 {
                        font-size: 30px;
                    }

                    p {
                        font-size: 18px;
                    }
                }
            }
        }

        .divider.logoband {
            padding: 50px 0;
        }

        .section.philosophy {
            h2 {
                font-size: 60px;
            }
        }

        .section.lagen {
            h2 {
                font-size: 32px;
            }

            p {
                font-size: 18px;
            }

            .text.left {
                flex: 1;
                padding-right: 40px;
            }

            .right.slides {
                flex: 0 0 440px;
            }
        }
    }

    body.familie {
        .subheader {
            h1 {
                font-size: 60px;
            }
        }
    }

    .content.familie {
        .section.intro {
            padding-top: 40px;

            h2 {
                font-size: 40px;
            }

            p {
                font-size: 18px;
            }

            .right.image {
                flex: 0 1 440px;
            }
        }

        .section.wine {
            padding-top: 150px;

            h4 {
                margin-bottom: 20px;
            }

            h2 {
                font-size: 60px;
            }
        }

        .section.vision,
        .section.mission {
            .text {
                padding: 40px;

                h2 {
                    font-size: 32px;
                }
            }
        }
    }

    .linkboxes {
        h2 {
            font-size: 40px;
        }
    }

    body.weinhof {
        .subheader {
            display: flex;
            flex-wrap: wrap;
            padding-top: 80px;

            h1 {
                position: static;
                order: 2;
                font-size: 100px;
                flex: 0 0 100%;
                text-align: center;
                line-height: normal;
                margin: 0;
                transform: translateY(-250px);
            }

            h1.title_part2 {
                order: 3;
            }

            .center_image {
                position: static;
                order: 1;
                flex: 0 0 100%;
                transform: none;
                text-align: center;
            }
        }
    }

    .content.weinhof {
        .section.history {
            .wrap {
                padding: 40px;
            }

            .left.slider {
                flex: 0 0 440px;
            }

            .right.text {
                flex: 1;
                padding-left: 40px;
            }

            .full.slider {
                .slide {
                    .description {
                        flex: 0 0 100%;
                        padding-top: 40px;
                        padding-right: 0;
                    }
                }
            }
        }

        .section.cellar {
            .left.text {
                flex: 1;
                padding-right: 40px;

                h2 {
                    font-size: 40px;
                }

                p {
                    font-size: 18px;
                }
            }
        }

        .section.weinhof {
            padding-top: 120px;

            h4 {
                padding-bottom: 10px;
            }

            h2 {
                font-size: 60px;
            }
        }
    }

    body.wines,
    body.leben {
        .subheader {
            height: auto;
            padding-bottom: 150px;

            h1 {
                font-size: 7.5vw;
            }
        }
    }

    .content.wines,
    .content.leben {
        .section.intro {
            margin-top: -120px;

            .description {
                padding-top: 60px;
            }
        }
    }

    .content.wine {
        .section.product {
            font-size: 18px;

            h1 {
                font-size: 40px;
                line-height: normal;
            }

            .left.image {
                flex: 0 0 440px;
            }

            .weinbrief a.button {
                font-size: 18px;
            }
        }
    }

    .content.leben .section.garten,
    .content.besuch .section.intro_contact {
        .right {
            padding-left: 40px;
        }

        .left.slides {
            img {
                width: 100%;
                max-width: 400px;
            }
        }
    }

    .content.leben {
        .section.tiere {
            .list {
                display: block;
                text-align: center;

                .item {
                    padding-bottom: 80px;
                }

                .image {
                    height: auto;
                }

                .text {
                    padding-top: 15px;
                }
            }
        }
    }

    .content.kontakt {
        .wrap {
            .left .bottom {
                padding-top: 20px;

                p {
                    font-size: 24px;
                }
            }

            .right.image {
                flex: 0 0 440px;
            }
        }

        .section.poi {
            .left {
                flex: 0 0 400px;
                padding: 40px;

                .place {
                    h4 {
                        font-size: 22px;
                    }

                    p {
                        font-size: 18px;
                    }
                }
            }
        }
    }

    .content.galerie {
        h1 {
            font-size: 60px;
        }
    }
}


@media(max-width: 1024px) {
    a.button {
        font-size: 18px;
    }

    .header-container {
        padding-top: 40px;
    }

    .header {
        .mainmenu.open {
            top: 40px;
            height: calc(100vh - 40px);
        }
    }

    body.home {
        .header.home {
            .wrap {
                padding: 40px;
            }

            .bottom {
                left: 0;
                bottom: 40px;
                width: 100%;
                box-sizing: border-box;
                padding: 0 40px;
            }
        }

        /* .header.home */
    }

    /* body.home */

    .content.home {
        .section.wine {
            .row.lifted {
                .left.slides {
                    flex: 0 0 360px;
                }

                .right.text {
                    h2 {
                        font-size: 26px;
                    }

                    p {
                        font-size: 18px;
                    }

                    .link.winelink {
                        a {
                            font-size: 18px;

                            img {
                                width: 18px;
                            }
                        }
                    }
                }
            }
        }

        .divider.logoband {
            padding: 50px 0;
        }

        .section.family {
            .wrap {
                padding: 50px 40px 20px;
            }

            .text {
                margin: 0 auto;
                order: 2;
                transform: translateY(-110px);
            }

            .image {
                padding-right: 0;
                transform: none;
                flex: 0 0 100%;
                order: 1;
            }
        }

        .section.lagen {
            h2 {
                font-size: 28px;
            }

            .right.slides {
                flex: 0 0 380px;
            }
        }
    }

    .content.weinhof {
        .section.history {
            .full.slider {
                .slide {
                    .description {
                        h2 {
                            font-size: 24px;
                        }

                        p {
                            font-size: 18px;
                        }
                    }
                }
            }
        }

        .section.cellar {
            .right.image {
                flex: 0 1 400px;
            }
        }
    }

    .content.wine {
        .section.product {
            .wrap {
                justify-content: center;
            }

            .right.data {
                padding-left: 0;
                flex: 0 0 100%;
                padding-top: 80px;
            }
        }

        .more_wines {
            .wine.box {
                .overlay {
                    h3 {
                        font-size: 32px;
                    }
                }
            }
        }
    }

    .section>h2,
    .section .wrap>h2 {
        font-size: 60px;
    }

    .linkboxes {
        h2 {
            font-size: 40px;
        }
    }

    .footer-container {
        .top {
            padding-top: 70px;

            h2 {
                font-size: 50px;
            }

            .contactData {
                display: block;

                .email,
                .claim,
                .phone {
                    font-size: 18px;
                    padding-bottom: 15px;
                }
            }
        }

        .bottom {
            ul.mod-menu {
                flex-wrap: wrap;
                justify-content: left;
                padding: 0 20px;
                gap: 20px;
                column-gap: 50px;
            }
        }
    }

    .content.familie,
    .content.weinhof {

        .section.vision,
        .section.mission,
        .section.nachhaltig,
        .section.produkte {

            .image,
            .text {
                flex: 0 0 100%;
            }

            .image {
                order: 1;
                box-sizing: border-box;
                padding: 40px;
                text-align: center;

                img,
                .img {
                    width: 100%;
                    max-width: 500px;
                    margin: 0 auto;
                }
            }

            .text {
                order: 2;
            }
        }
    }

    .linkboxes {
        .linkbox {
            .box {
                height: 600px;
            }
        }
    }

    .content.weinhof {
        .section.history {
            .right.text {
                font-size: 18px;

                h2 {
                    font-size: 28px;
                }
            }
        }
    }

    .content.wines,
    .content.leben {
        .section.intro {
            .description {
                font-size: 18px;
            }
        }
    }

    .content.leben .section.garten,
    .content.besuch .section.intro_contact {
        .right {
            h2 {
                font-size: 32px;
            }

            p {
                font-size: 18px;
            }
        }
    }

    .content.besuch {
        .section.verkaufsstellen {
            .wrap {
                padding: 40px;
                justify-content: center;
            }

            .left.text {
                order: 2;
                flex: 0 0 100%;
                padding: 40px 0;
            }

            .right.image {
                flex: 0 0 100%;
                max-width: 440px;

                .img::after {
                    display: block;
                    content: "";
                    padding-top: 120%;
                }
            }
        }
    }

    .content.kontakt {
        .wrap {
            .left {
                padding-top: 80px;
                padding-right: 40px;

                h1 {
                    font-size: 40px;
                }

                .bottom {
                    p {
                        font-size: 22px;
                    }
                }
            }
        }
    }

    .mod_socials {
        h2 {
            font-size: 60px;
        }
    }
}

/* 1024px */


@media(max-width: 960px) {
    .linkboxes,
    body.home .linkboxes {
        .linkbox {
            flex: 0 0 100%;

            .box {
                height: 600px;
            }
        }
    }

    .content.familie {
        .section.intro {
            .left.text {
                order: 2;
                padding-right: 0;
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .right.image {
                order: 1;
                flex: 0 0 100%;
                text-align: center;
                transform: none;

                img {
                    max-width: 500px;
                    width: 100%;
                }
            }
        }
    }

    body.weinhof {
        .subheader {
            h1 {
                transform: translateY(-350px);
            }

            .center_image {
                box-sizing: border-box;
                padding: 0 20px;
            }

            .badge {
                left: auto;
                right: 20px;
            }
        }
    }

    .content.weinhof {
        .section.history {
            padding-bottom: 80px;

            .left.slider,
            .right.text {
                flex: 0 0 100%;
                box-sizing: border-box;
            }

            .left.slider {
                .slides {
                    max-width: 500px;
                    width: 100%;
                    margin: 0 auto;
                }
            }

            .right.text {
                padding-top: 40px;
            }
        }

        .section.cellar {
            .left.text {
                order: 2;
                padding-top: 40px;
                flex: 0 0 100%;
            }

            .right.image {
                order: 1;
                text-align: center;
                flex: 0 0 100%;

                img {
                    max-width: 500px;
                }
            }
        }

        .section.weinhof {
            h4 {
                font-size: 20px;
            }

            h2 {
                font-size: 40px;
            }

            .banner {
                height: 560px;
            }
        }
    }

    .content.leben .section.garten,
    .content.besuch .section.intro_contact {
        .wrap {
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .left.slides {
            flex: 0 0 100%;

            .list {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        .right {
            flex: 0 0 100%;
            padding-top: 40px;
            padding-left: 0;
        }
    }

    .content.kontakt {
        .wrap {
            justify-content: center;

            .left {
                flex: 0 0 100%;
                box-sizing: border-box;
                padding-right: 0;
                order: 2;
            }

            .right.image {
                order: 1;
            }
        }

        .section.poi {
            .wrap {
                height: auto;
            }

            .left {
                flex: 0 0 100%;
            }

            .right {
                flex: 0 0 100%;
                height: 400px;

                #map {
                    height: 400px;
                }
            }
        }
    }
}

/* 960px */


@media(max-width: 800px) {
    .content.home {
        .section.wine {
            .row.lifted {
                transform: translateY(-140px);
                justify-content: center;

                .left.slides {
                    flex: 0 1 500px;
                }

                .right.text {
                    flex: 0 0 calc(100% - 80px);
                    padding-top: 40px;
                    padding-left: 0;
                }
            }
        }

        .section.family {
            .text h2 {
                font-size: 32px;
            }
        }

        .section.philosophy {
            height: 600px;

            h2 {
                font-size: 40px;
            }
        }

        .section.lagen {
            .wrap {
                padding-top: 80px;
            }

            .text.left {
                padding-right: 0;
                flex: 0 0 100%;
                order: 2;
            }

            .right.slides {
                margin: 0 auto;
                transform: none;
                flex: 0 0 440px;
                padding-bottom: 40px;
                order: 1;
            }

            .huhn {
                padding-top: 30px;

                img {
                    transform: none;
                }
            }
        }
    }

    .content.familie {
        .section.wine {
            padding-top: 80px;

            h4 {
                font-size: 20px;
            }

            h2 {
                font-size: 40px;
            }

            .huhn {
                transform: none;
                padding-top: 20px;
            }
        }
    }

    body.weinhof {
        .subheader {
            h1 {
                font-size: 70px;
                transform: translateY(-250px);
            }

            .badge {
                top: 240px;
                font-size: 28px;
            }
        }
    }

    .content.galerie {
        h1 {
            font-size: 7vw;
            padding: 80px 40px 40px;
        }
    }
}


@media(max-width: 720px) {
    a.button {
        font-size: 18px;
    }

    .header {
        .wrap {
            padding: 0 40px;
        }

        .mainmenu.open {
            ul.mod-menu {
                font-size: 48px;
            }
        }
    }

    .section>h2,
    .section .wrap>h2 {
        font-size: 40px;
    }

    .content.home {
        .section.intro {
            h2 {
                padding-top: 30px;
            }

            .huhn {
                margin-top: 20px;
            }
        }

        .section.family {
            .text {
                width: 350px;
                height: 440px;
            }
        }
    }

    .content.wines,
    .content.leben {
        .section.intro {
            .wrap {
                padding: 0 20px;
            }
        }
    }

    .content.weinhof {
        .section.weinhof {
            .description {
                font-size: 18px;
            }
        }
        
        .section.history {
            .wrap {
                padding: 0 20px;
            }
        }

        .section.cellar {
            .wrap {
                padding: 40px 20px;
            }
        }
    }

    .content.wines {
        .section.wines {
            .list {
                padding: 0 20px;

                .item {
                    padding-bottom: 40px;
                }

                .image {
                    padding: 80px 20px;
                    text-align: center;

                    img {
                        height: auto;
                        max-height: 600px;
                    }
                }

                .text {
                    padding-top: 30px;

                    h3 {
                        font-size: 40px;
                    }
                }
            }
        }
    }

    .content.wine {
        .section.product {
            .wrap {
                padding-left: 20px;
                padding-right: 20px;
            }

            .datasheet {
                div {
                    flex: 0 0 100%;
                    padding-right: 0;
                    padding-top: 10px;
                    padding-bottom: 10px;
                }
            }
        }

        .more_wines {
            h2 {
                font-size: 40px;
            }
        }
    }

    .content.leben .section.garten,
    .content.besuch .section.intro_contact {
        .wrap {
            padding: 40px 20px;
        }
    }

    .content.besuch {
        .section.verkaufsstellen {
            .wrap {
                padding: 40px 20px;
            }

            .left.text {
                h2 {
                    font-size: 32px;
                }

                p {
                    font-size: 18px;
                }
            }
        }
    }

    .content.kontakt {
        .wrap {
            padding: 80px 20px;

            .left {
                h1 {
                    font-size: 32px;
                }

                .bottom {
                    padding-top: 0;

                    p {
                        font-size: 18px;
                    }
                }
            }
        }

        .section.poi {
            padding: 40px 20px;
        }
    }

    .content.galerie {
        h1 {
            padding: 80px 20px 40px;
            font-size: 32px;
        }

        .list {
            padding: 0 20px;
        }
    }

    .mod_socials {
        h2 {
            font-size: 40px;
        }
    }
}

/* 720px */


@media(max-width: 640px) {
    .content.weinhof {
        .section.cellar {
            .right.image {
                img {
                    max-width: 100%;
                }
            }
        }

        .section.history {
            .full.slider {
                .slide {
                    .image {
                        flex: 0 0 100%;
                    }
                }

                .splide__arrows {
                    padding-top: 20px;
                }
            }
        }
    }
}


@media(max-width: 540px) {
    .header {
        .mainmenu.open {
            ul.mod-menu {
                font-size: 36px;
            }

            .secondaryMenu {
                padding-bottom: 70px;

                ul.mod-menu {
                    display: block;
                }

                li {
                    padding-bottom: 10px;
                }
            }
        }

        .wrap {
            flex-wrap: wrap;

            .left {
                order: 1;
            }

            .center {
                order: 3;
                flex: 0 0 100%;

                .logo {
                    flex: 0 0 100%;
                    text-align: center;
                    padding-top: 10px;
                }
            }

            .right {
                order: 2;
            }
        }
    }

    body.home {
        .header.home {
            .wrap {
                padding: 40px 20px;
            }

            .middle {
                img {
                    max-width: calc(100% - 40px);
                }
            }

            .bottom {
                padding: 0 20px;
                font-size: 18px;
            }
        }
    }

    .content.home {
        .section.intro {
            padding-top: 100px;
        }

        .section.family {
            .wrap {
                padding-left: 20px;
                padding-right: 20px;
            }

            .text {
                width: 290px;
                height: 430px;

                h2 {
                    font-size: 28px;
                }

                .link {
                    font-size: 18px;
                }
            }
        }

        .section.philosophy {
            h4 {
                padding-bottom: 10px;
                font-size: 18px;
            }

            h2 {
                font-size: 32px;
            }
        }

        .section.lagen {
            .wrap {
                padding-left: 20px;
                padding-right: 20px;
            }

            .right.slides {
                flex: 0 0 100%;
            }
        }
    }

    .content.familie {

        .section.intro,
        .section.wine {
            h2 {
                font-size: 32px;
            }

            .wrap {
                padding: 0 20px;
            }
        }

        .section.vision,
        .section.mission {

            .image,
            .text {
                padding: 20px;
            }
        }
    }

    body.weinhof {
        .subheader {
            h1 {
                font-size: 50px;
            }
        }
    }

    .content.leben {
        .section.tiere {
            .wrap {
                padding-bottom: 40px;
            }

            .list {
                h2 {
                    font-size: 32px;
                }

                h3 {
                    font-size: 24px;
                }
            }
        }
    }

    .mod_socials {
        padding: 120px 20px;

        a {
            display: inline-block;
            margin-bottom: 15px;
        }

        .socialLinks {
            display: block;
        }
    }

    .content.wine {
        .section.product {
            h1 {
                font-size: 32px;
            }

            .left.image {
                flex: 0 0 100%;
                max-width: 400px;
            }
        }
    }

    .content.galerie {
        .list {
            column-count: 2;
        }
    }
}

/* 540px */