@import url('https://fonts.verwaltungsportal.de/import/?family=Roboto:400,500,400i,500i%7CNeucha%7CSaira+Extra+Condensed:600,700');
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #333333;
    background: #ffffff;
    font-size: 1rem; /* 1rem = 16px */
    line-height: 1.5;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    body {
        font-size: 1.125rem;
    }
}

a {
    color: #810020;
}

a:hover {
    color: #810020;
}

#content a, b, strong {
    font-weight: 500;
}

/* ----------------------------------------------- logo ----------------------------------------------- */

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (max-width: 991px) {
    #logo img {
        max-width: 210px;
        width: 100%;
    }
}

/* --------------------------------------- navigation --------------------------------------- */

#menu {
    position: relative;
    z-index: 100;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
}

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu {
        padding-top: 50px;
        padding-bottom: 10px;
    }
    #burgerButton {
        font-size: 0;
        display: block;
        height: 40px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #810020;
    }
    #burgerButtonInner2, #burgerButton:after, #burgerButtonInner {
        background-color: #ffffff;
        border-radius: 2px;
        position: absolute;
        width: 30px;
        height: 3px;
        left: 50%;
        margin-left: -15px;
        -webkit-transition: transform 200ms linear, opacity 200ms linear;
        -moz-transition: transform 200ms linear, opacity 200ms linear;
        -ms-transition: transform 200ms linear, opacity 200ms linear;
        -o-transition: transform 200ms linear, opacity 200ms linear;
        transition: transform 200ms linear, opacity 200ms linear;
    }
    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        -webkit-transform: rotate(-45deg) translate(-6px, 6px);
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    #burgerButton[aria-expanded="true"] #burgerButtonInner2 {
        opacity: 0;
    }
    #burgerButton[aria-expanded="true"]:after {
        -webkit-transform: rotate(45deg) translate(-4px, -6px);
        transform: rotate(45deg) translate(-4px, -6px);
    }
    #burgerButtonInner {
        top: 11px;
    }
    #burgerButtonInner2 {
        top: 19px;
    }
    #burgerButton:after {
        top: 27px;
        content: "";
        display: block;
    }
    .navbar-nav {
        margin: 20px 0;
    }
    .navbar-collapse {
        top: 40px;
        background: #ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }
    .navbar-collapse[aria-expanded="true"],
    .navbar-collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }
    .navbar-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 101;
    }
    .navbar-toggle::before {
        content: "";
        opacity: 0;
        position: fixed;
        top: 40px;
        right: 0;
        bottom: 0;
        width: 0;
        z-index: -1;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: width 300ms linear, opacity 300ms linear;
        -moz-transition: width 300ms linear, opacity 300ms linear;
        -ms-transition: width 300ms linear, opacity 300ms linear;
        -o-transition: width 300ms linear, opacity 300ms linear;
        transition: width 300ms linear, opacity 300ms linear;
    }
    .navbar-toggle[aria-expanded="true"]::before {
        opacity: 1;
        width: 90px;
    }
    .dropdown-toggle-button-wrapper, .dropdown-toggle-button-wrapper2 {
        right: 2px;
    }
    .dropdown-toggle-button-wrapper {
        top: 16px;
    }
    .dropdown-toggle-button-wrapper2 {
        top: 4px;
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .navbar-collapse {
        width: 60%;
    }
    .navbar-collapse.collapse.in:after,
    .navbar-toggle[aria-expanded="true"]::before {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    #menu > .row {
        width: 100%;
        max-width: 1820px;
    }
    nav.horizontally .navbar-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    nav.horizontally > .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    nav.horizontally .navbar-nav>li>.dropdown-menu {
        display: flex !important;
        flex-wrap: wrap;
        pointer-events: none;
        position: absolute;
        opacity: 0;
        top: 150%;
        left: calc(-15px + -15%);
        right: calc(-15px + 15%);
        z-index: 1000;
        padding: 30px 50px 30px 200px;
        -ms-transform-origin: top center;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transition: top 300ms linear, opacity 300ms linear;
        -moz-transition: top 300ms linear, opacity 300ms linear;
        -ms-transition: top 300ms linear, opacity 300ms linear;
        -o-transition: top 300ms linear, opacity 300ms linear;
        transition: top 300ms linear, opacity 300ms linear; 
    }
    nav.horizontally .navbar-nav>li:hover>.dropdown-menu {
        pointer-events: auto !important;
        opacity: 1 !important;
        top: 100%;
    }
    nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        margin-bottom: 30px;
        width: 33.33%;
    }
    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        display: block !important;
    }
}

