@font-face {
    font-family: 'bebas-neue-pro';
    src: url('../fonts/bebasneuepro-book-webfont.woff2') format('woff2'),
         url('../fonts/bebasneuepro-book-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'bebas-neue-pro';
    src: url('../fonts/bebasneuepro-middle-webfont.woff2') format('woff2'),
         url('../fonts/bebasneuepro-middle-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'cinque-donne-pro';
    src: url('../fonts/cinque_donne_basic-webfont.woff2') format('woff2'),
         url('../fonts/cinque_donne_basic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}



* {
    padding: 0px;
    margin: 0px;
    border-spacing: 0px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 10px;
}

body {
    font-family: 'bebas-neue-pro', sans-serif;
    font-weight: 300;
    line-height: 160%;
    margin: 0px 0px 0px 0px;
    font-size: 2.7rem;
    color: #333;
    position: relative;
    min-height: 100%;
    overflow-y: scroll;
    background: #222;
}


a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-out;
    border: 0;
}

a:hover {
    color: #890700;
}

b, strong {
    font-weight: 400;
}

p {
    margin-bottom: 2rem;
}

p.lil_gap {
    margin-bottom: 1rem;
}

p.no_mb, p:last-child {
    margin-bottom: 0;
}

.top_gap {
    margin-top: 4rem;
}

small, .small {
    font-size: 85%;
}

.center {
    text-align: center;
    text-wrap: balance;
}

.red {
    color: #890700;
}

.img_border {
    display: block;
    position: relative;
    overflow: hidden;
}

.hidden, #mmenu, #rmenu, .sh_smpt, .visually-hidden {
    display: none;
}

.sh_tbpt {
    display: none !important;
}

#wrapper {
    position: relative;
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    height: auto;
    min-height: 100%;
    background: #fff;
}

#header {
	position: fixed;
	height: 21rem;
	z-index: 1000000;
	left: 0;
	right: 0;
	top: 0;
    transition: transform 0.3s ease-out;
}

body.fancybox-active #header {
    right: var(--sbw);
 }
 

#header_inside {
    position: relative;
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    height: 21rem;
    background: #fff;
}



#header.scrolled {
    transform: translateY(-8rem);
    border-bottom: 2px solid #890700;
}

#header_inside2 {
    position: relative;
    width: 140rem;
    margin: 0 auto;
    height: 21rem;
}


#header #logo {
    width: auto;
    height: 16.5rem;
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    top: 2.1rem;
    transition: transform 0.3s ease-out;
    transform-origin: center bottom;
}

#header.scrolled #logo {
    transform: translateX(-50%) translateY(1.2rem) scale(0.65);
} 

#header #menu {
    position: absolute;
    left: 0;
    top: 8.7rem;
    cursor: pointer;
    z-index: 9999999;
    padding-right: 2rem;
    transition: transform 0.3s ease-out;
}

#header.scrolled #menu {
    transform: translateY(4rem);
}

#header #menutrigger {
    display: flex;
    align-items: center;
    font-size: 2.6rem;
    line-height: 100%;
    min-height: 3.6rem;
    font-weight: 300;
}

#header #menutrigger span {
    display: block;
    height: 2px;
    background: #890700;
    width: 4rem;
    margin-right: 1.5rem;
    position: relative;
}

#header #menutrigger span:before, #header #menutrigger span:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #890700;
}

#header #menutrigger span:before {
    top: -10px;
}

#header #menutrigger span:after {
    bottom: -10px;
}

#header #menu #topmenu {
    position: absolute;
    left: 0;
    top: 3.2rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    z-index: 999999;
    background: rgba(255,255,255,0.95);
    display: none;
    cursor: auto;
}

#header #menu:hover #topmenu {
    display: block;
    overflow: hidden;
}

#header #menu #topmenu ul {
    list-style: none;
}

#header #menu #topmenu ul li a {
    color: #333;
    padding: 0.3rem 2.5rem 0.3rem 6rem;
    display: block;
    font-size: 2.9rem;
    white-space: nowrap;
    position: relative;
    transition: 0.3s ease-out;
    text-transform: uppercase;
    font-weight: 400;
}

#header #menu #topmenu ul li.active a, #header #menu #topmenu ul li a:hover {
    color: #890700;
}