@media(min-width:1200px) {
    nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        width: 25%;
    }

    nav.horizontally .navbar-nav>li>.dropdown-menu {
        padding: 40px 45px;
    }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav>li>a {
    color: #4c3c3c;
    font-weight: 700;
    text-align: left;
    padding: 15px 35px 15px 15px;
    position: relative;
    font-size: 1.5rem;
    font-family: "Saira Extra Condensed", sans-serif;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li {
        border-bottom: 1px solid rgba(76, 60, 60, 0.2);
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 30px 5px 24px 5px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
        font-size: 1.375rem;
    }
}

@media (min-width: 1200px) {
    .navbar-default .navbar-nav>li>a {
        padding: 30px 10px 24px 10px;
        font-size: 1.5rem;
    }
    .navbar-default .navbar-nav>li+li {
        margin-left: calc(15px + (60 - 15) * (100vw - 1200px) / (1920 - 1200));
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        display: block;
    }
}

.navbar-default .navbar-nav>li>a::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    bottom: 0;
    height: 6px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #810020;
    -webkit-transition: width 300ms linear;
    -moz-transition: width 300ms linear;
    -ms-transition: width 300ms linear;
    -o-transition: width 300ms linear;
    transition: width 300ms linear;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a::after {
        top: 0;
        bottom: auto;
    }
}

.navbar-default .navbar-nav>li>a::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -20px;
    margin-left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #ffffff transparent transparent transparent;
    -webkit-transition: top 150ms linear;
    -moz-transition: top 150ms linear;
    -ms-transition: top 150ms linear;
    -o-transition: top 150ms linear;
    transition: top 150ms linear;
    opacity: 0;
    z-index: 1001;
    -webkit-transition: opacity 200ms linear;
    -moz-transition: opacity 200ms linear;
    -ms-transition: opacity 200ms linear;
    -o-transition: opacity 200ms linear;
    transition: opacity 200ms linear;
}
.navbar-default .navbar-nav>li:hover>a::before {
    opacity: 1;
}

@media (max-width: 992px) {
    .dropdown-toggle-button-wrapper {
        display: none;
    }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav > li:hover > a,
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.open > a,
.navbar-nav > li.open > a:hover,
.navbar-nav > li.open > a:focus,
.navbar-nav > li[class$="_over"] > a,
.navbar-nav > li[class$="_over"] > a:hover,
.navbar-nav > li[class$="_over"] > a:focus {
    color: #810020;
}

.navbar-nav > li:hover > a::after,
.navbar-nav > li > a:hover::after,
.navbar-nav > li > a:focus::after,
.navbar-nav > li.open > a::after,
.navbar-nav > li.open > a:hover::after,
.navbar-nav > li.open > a:focus::after,
.navbar-nav > li[class$="_over"] > a::after,
.navbar-nav > li[class$="_over"] > a:hover::after,
.navbar-nav > li[class$="_over"] > a:focus::after {
    width: 100%;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu::before {
    content: '';
    position: absolute;
    background-color: #810020;
    top: 0;
    left: calc(-15% + -75px);
    right: calc(-15% + -30px);
    bottom: 0;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 15px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: relative;
        z-index: 1;
        margin-bottom: 8px;
    }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu>li, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li {
    line-height: 20px;
    text-align: center;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a {
    color: #ffffff;
    font-weight: 500;
    padding: 0 0 10px 0;
    display: inline-block;
    position: relative;
    padding: 6px 15px;
    font-size: 1.15rem;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #ffffff;
    font-weight: normal;
    padding: 8px 10px;
    font-size: 1.15rem;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a::before {
    content: "»";
    margin-right: 15px;
    opacity: 0;
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav > li > .dropdown-menu > li:hover > a,
.navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus {
    background-color: #71001c;
}

.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:hover > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus::before {
    opacity: 1;
}

/* ----------------------------------------------- header ----------------------------------------------- */

header {
    background: linear-gradient(to bottom, #810020, #810020 40%, rgba(255,255,255,0) 30%);
}

#header > .row {
    width: 100%;
    max-width: 100%;
}

#header > .row .row {
    margin-left: 0;
    margin-right: 0;
}

#header > .row > div {
    padding: 0;
}

#header {
    background: #ffffff url("../img/hintergrund-header.jpg") top right no-repeat;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    #header {
        margin-left: calc(15px + (200 - 15) * (100vw - 768px) / (1920 - 768));
    }
}

/* --------------------------------------------- header text --------------------------------------------- */

#headerText {
    padding: 30px;
    width: 100%;
}