#header #menu #topmenu ul li a:before {
    content: '';
    display: block;
    width: 3.2rem;
    height: 4.4rem;
    position: absolute;
    left: 2rem;
    top: 0.2rem;
    background: url(../images/icon_menu.png) no-repeat;
    background-size: contain;
    transition: 0.3s ease-out;
    opacity: 0;
    transform: translateX(-0.6rem);
}

#header #menu #topmenu ul li.active a:before, #header #menu #topmenu ul li a:hover:before {
    opacity: 1;
    transform: translateX(0);   
}

#language {
    position: absolute;
    top: 9.3rem;
    left: 23.8rem;
    transition: transform 0.3s ease-out;
}

div.mod-languages ul {
    display: flex;
}

div.mod-languages ul li.lang-active {
    background-color: #fff !important;
}

div.mod-languages ul.lang-inline li {
    display: block !important;
}

div.mod-languages li {
    margin: 0 1rem !important;
}

div.mod-languages a {
    padding: 0 !important;
}

.mod-languages__list img {
    padding: 3px;
    border: 1px solid #fff !important;
    width: 2.4rem;
    height: auto;
    display: block !important;
}

.mod-languages__list li.lang-active img {
    border: 1px solid #890700 !important;
}

#header.scrolled #language {
    transform: translateY(4rem);
}

#header #contact {
    position: absolute;
    right: 0;
    height: 10rem;
    top: 5.5rem;
    display: flex;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-out;
    font-weight: 300;
    visibility: hidden;
    font-size: 2.8rem;
}

#header.scrolled #contact {
    transform: translateY(4rem);
}

#header #contact > div {
    display: flex;
    align-items: center;
}

#header #contact div:first-child img {
    display: block;
    height: 4rem;
    width: auto;
    margin-right: 1.3rem;
}

#header #contact .facebook, #header #contact .instagram {
    display: block;
    width: 4rem;
    height: auto;
}

#header #contact .facebook {
    margin-left: 5rem;
}

#header #contact .instagram {
    margin-left: 2.5rem;
}

.phone_mobile {
    display: none;
}

#opener_container {
    width: 90%;
    max-width: 170rem;
    min-width: 146rem;
    position: relative;
    margin: 0 auto;
}


#opener {
    position: relative;
    background: #eee;
    height: 0;
    padding-bottom: 50%;
}

#slider {
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#slider:before, .clm3 > div span:before, .img_border:before {
    content: '';
    display: block;
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 1.5rem;
    bottom: 1.5rem;
    border: 1px solid #fff;
    z-index: 99999;
    pointer-events: none;
}

#content {
    position: relative;
}

.centered {
    width: 140rem;
    margin: 0 auto;
}

section {
    padding: 25rem 0 25rem;
}


section#home {
    padding: 21rem 0 25rem;
}

section#impressum, section#datenschutz, section#error {
    padding-top: 0;
    margin-top: -25rem;
}

section#kontakt, section#contact-en, section#contact-nl {
    padding-bottom: 10rem;
}

#content h1, #content h2.like_h1 {
    font-family: 'cinque-donne-pro', cursive;
    font-size: 9.5rem;
    color: #890700;
    margin-bottom: 3rem;
    line-height: 130%;
    font-weight: 400;
    text-align: center;
    text-transform: none;
    text-wrap: balance;
}

#content h2, #news h2, #bignews h2 {
    font-size: 4.3rem;
    color: #890700;
    margin-bottom: 0.5rem;
    line-height: 130%;
    font-weight: 400;
    text-transform: uppercase;
}

#bignews h2 {
    margin-bottom: 2rem;
}


#content h2.headline_centered {
    text-align: center;
}

#content h2.big_gap {
    margin-bottom: 11rem;
}


#content h3 {
    font-size: 3.8rem;
    color: #890700;
    margin-bottom: 0.5rem;
    line-height: 130%;
    font-weight: 400;
    text-transform: uppercase;
}

#content h4 {
    font-size: 3.5rem;
    color: #890700;
    margin-bottom: 0.5rem;
    line-height: 130%;
    font-weight: 400;
    text-transform: uppercase;
}

/* Noch anpassen */
#content ul {
    list-style: none;
}

#content ul.list li {
    padding-left: 1.8rem;
    position: relative;
    text-align: left;
    margin-bottom: 0.7rem;
}

#content ul.list li:last-child {
    margin-bottom: 0;
}

#content ul.list li:before {
    content: '';
    position: absolute;
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    background: #890700;
    left: 0;
    top: 1.8rem;
}

/* Bis hier */

#bignews {
    margin-top: 15rem;
    border: 2px solid #890700;
    padding: 5rem;
    text-align: center;
    text-wrap: balance;
}

#news {
    margin-top: 15rem;
}

.clm3 {
    display: flex;
    justify-content: space-between;
}

.clm3 > div {
    width: 30%;
}

.clm3 > div span {
    display: block;
    position: relative;
}

.clm3 > div img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 4rem;
}



.clm2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clm2.reverse {
    flex-direction: row-reverse;
}

.clm2 > div:first-child {
    width: 31%;
}

.clm2 > div:first-child img {
    display: block;
    width: 100%;
    height: auto;
}

.clm2 > div:last-child {
    width: 61%;
    position: relative;
}

.clm2.clm2_chronik1 > div:first-child {
    width: 26%;
}

.clm2.clm2_chronik1 > div:last-child {
    width: 67%;
}

.clm2.clm2_chronik2 > div:first-child {
    width: 50%;
}

.clm2.clm2_chronik2 > div:last-child {
    width: 44%;
}

.clm2.clm2_chronik3 > div:first-child {
    width: 43%;
}

.clm2.clm2_chronik3 > div:last-child {
    width: 50%;
}

.clm2.clm2_gruppenreisen > div:first-child {
    width: 41%;
}

.clm2.clm2_gruppenreisen > div:last-child {
    width: 51%;
}

.clm2.clm2_kontakt > div:first-child {
    width: 61%;
}

.clm2.clm2_kontakt > div:last-child {
    width: 30.8%;
} 

.textslider {
    float: right;
    width: 50rem;
    margin-left: 3rem;
    margin-bottom: 3rem;
    display: block;
    position: relative;
}

.textslider > span {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 118%;
}

a.big {
    font-size: 3.5rem;
    font-weight: 400;
    color: #890700;
    position: relative;
    padding-left: 2.9rem;
    text-transform: uppercase;
    display: block;
}

a.big:before {
    content: '';
    display: block;
    position: absolute;
    border-left: 1.4rem solid #890700;
    border-top: 0.9rem solid transparent;
    border-bottom: 0.9rem solid transparent;
    left: 0;
    top: 1.2rem;
}

a.middle {
    font-size: 3.1rem;
    font-weight: 400;
    color: #890700;
    position: relative;
    padding-left: 2.9rem;
    text-transform: uppercase;
    cursor: pointer;
    display: block;
}

a.middle:before {
    content: '';
    display: block;
    position: absolute;
    border-left: 1.2rem solid #890700;
    border-top: 0.8rem solid transparent;
    border-bottom: 0.8rem solid transparent;
    left: 0;
    top: 1.3rem;
}


.gallery {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
}

.gallery > div {
    width: 22.5%;
    text-align: center;
    font-size: 3.8rem;
    color: #890700;
    font-weight: 400;
    text-transform: uppercase;
}

.gallery > div img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-out;
}

.gallery span.img_border:hover img {
    transform: scale(1.2);
}

.gallery p {
    margin-top: 4rem;
}

.gallery span.img_border {
    cursor: pointer;
}

.gallery span.img_border > div:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #890700;
    opacity: 0;
    transition: 0.3s ease-out;
    z-index: 1;
}

.gallery span.img_border:hover > div:before{
    opacity: 0.5;
}

.gallery span.img_border > div:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/button_gallery.svg) center center no-repeat;
    background-size: 20% auto;
    transition: 0.3s ease-out;
    z-index: 1;
    transform: translateY(100%)
}

.gallery span.img_border:hover > div:after {
    transform: translateY(0)
}



.fancybox-container {
    z-index: 1000001 !important;
}

.fancybox-bg {
    background-color: #000 !important;
}

.fancybox-caption {
	font-size: 3rem !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
}



.divider {
    width: 100%;
    height: 12rem;
    background: center center no-repeat;
    background-size: auto 100%;
    background-image: url(../images/divider.svg);
}


#kontakt .facebook {
    display: block;
    width: 4rem;
    height: auto;
    margin-bottom: 2.5rem;
}

input, textarea, select, button#bfSubmitButton {
    font-family: 'bebas-neue-pro', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    border: 1px solid #890700;
    color:  #333;
    padding: 0.5rem 1rem 0.6rem;
    outline: none;
    box-sizing: border-box;
    background: #fff;
    -webkit-appearance: none;
    border-radius: 0;
}