@media (min-width: 992px) {
    #headerText {
        padding-left: 60px;
    }

    body.index #headerText {
        padding-bottom: 120px;
    }
}

#header h1{
    margin-bottom: 0;
}

#header h1{
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
    font-size: calc(22px + (40 - 22) * (100vw - 320px) / (1920 - 320));
    color: #666666;
    margin-top: 10px;
}

@media (min-width: 992px) {
    #header h1{
        margin-top: 18px;
    }
}

#header h1 strong {
    color: #333333;
    font-weight: 700;
    font-family: "Saira Extra Condensed", sans-serif;
    font-size: calc(30px + (70 - 30) * (100vw - 320px) / (1920 - 320));
}

body.index #header h1 strong {
    font-size: calc(30px + (110 - 30) * (100vw - 320px) / (1920 - 320));
}

/* --------------------------------------------- header contact --------------------------------------------- */

#headerContact {
    background: #ffffff linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(255,255,255,0) 80px);
    width: 100%;
    font-size: 0.9375rem;
    position: relative;
}

#header > .row #contactTab .row {
    margin-left: -15px;
    margin-right: -15px;
}

#contactButton .row > div {
    padding: 0;
}

#contactTab .tabHeadline {
    color: #333333;
    font-weight: 500;
    font-size: 1.2rem;
}

@media (min-width: 992px) {
    #contactButton div,
    #contactButton div > p {
        height: 100%;
        min-height: 100%;
    }
    #contactTab {
        padding: 36px 30px 36px 60px;
    }
}

#contactTab a {
    color: #810020;
}

#contactTab b,
#contactTab strong {
    font-size: 1.125rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    #contactTab {
        padding: 20px;
    }
}

@media (min-width: 992px) {
    #contactButton {
        padding: 0 0 0 40px;
    }
}

#contactButton a {
    display: block;
    text-align: center;
    background: #7f001f linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(255,255,255,0) 80px);
    color: #ffffff;
    font-size: calc(26px + (40 - 26) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
    font-family: "Saira Extra Condensed", sans-serif;
    padding: 10px 15px;
    line-height: 1.1;
}

@media (max-width: 991px) {
    #contactButton a {
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    #contactButton a {
        padding: 30px 20px 20px 20px;
        height: 100%;
        min-height: 100%;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }
}

#contactButton a::after {
    content: "\00BB";
    margin-left: 6px;
}

/* ----------------------------------------------- banner ----------------------------------------------- */

#slider {
    height: 250px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    #slider {
        height: 400px;
    }
    body.index #slider {
        height: 600px;
    }
}

@media (min-width: 992px) {
    body.index #slider {
        height: 790px;
    }
}

.slider-wrapper {
    height: 100%;
}

.slider-mask {
    display: none;
}

/* ------------------------------------------------ content ----------------------------------------------- */

#content {
    text-align: left;
    padding: calc(40px + (100 - 40) * (100vw - 320px) / (1920 - 320)) 0;
}

main {
    overflow: hidden;
}

#grapes {
    background: url("../img/hintergrund-content.jpg") top right no-repeat;
    position: relative;
}

#grapes::before {
    content: '';
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+99&1+0,1+70,0+85 */
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,0) 85%, rgba(255,255,255,0) 99%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 70%,rgba(255,255,255,0) 85%,rgba(255,255,255,0) 99%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 70%,rgba(255,255,255,0) 85%,rgba(255,255,255,0) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* ------------------------------------------ h1 - h6, #content .legacy_h6, .legacy_h6, newslink ----------------------------------------- */

.h4link a:link, .h4link a:hover, .h4link a:visited, h6, #content .legacy_h6, .legacy_h6, h5, #content .legacy_h5, .legacy_h5, h4, #content .legacy_h4, .legacy_h4, h3, #content .legacy_h3, .legacy_h3, h2, #content .legacy_h2, .legacy_h2, h1, #content .legacy_h1, .legacy_h1{
    color: #333333;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Saira Extra Condensed", sans-serif;
}

h1, #content .legacy_h1, .legacy_h1, .h1 {
    font-weight: 700;
    font-size: calc(30px + (60 - 30) * (100vw - 320px) / (1920 - 320));
}

#content h1, #content .legacy_h1, .legacy_h1, #content .h1 {
    padding: 10px 0;
    position: relative;
    text-align: center;
}

@media (min-width: 992px) {
    #content h1, #content .legacy_h1, .legacy_h1, #content .h1 {
        padding: 20px 0;
    }
}

@media (min-width: 1200px) {
    #content h1, #content .legacy_h1, .legacy_h1, #content .h1 {
        padding: 30px 0;
    }
}

H6 em, H5 em, H4 em, H3 em, H2 em, H1 em {
    font-family: "Roboto", serif;
    color: #666666;
    font-style: normal;
    font-weight: 400;
    display: block;
    font-size: 80%;
    margin-top: 4px;
}

@media (min-width: 768px) {
    H6 em, H5 em, H4 em, H3 em, H2 em, H1 em {
        font-size: 60%;
    }
}

h2, #content .legacy_h2, .legacy_h2, .h2 {
    font-size: calc(29px + (55 - 29) * (100vw - 320px) / (1920 - 320));
}

h3, #content .legacy_h3, .legacy_h3, .h3 {
    font-size: calc(28px + (50 - 28) * (100vw - 320px) / (1920 - 320));
}

h4, #content .legacy_h4, .legacy_h4, .h4, .h4link a:link, .h4link a:hover, .h4link a:visited {
    font-size: calc(27px + (42 - 27) * (100vw - 320px) / (1920 - 320));
}

h5, #content .legacy_h5, .legacy_h5, .h5 {
    font-size: calc(25px + (34 - 25) * (100vw - 320px) / (1920 - 320));
}

h6, #content .legacy_h6, .legacy_h6, .h6 {
    font-size: calc(24px + (28 - 24) * (100vw - 320px) / (1920 - 320));
}

#newslinks, #newsmandate {
    border: 1px solid #333333;
}

/* ----------------------------------------------- tabwide ----------------------------------------------- */

#tabWide {
    background: #810020 url("../img/hintergrund1.png") center left no-repeat;
    margin-bottom: calc(40px + (150 - 40) * (100vw - 320px) / (1920 - 320));
    position: relative;
}

@media (min-width: 992px) {
    #tabWide,
    #tabWide > div {
        min-height: 380px;
    }

    #tabWide::after {
        content: "";
        display: block;
        position: absolute;
        bottom: -260px;
        left: calc(-400px + (0 + 400) * (100vw - 992px) / (1920 - 992));
        width: 563px;
        height: 479px;
        background: url("../img/freisteller2.png") center no-repeat;
        background-size: contain;
        transform: rotate(20deg);
        pointer-events: none;
    }
}

#tabWide,
#tabWide h1,
#tabWide h2,
#tabWide h3,
#tabWide h4,
#tabWide h5,
#tabWide h6,
#tabWide h1 em,
#tabWide h2 em,
#tabWide h3 em,
#tabWide h4 em,
#tabWide h5 em,
#tabWide h6 em {
    color: #ffffff;
}

#tabWide a {
    display: inline-block;
    background: #faca4b;
    color: #4c3c3c;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: "Saira Extra Condensed", sans-serif;
    padding: 10px 22px;
}

#tabWide a:hover {
    background-color: #28332b;
    color: #faca4b;
}

#tabWide a::after {
    content: "\00BB";
    margin-left: 4px;
}

#tabText {
    padding-top: calc(40px + (120 - 40) * (100vw - 320px) / (1920 - 320));
    padding-bottom: 40px;
}

#tabText .tabHeadline {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Saira Extra Condensed', sans-serif;
    margin-bottom: 35px;
    line-height: 1.2;
}

#tabImages > div > div{
    overflow: hidden;
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 250px;
}

@media (max-width: 767px) {
    #tabImages > div {
        margin-bottom: -70px;
    }  
}

@media (min-width: 768px) {
    #tabImages > div {
        position: absolute;
        left: 15px;
        top: 0;
        right: 15px;
        bottom: -70px;
        z-index: 5;
    }
    #tabImages > div::after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        width: 50vw;
        left: 0;
        background: linear-gradient(to bottom, #810020, #810020 50%, #ddb967 50%);
        z-index: -1;
    } 
}

@media (min-width: 992px) {
    #tabImages > div {
        bottom: -100px;
    }
}

#tabImages img {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -ms-interpolation-mode: bicubic;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/* ----------------------------------------------- tabs ----------------------------------------------- */

#tabs {
    padding-bottom: calc(40px + (100 - 40) * (100vw - 320px) / (1920 - 320));
    padding-top: 70px;
}

@media (max-width: 991px) {
    #tabs > .row > div + div {
        margin-top: 40px;
    }
}

@media (min-width: 768px) {
    #tabs > .row > div + div:nth-child(2) {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    #tabs {
        padding-top: 90px;
    }
}

#tabs .tab {
    padding: calc(40px + (50 - 40) * (100vw - 320px) / (1920 - 320)) 20px;
    height: 100%;
    min-height: 100%;
    border-width: 10px;
    border-style: solid;
    color: #666666;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.35rem;
}