input.gr_button, button#bfSubmitButton {
    color: #fff;
    background: #890700;
    cursor: pointer;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 2.5rem;
    padding: 0.3rem 1rem 0.5rem;
}

input#saddr {
    font-size: 2.3rem;
}

input.gr_button:hover, button#bfSubmitButton:hover { 
    background:  #700400;
    border: 1px solid #700400;
}

#kontaktformular {
    display: none;
    width: 100% !important;
    max-width: 60rem !important;
    padding: 3rem !important;
    /* max-height: calc(100vh - 30rem); */
    max-height: calc(100% - 5rem);
}

.fancybox-content input, .fancybox-content textarea, .fancybox-content button {
    font-weight: 300;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.fancybox-content input, .fancybox-content textarea, .fancybox-content select  {
    color: #333;
    border: none;
    padding: 0.5rem 0 0.3rem;
    border-bottom: 1px solid #890700;
}

.fancybox-content select {
    width: 100%;
    cursor: pointer;
}

.fancybox-content select option {
    font-size: 2rem;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
	cursor: auto !important;
}

body.fancybox-active {
    overflow: hidden;
    margin-right: var(--sbw);
}

.fancybox-content h2 {
    font-size: 3.4rem;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 120%;
    font-weight: 400;
    text-transform: uppercase;
    background: #890700;
    text-wrap: balance;
    text-align: center;
    padding: 0.7rem 1rem;
}

button {
    cursor: pointer;
}

.bfQuickMode .bfElemWrap {
	margin-bottom: 3rem !important;
}

.bfQuickMode .form-inline .form-group, .bfQuickMode .form-inline label, .bfQuickMode .bfbs5-form-inline .bfbs5-form-group, .bfQuickMode .bfbs5-form-inline label {
	margin-right: 0 !important;
}

#bfElemWrap9 {
    position: relative;
    margin-bottom: 0rem !important;
}

#bfLabel9 {
    padding-left: 2.9rem;
    line-height: 130%;
}

input[type="checkbox"].ff_elem {
    position: absolute !important;
    left: 0;
    top: 0.9rem;
    -moz-appearance: initial;
    visibility: hidden;
    cursor: pointer;
}



input[type="checkbox"].ff_elem:before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: #fff;
    border: 1px solid #890700;
    left: 0;
    top: 0;
    visibility: visible;
    border-radius: 50%;
    box-sizing: border-box;
}

input[type="checkbox"].ff_elem:checked:after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: url(../images/icon_checked.svg);
    background-size: cover;
    left: 0;
    top: 0;
    visibility: visible;
}

.grp-widget {
    font-family: 'bebas-neue-pro', sans-serif !important;
	font-size: 2.2rem !important;
	line-height: 160% !important;
	font-weight: 300 !important;
    border-radius: 0 !important;
}

.grp-theme-default .grp-reviews-container {
	background: none !important;
}

.grp-reviews-container-inner {
	padding: 0 !important;
}

.grp-style-box.grp-reviews-review {
	border-radius: 0 !important;
	padding: 2.5rem !important;
}

.grp-theme-default .grp-style-box.grp-reviews-review {
	background: #fafafa !important;
	box-shadow: none !important;
	color: #222;
    border: 1px solid #890700 !important;
    box-sizing: border-box !important;
    width: calc(100% - 2px) !important;
}

.grp-text-expand.grp-has-more::after {
	background: linear-gradient(to bottom, rgba(250,250,250, 0.2), #fafafa 100%) !important;
}

.grp-widget {
    font-family: 'bebas-neue-pro', sans-serif !important;
	font-size: 2.2rem !important;
	line-height: 160% !important;
	font-weight: 300 !important;
    margin: 0 auto 2rem !important;
}

.grp-reviews-review-text {
	font-size: 2.2rem !important;
	line-height: 160% !important;
}

.grp-reviews-review-author-name, .grp-reviews-review-author-name a {
	font-size: 2.2rem !important;
	font-weight: 400 !important;
}

.grp-theme-default .grp-style-box .grp-reviews-review-author-name, .grp-theme-default .grp-style-box .grp-reviews-review-author-name a {
	color: #222 !important;
    height: 5rem !important;
    line-height: 5rem !important;
}

.grp-style-box .grp-reviews-review-author-pic {
	width: 5rem !important;
	height: 5rem !important;
}

.grp-theme-default .grp-style-box .grp-reviews-review-date {
	color: #222 !important;
    font-size: 1.6rem !important;
}

.grp-text-expand-btn {
	color: #890700 !important;
	font-size: 2rem !important;
    margin-top: 1rem !important;
    font-weight: 400 !important;
}

.grp-theme-default .grp-slick-dots li.grp-slick-active button::before {
	color: #890700 !important;
}




.grp-widget-box-head {
    background-color: transparent !important;
    color:#890700 !important;
    padding: 2.5rem 0 4rem !important;
}

.grp-widget-box-head-honor-rating svg {
    display: none !important;
}

.grp-widget-box-head-honor-rating-score {
    font-size: 6rem !important;
    font-weight: 300 !important;
    line-height: normal !important;
    position: relative !important;
    bottom: 0 !important;
}

.grp-widget-box-head-honor-rating {
    height: auto !important;
    overflow: visible !important;
}

.grp-widget-box-head-honor-stars {
    font-size: 2.5rem !important;
    margin-top: -0.5rem !important;
}

.grp-widget-box-head-title {
    display: none !important;
}

.grp-widget-box-head-subtitle {
    font-size: 2.2rem !important;
    opacity: 1 !important;
    color: #333 !important;
    margin-top: 0.5rem !important;
}






.highlights_umgebung {
    background: #890700;
    color: #fff;
    margin-top: 15rem;
    font-weight: 400;
}

.highlights_umgebung .centered {
    padding: 7rem 0;
    border-bottom: 1px dotted #fff;
}

.highlights_umgebung a,.highlights_umgebung a:hover {
    color: #fff;
}

#content .highlights_umgebung h2 {
    text-align: center;
    color: #fff;
    text-wrap: balance;
    margin-bottom: 3rem;
    font-size: 5rem;
}

#content .highlights_umgebung p {
    text-align: center;
    text-wrap: balance;
    margin-bottom: 4rem;
}

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

ul.highlights li {
    width: 30%;
    margin-right: 5%;
}

ul.highlights li:nth-child(3n) {
    margin-right: 0;
}



#footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 10rem;
    z-index: 1000;
}

#footer_inner {
    left: 0;
    right: 0;
    bottom:0;
    height: 10rem;
    line-height: 10rem;
    position: absolute;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    background: #890700;
    text-transform: uppercase;
    font-weight: 400;
}

#footer_inner a {
        color: #fff;
}


@media(max-width: 1550px) {
    html {
        font-size: 9px;
    }

    #header #menutrigger span:before {
        top: -9px;
    }
    
    #header #menutrigger span:after {
        bottom: -9px;
    }

    .clm2.clm2_kontakt > div:last-child {
        width: 30.6%;
    } 

}



@media(max-width: 1390px) {
    html {
        font-size: 8.3px;
    }

    #header_inside2, .centered {
        width: 136rem;
    }

    #header #menutrigger span:before {
        top: -8px;
    }
    
    #header #menutrigger span:after {
        bottom: -8px;
    }

    #language {
        left: 22.2rem;
    }

    #opener_container {
        min-width: 142rem;
    }

    .clm2.clm2_kontakt > div:last-child {
        width: 30.3%;
    } 

}



@media(max-width: 1240px) {

    html {
        font-size: 8px;
    }

    #header_inside2, .centered {
        width: 126rem;
    }

    #language {
        left: 18.2rem;
    }

    #opener_container {
        min-width: 130rem;
    }

    .clm2.clm2_kontakt > div:first-child {
        width: 57%;
    } 

    .clm2.clm2_kontakt > div:last-child {
        width: 36%;
    } 

}

@media(max-width: 1120px) {

    #header_inside2, .centered {
        width: 116rem;
    }

    #language {
        left: 17rem;
    }

    #opener_container {
        min-width: 124rem;
    }




}

@media(max-width: 1060px) {

    #header_inside2, .centered {
        width: 112rem;
    }

    #language {
        left: 17rem;
    }

    #header #contact .facebook {
        margin-left: 4rem;
    }

    #opener_container {
        min-width: 120rem;
    }

}