@media (min-width: 768px) {
    #tabs .tab {
        margin-left: 0;
        margin-right: 0;
    }
}

#tabs .tab b,
#tabs .tab strong {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-size: calc(22px + (30 - 22) * (100vw - 320px) / (1920 - 320));
}

#tabs .tab1 {
    border-color: #ddb967;
    background: #ffffff url("../img/fass.png") bottom right / contain no-repeat;
}

#tabs .tab2 {
    border-color: #810020;
    background: #ffffff url("../img/flasche.png") bottom right / contain no-repeat;
}

#tabs .tabHeadline,
#tabs .tabHeadline2 {
    font-weight: 600;
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    #tabs .tabHeadline,
    #tabs .tabHeadline2 {
        margin-bottom: 35px;
    }
}


#tabs .tabHeadline {
    font-size: calc(30px + (50 - 30) * (100vw - 320px) / (1920 - 320));
}

#tabs .tabHeadline2 {
    font-size: calc(30px + (38 - 30) * (100vw - 320px) / (1920 - 320));
}

#tabs a::after {
    content: "\00BB";
    margin-left: 4px;
}

#tabs a {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: "Saira Extra Condensed", sans-serif;
    padding: 10px 22px;
    background-color: #ddb967;
    color: #4c3a10;
}

#tabs a:hover {
    background-color: #810020;
    color: #ddb967;
}

/* ----------------------------------------------- footer ----------------------------------------------- */

#footer {
    background: #810020 url("../img/hintergrund2.png") center left no-repeat;
    background-size: contain;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    #footer {
        padding-left: 15px;
    }
    #footer::after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        width: 15px;
        left: 0;
        background: linear-gradient(to bottom, #ffffff, #ffffff 50%, #4c3c3c 50%);
        z-index: -1;
    } 
}

@media (min-width: 1200px) {
    #footer::after {
        width: calc(15px + (200 - 15) * (100vw - 1200px) / (1920 - 1200));
    } 
}

#footer > .row > div:first-child {
    padding-top: calc(40px + (120 - 40) * (100vw - 320px) / (1920 - 320));
    padding-bottom: 40px;
}

#footer,
#footer a,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6,
#footer h1 em,
#footer h2 em,
#footer h3 em,
#footer h4 em,
#footer h5 em,
#footer h6 em {
    color: #ffffff;
}

#footer a {
    text-decoration: underline;
}

#footer hr {
    opacity: 1;
    background: rgba(0,0,0,0.2);
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    #footer hr {
        margin-top: 60px;
    }
}

#footer .tabHeadline {
    font-size: 3.6rem;
    font-family: 'Saira Extra Condensed', sans-serif;
    margin-bottom: 60px;
    font-weight: 700;
}

#footer iframe,
#footer .iframe-wrapper-manual-enabling {
    display: block;
    width: 100%;
}

#footer .iframe-wrapper-manual-enabling {
    min-width: 100% !important;
}

@media (max-width: 767px) {
    #footer iframe,
    #footer .iframe-wrapper-manual-enabling {
        margin-bottom: -70px;
    }
}

@media (min-width: 768px) {
    #footer iframe,
    #footer .iframe-wrapper-manual-enabling  {
        position: absolute;
        left: 15px;
        top: 0;
        right: 15px;
        width: calc(100% - 30px) !important;
        height: calc(100% + 100px) !important;
    }
    #footer .iframe-wrapper-manual-enabling {
        min-width: calc(100% - 30px) !important;
    }
}

#footer .mapCol .row,
#footer .mapCol .row > div {
    position: static;
}

.mapCol {
    overflow: hidden;
}
/* --------------------------------------------- vernetzt -------------------------------------------- */

#footer #vernetzt {
    text-align: left;
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 auto;
    font-weight: 400;
    text-decoration: none;
}

@media (min-width: 768px) {
    #footer #vernetzt {
        float: left;
        margin: 0;
    }
}

#vernetzt b {
    color: #ffffff;
    font-weight: 400;
}

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

/* ----------------------------------------------- innerfooter ----------------------------------------------- */

#innerfooter {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    #innerfooter {
        padding-top: 110px;
    }
}

#innerfooter a {
    color: #666666;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
}

#innerfooter a:hover {
    color: #65806b;
}

#innerfooter a+a::before {
    content: "•";
    margin: 0 10px;
    color: #666666;
}

@media (min-width: 1200px) {
    #innerfooter a+a::before {
        margin: 0 18px;
    }
}