@media(max-width: 1020px) {

    .sh_tbpt {
        display: block !important;
    }

    .hd_tbpt {
        display: none !important;
    }

    body.menu_active {
        overflow: hidden;
    }

    #wrapper {
        overflow: hidden;
    }
    
   #webpage  {
        transform: translateX(0);
        transition: transform 0.3s ease-out;
        position: relative;
        z-index: 10;
    }

    #webpage.menu_active {
        transform: translateX(300px); 
    }
    
    #header {
        transform: translateX(0);
    }
    
    #header.menu_active {
        transform: translateX(300px); 
    }
    
    #header.menu_active.scrolled {
        transform: translateX(300px) translateY(-8rem); 
    }
    
    #footer  {
        transform: translateX(0);
        transition: transform 0.3s ease-out;
    }
    
    #footer.menu_active {
        transform: translateX(300px); 
    }

    #header_overlay {
        position: absolute;
        z-index: 60;
        left: 0;
        right: 0;
        top: 0;
        height: 200vh;
        background-color: rgba(255,255,255,0.75);
        transition: opacity 0.3s ease-out, visibility 0s 0.3s; 
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    #header_overlay.menu_active  {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.3s ease-out, visibility 0s 0s;
        pointer-events: all;
    }


    #mmenu {
        display: block;
    }

    #mmenu {
        background:#890700;
        position: fixed;
        width: 300px;
        padding: 30px;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 9999999;
        transform: translateX(-300px);
        transition: transform 0.3s ease-out;
        box-sizing: border-box;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }




    #mmenu.menu_active {
        transform: translateX(0); 
    }
    

    
    #rmenu {
        position: absolute;
        left: 0;
        top: 64px;
        z-index: 9999999999999999;
        height: 40px;
        cursor: pointer;
        line-height: 38px;
        display: block;
        transition: transform 0.3s ease-out;
    }
    
    #header.scrolled #rmenu {
        transform: translateY(4rem);
    }

    #rmenu #rmenu_icon {
        display: block;
        width: 40px;
        height: 2px;
        background: rgba(137,7,0,1);
        position: relative;
        top: 19px;
        transition: background 0s 0.15s;
    }

    #rmenu.menu_active #rmenu_icon {
        background: rgba(23,98,39,0);
    }

    #rmenu #rmenu_icon:before {
        content: '';
        display: block;
        position: absolute;
        width: 40px;
        height: 2px;
        background: rgba(137,7,0,1);
        position: absolute;
        top: -12px;
        transition: top 0.15s ease-in 0.15s, transform 0.15s ease-in 0s;
    }

    #rmenu_trigger {
        cursor: pointer;
        display: block;
    }

    #rmenu_trigger .hd_smpt {
        padding-left: 60px;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 20px;
        transform: translateY(-2px);
        position: relative;
        display: block;
    }
    
    #rmenu #rmenu_icon:after {
        content: '';
        display: block;
        position: absolute;
        width: 40px;
        height: 2px;
        background: rgba(137,7,0,1);
        position: absolute;
        top: 12px;
        transition: top 0.15s ease-in 0.15s, transform 0.15s ease-in 0s;
    }
    
    #rmenu.menu_active #rmenu_icon:before {
        top: 0px;
        transition: top 0.15s ease-in 0s, transform 0.15s ease-in 0.15s;
        transform: rotate(135deg);
    }

    #rmenu.menu_active #rmenu_icon:after {
        top: 0px;
        transition: top 0.15s ease-in 0s, transform 0.15s ease-in 0.15s;
        transform: rotate(-135deg);
    }

    #mmenu ul.mod-menu {
        list-style: none;
        width: 100%;
        margin: 0;
    }

    #mmenu ul.mod-menu li {
        width: 100%;
        border-bottom: 1px dashed rgba(255,255,255,0.75);
        margin: 0;
        position: relative;
    }

    #mmenu ul.mod-menu li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    #mmenu ul.mod-menu li a {
        color: #fff;
        line-height: 130%;
        display: block;
        padding-top: 10px;
        padding-bottom: 9px;
        font-size: 26px;
        font-weight: 400;
        transition: 0.3s ease-in;
        text-transform: uppercase;
    }

    #mmenu ul.mod-menu li a:before {
        content: '';
        display: block;
        position: absolute;
        left: -60px;
        top: 8px;
        width: 26px;
        height: 35px;
        background: url(../images/icon_menu.png) center center no-repeat;
        background-size: contain;
        filter: brightness(100);
    }
    
    #mmenu ul.mod-menu li.active a {
        padding-left: 32px;    
    }

    #mmenu ul.mod-menu li.active a:before {
        left: -2px;
    }

    #mmenu .icons_mmenu {
        display: flex;
        justify-content:space-between;
        align-items: center;
    }
    
    #mmenu div.mod-languages ul li.lang-active {
        background-color: rgba(255,255,255,1) !important;
    }

    #mmenu div.mod-languages li {
        margin-left: 0 !important;
        margin-right: 17px !important;
    }

    #mmenu div.mod-languages li:last-child {
        margin-right: 0 !important;
    }

    #mmenu .mod-languages__list img {
        padding: 1px;
        border: 1px solid #890700 !important;
        width: 29px;
        height: auto;
        display: block !important;
    }

    #mmenu .mod-languages__list li.lang-active img {
        border: 1px solid #fff !important;
    }

    #mmenu .socialmedialinks {
        display: flex;
    }

    #mmenu .socialmedialinks img {
        filter: invert(1) brightness(100);
        width: 30px;
        height: 30px;
        margin-right: 18px;
        display: block;
    }

    #mmenu .socialmedialinks img.instagram {
        margin-right: 0;
    }

    #header_inside2 {
        width: calc(100% - 60px);
    }

    #header #logo {
        height: 15.5rem;
        top: 2.6rem;
    }

    #header #menu, #header #language {
        display: none;
    }

    #header #contact {
        right: 0;
    }

    #header #contact > div:last-child {
        display: none;
    } 


    #opener_container {
        width: calc(100% - 60px);
        min-width: auto;
    }

    #opener {
        position: relative;
        background: #eee;
        height: 0;
        padding-bottom: 100%;
    }

    #bignews {
        margin-top: 10rem;
        padding: 3rem;
    }

    #news {
        margin-top: 10rem;
    }

    .centered {
        width: calc(100% - 60px);
    }

    .clm3 > div {
        width: 46.5%;
    }

    .clm3 > div:last-child {
        display: none;
    }

    section {
        padding: 18rem 0 18rem;
    }

    section#home {
        padding: 21rem 0 18rem;
    }

    section#impressum, section#datenschutz, section#error {
        margin-top: -18rem;
    }

    .textslider {
        width: 40rem;
        margin-top: 1rem;
    }

    .clm2 {
        flex-wrap: wrap;
    }

    .clm2.clm2_speisenkarte div:first-child, .clm2.clm2_speisenkarte div:last-child, .clm2.clm2_feiern div:first-child, .clm2.clm2_feiern div:last-child, .clm2.clm2_gruppenreisen div:first-child, .clm2.clm2_gruppenreisen div:last-child {
        width: 100%;
    }

    .clm2.clm2_speisenkarte > div:first-child, .clm2.clm2_feiern > div:first-child, .clm2.clm2_gruppenreisen > div:first-child {
        order: 2;
        margin-top: 80px;
    }

    .clm2.clm2_speisenkarte div:last-child, .clm2.clm2_feiern div:last-child, .clm2.clm2_gruppenreisen div:last-child {
        order: 1;
    }

    .clm2.clm2_speisenkarte > div:first-child img {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .clm2.clm2_feiern > div:first-child .img_border {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;  
    }

    .clm2.clm2_chronik1 > div:first-child, .clm2.clm2_chronik1 > div:last-child, .clm2.clm2_chronik2 > div:first-child, .clm2.clm2_chronik2 > div:last-child, .clm2.clm2_chronik3 > div:first-child, .clm2.clm2_chronik3 > div:last-child, .clm2.clm2_kontakt > div:first-child, .clm2.clm2_kontakt > div:last-child {
        width: 100%;
    }

    .clm2.clm2_chronik1 > div:first-child, .clm2.clm2_chronik2 > div:first-child, .clm2.clm2_chronik3 > div:first-child, .clm2.clm2_kontakt > div:first-child   {
        order: 2;
        margin-top: 80px;
    }

    .clm2.clm2_chronik1 > div:last-child, .clm2.clm2_chronik2 > div:last-child, .clm2.clm2_chronik3 > div:last-child, .clm2.clm2_kontakt > div:last-child  {
        order: 1;
    }

    .clm2.clm2_chronik1 > div:first-child img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .clm2.clm2_chronik2 > div:first-child img {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .clm2.clm2_chronik3 > div:first-child img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .clm2.clm2_gruppenreisen > div:first-child img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .clm2.clm2_kontakt > div:first-child img {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .gallery {
        flex-wrap: wrap;
    }

    .gallery > div {
        width: 46.5%;
    }

    .gallery > div:nth-child(1), .gallery > div:nth-child(2) {
        margin-bottom: 60px; 
    }

    .clm2_kontakt_tbpt {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .highlights_umgebung {
        margin-top: 10rem;
    }

    ul.highlights li {
        width: 46.5%;
        margin-right: 7%;
    }
    
    ul.highlights li:nth-child(3n) {
        margin-right: 7%;
    }

    ul.highlights li:nth-child(2n) {
        margin-right: 0;
    }

}



@media(max-width: 780px) {

    .hd_smpt {
        display: none !important;
    }

    .sh_smpt {
        display: block;
    }

    #webpage.menu_active {
        transform: translateX(270px); 
    }
    
    #header.menu_active {
        transform: translateX(270px); 
    }
    
    #header.menu_active.scrolled {
        transform: translateX(270px) translateY(-7rem); 
    }
    
    #footer.menu_active {
        transform: translateX(270px); 
    }
    
    #mmenu {
        width: 270px;
        padding: 20px;
        transform: translateX(-270px);
    } 

    #rmenu {
        left: 0;
        top: 46px;
    }

    #header, #header_inside {
        height: 16.5rem;
    }

    #header_inside2 {
        width: calc(100% - 40px);
    }

    #header #logo {
        height: 12rem;
        top: 2.2rem;
    }

    #header.scrolled #logo {
        transform: translateX(-50%) translateY(1.4rem) scale(0.65);
    } 

    #header.scrolled {
        transform: translateY(-7rem);
    }
    
    #header.scrolled #rmenu, #header.scrolled .phone_mobile  {
        transform: translateY(28px);
    }

    #header #contact {
        display: none;
    }

    #rmenu #rmenu_icon, #rmenu #rmenu_icon:before, #rmenu #rmenu_icon:after {
        width: 36px;
    }

    .phone_mobile {
        display: block;
        position: absolute;
        right: 0;
        top: 49px;
        transition: transform 0.3s ease-out;
    }

    .phone_mobile img {
        display: block;
        height: 34px;
        width: auto;
    }

    #mmenu ul.mod-menu li a {
        font-size: 24px;
        padding-bottom: 8px;
    }

    #mmenu ul.mod-menu li a:before {
        top: 7px;
    }

    #mmenu ul.mod-menu li.active a {
        padding-left: 30px;    
    }

    #mmenu .mod-languages__list img {
        width: 27px;
    }

    #mmenu .socialmedialinks img {
        width: 28px;
        height: 28px;
        margin-right: 18px;
    }

    #opener {
        padding-bottom: 120%;
    }

    #opener_container {
        width: calc(100% - 40px);
        min-width: auto;
    }

    #bignews {
        margin-top: 50px;
        padding: 2rem;
    }

    #news {
        margin-top: 50px;
    }
    

    .centered {
        width: calc(100% - 40px);
    }

    .clm3 {
        display: block;
    }

    .clm3 > div {
        width: 100%;
        margin-bottom: 50px;
    }

    .clm3 > div:last-child {
        display: block;
        margin-bottom: 0;
    }

    section {
        padding: 14rem 0 14rem;
    }

    section#home {
        padding: 16.5rem 0 14rem;
    }

    section#impressum, section#datenschutz, section#error {
        margin-top: -14rem;
    }

    #content h1, #content h2.like_h1 {
        font-size: 7.5rem;
        margin-bottom: 3rem;
    }

    .textslider {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .clm2.clm2_speisenkarte > div:first-child img {
        max-width: 250px;
    }

    .clm2.clm2_chronik1 > div:first-child, .clm2.clm2_chronik2 > div:first-child, .clm2.clm2_chronik3 > div:first-child, .clm2.clm2_kontakt > div:first-child   {
        margin-top: 40px;
    }

    .clm2.clm2_chronik1 > div:first-child img {
        max-width: 240px;
    }

    .gallery > div {
        width: 100%;
    }

    .gallery > div:nth-child(1), .gallery > div:nth-child(2), .gallery > div:nth-child(3) {
        margin-bottom: 60px; 
    }

    .divider {
        height: 70px;
    }

    .clm2_kontakt_tbpt {
        display: block;
    }

    .clm2_kontakt_tbpt > div:first-child {
        margin-bottom: 30px;
    }

    ul.highlights li {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    
    ul.highlights li:nth-child(3n) {
        margin-right: 0;
    }

    

}