@charset "UTF-8";
/*animated scroll arrow animation*/
@-webkit-keyframes ca3_fade_move_down {
  0% {
    -webkit-transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
}
@-moz-keyframes ca3_fade_move_down {
  0% {
    -moz-transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate(0, 20px);
    opacity: 0;
  }
}
@keyframes ca3_fade_move_down {
  0% {
    transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 20px);
    opacity: 0;
  }
}
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(89, 104, 93, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(89, 104, 93, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(89, 104, 93, 0);
  }
}
@keyframes slideIn {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes slideOut {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
::-webkit-scrollbar {
  width: 9px;
  background-color: #F2F2F2;
  -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
  background: #414e21;
  -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb:vertical:active, ::-webkit-scrollbar-thumb:horizontal:active {
  background: #414e21;
  -webkit-border-radius: 0;
}

* {
  box-sizing: border-box;
}

body, html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #59685D;
  font-family: "Martel", serif;
  text-align: left;
  line-height: 1.8;
  font-weight: 400;
  background: #fff;
}
@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }
}
body.menu-active, body.drawer-on {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
}

.visually-hidden {
  display: none !important;
}

.mobile-hide {
  display: none;
}
@media (min-width: 1024px) {
  .mobile-hide {
    display: block;
  }
}

#header .inner {
  max-width: 1920px;
  margin: 0 auto;
}

#navbar {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  gap: 7px;
  display: flex;
  justify-content: flex-end;
  transition: all 0.4s ease-out;
}
header.scrolled #navbar {
  background: #fff;
}
body.menu-active #navbar {
  background: unset;
}
@media (min-width: 769px) {
  #navbar {
    justify-content: flex-start;
  }
}
@media (min-width: 1408px) {
  #navbar {
    padding: 0 135px;
  }
}
#navbar .navbar-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 769px) {
  #navbar .navbar-item {
    height: 64px;
  }
}
#navbar .navbar-item a {
  font-family: "Martel Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #59685D;
  cursor: pointer;
}
@media (min-width: 769px) {
  #navbar .navbar-item a {
    width: 128px;
    height: 128px;
  }
}
#navbar #viewgallery {
  font-weight: 900;
  font-size: 16px;
  background: #dee4d2;
}
body.menu-active #navbar #viewgallery {
  visibility: hidden;
}
#navbar #viewgallery span {
  line-height: 1.3em;
  letter-spacing: 1.6px;
  display: none;
  font-weight: 300;
}
#navbar #viewgallery span span {
  font-weight: 700;
}
@media (min-width: 769px) {
  #navbar #viewgallery span {
    display: inline-block;
  }
}
#navbar #viewgallery img {
  width: 50px;
  height: 50px;
}
@media (min-width: 769px) {
  #navbar #viewgallery img {
    width: 60px;
    height: 60px;
  }
}
#navbar #mainLogo {
  background: #89A446;
}
#navbar #mainLogo img {
  width: 35px;
  height: auto;
}
@media (min-width: 769px) {
  #navbar #mainLogo img {
    width: 76px;
    height: 60px;
  }
}
@media (min-width: 769px) {
  body.homepage #navbar #mainLogo {
    display: none;
  }
}
@media (min-width: 769px) {
  body.stickyLogo #navbar #mainLogo, body.menu-active #navbar #mainLogo {
    display: block;
  }
}
#navbar #cta-call {
  display: none;
}
@media (min-width: 769px) {
  #navbar #cta-call {
    position: relative;
    background: rgba(137, 164, 70, 0.5019607843);
    color: #fff;
    font-family: "Martel Sans", sans-serif;
    font-weight: 900;
    width: 64px;
    height: 64px;
    transition: all 0.4s ease-out;
  }
  body.menu-active #navbar #cta-call {
    display: block;
    margin-left: auto;
  }
  #navbar #cta-call a {
    width: 64px;
    height: 64px;
  }
  #navbar #cta-call:hover {
    background: #89A446;
  }
}
#navbar #switchlang-header {
  position: relative;
  font-family: "Martel Sans", sans-serif;
  font-weight: 900;
  transition: all 0.4s ease-out;
}
body.menu-active #navbar #switchlang-header {
  margin-left: unset;
}
@media (min-width: 769px) {
  #navbar #switchlang-header {
    margin-left: auto;
  }
}
#navbar #switchlang-header .lang-inline {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  box-sizing: border-box;
}
#navbar #switchlang-header .lang-inline li {
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
}
#navbar #switchlang-header .lang-inline li a {
  width: auto;
  height: auto;
  display: block;
  text-decoration: none;
  padding: 4px;
  color: #fff;
  transition: color 0.4s ease-out;
}
header.scrolled #navbar #switchlang-header .lang-inline li a {
  color: #89A446;
}
#navbar #switchlang-header .lang-inline li a:hover {
  color: #414e21;
}
#navbar #switchlang-header .lang-inline li:first-child:after {
  content: ".";
  color: #fff;
  padding: 0 0.5rem 0 0.25rem;
}
header.scrolled #navbar #switchlang-header .lang-inline li:first-child:after {
  color: #89A446;
}
#navbar #cta-request, #navbar #cta-booking {
  display: none;
}
@media (min-width: 769px) {
  #navbar #cta-request, #navbar #cta-booking {
    display: block;
    width: auto;
    height: 64px;
    background: rgba(137, 164, 70, 0.5019607843);
    transition: all 0.4s ease-out;
  }
  #navbar #cta-request:hover, #navbar #cta-booking:hover {
    background: #89A446;
  }
  #navbar #cta-request a, #navbar #cta-booking a {
    width: auto;
    height: 64px;
    display: flex;
    color: #fff;
    margin: 0 20px;
    line-height: 1.1em;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.6px;
  }
  #navbar #cta-request a span, #navbar #cta-booking a span {
    font-weight: 200;
  }
}
#navbar #cta-booking {
  background: #59685D;
}

#menu-opener {
  display: none !important;
}
@media (min-width: 769px) {
  #menu-opener {
    display: flex !important;
  }
}

#menu-opener-mobile {
  display: flex !important;
}
@media (min-width: 769px) {
  #menu-opener-mobile {
    display: none !important;
  }
}

#menu-opener, #menu-opener-mobile {
  align-items: center;
  gap: 1rem;
  background: #59685D;
}
#menu-opener .icon, #menu-opener-mobile .icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 25px;
  height: 14px;
}
@media (min-width: 769px) {
  #menu-opener .icon, #menu-opener-mobile .icon {
    width: 59px;
    height: 41px;
  }
}
#menu-opener .icon .bar, #menu-opener-mobile .icon .bar {
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.2s linear;
}
@media (min-width: 769px) {
  #menu-opener .icon .bar, #menu-opener-mobile .icon .bar {
    height: 2px;
  }
}
#menu-opener:hover, #menu-opener-mobile:hover {
  cursor: pointer;
}
#menu-opener.is-open .icon .bar.top, #menu-opener-mobile.is-open .icon .bar.top {
  transform: translateY(6px) rotate(45deg);
}
@media (min-width: 769px) {
  #menu-opener.is-open .icon .bar.top, #menu-opener-mobile.is-open .icon .bar.top {
    transform: translateY(20px) rotate(45deg);
  }
}
#menu-opener.is-open .icon .bar.middle, #menu-opener-mobile.is-open .icon .bar.middle {
  opacity: 0;
}
#menu-opener.is-open .icon .bar.bottom, #menu-opener-mobile.is-open .icon .bar.bottom {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 769px) {
  #menu-opener.is-open .icon .bar.bottom, #menu-opener-mobile.is-open .icon .bar.bottom {
    transform: translateY(-20px) rotate(-45deg);
  }
}

#main-menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #59685D;
  font-family: "Martel Sans", sans-serif;
  overflow-x: hidden;
}
body.menu-active #main-menu {
  z-index: 80;
  height: 100vh;
  overflow-y: scroll;
}
@media (min-width: 769px) {
  body.menu-active #main-menu {
    overflow: unset;
  }
}
@media (min-width: 769px) {
  #main-menu {
    overflow: unset;
  }
}
#main-menu .two-col-design {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  #main-menu .two-col-design {
    flex-direction: row;
    background-color: unset;
    height: auto;
  }
}
#main-menu .two-col-design .col-item {
  width: 100%;
  height: max-content;
  background-color: #fff;
  transform: translateX(-100%);
  padding-left: 20px;
  padding-bottom: 75px;
}
@media (min-width: 769px) {
  #main-menu .two-col-design .col-item {
    height: 100vh;
    width: 40%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
#main-menu .two-col-design .col-item.col-bg {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 0;
  background-color: #E1E8D0;
  transform: translateX(-100%);
}
@media (min-width: 769px) {
  #main-menu .two-col-design .col-item.col-bg {
    height: 100vh;
    width: 60%;
  }
}
#main-menu .two-col-design .col-item.col-bg:before {
  background: url("/images/bg/GM_Ramage_weiß_2x.png") center repeat-x;
  background-size: 100% auto;
  content: "";
  opacity: 1;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
}
#main-menu .two-col-design .col-item:last-of-type {
  transform: translateX(200%);
}
#main-menu .mod-menu {
  display: block;
  margin: 75px 0 0;
  max-height: unset;
  min-height: unset;
}
#main-menu .mod-menu ul {
  list-style: none;
}
@media (min-width: 769px) {
  #main-menu .mod-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin: 240px 0 0;
    max-height: calc(100% - 155px);
    min-height: calc(90% - 155px);
    overflow: auto;
  }
}
#main-menu .mod-menu li {
  padding: 0 0 1vh 0;
}
#main-menu .mod-menu li a:hover, #main-menu .mod-menu li .nav-header:hover {
  cursor: pointer;
  color: #414e21;
}
#main-menu .mod-menu li .nav-header, #main-menu .mod-menu li .mainstyle {
  font-weight: 700;
  font-family: "Martel Sans", sans-serif;
  letter-spacing: 1.8px;
  line-height: 2.12em;
  margin: 0.4em 0;
  background: linear-gradient(90deg, rgba(137, 164, 70, 0.25) 0%, rgba(137, 164, 70, 0.25) 100%) repeat-x;
  background-size: 100% 5px;
  background-position-y: 0.9em;
  padding-right: 10px;
  transition: all 0.4s ease-out;
}
@media (min-width: 1024px) {
  #main-menu .mod-menu li .nav-header, #main-menu .mod-menu li .mainstyle {
    background-size: 100% 10px;
    background-position-y: 0.9em;
  }
}
#main-menu .mod-menu li .nav-header, #main-menu .mod-menu li .mainstyle {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  text-decoration: none;
  color: #59685D;
}
#main-menu .mod-menu li .nav-header::before, #main-menu .mod-menu li .mainstyle::before {
  content: "";
  display: inline-block;
  background-image: url("/images/icons/chevron-up-sharp-solid.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  width: 18px;
  height: 14px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
#main-menu .mod-menu li .mainstyle::before {
  transform: rotate(90deg);
}
#main-menu .mod-menu li:first-of-type:before {
  padding: 0;
}
#main-menu .mod-menu li:before {
  padding-top: 2vh;
}
#main-menu .mod-menu li.m-unique:before, #main-menu .mod-menu li.m-cozy:before, #main-menu .mod-menu li.m-good:before, #main-menu .mod-menu li.m-well:before, #main-menu .mod-menu li.m-self:before, #main-menu .mod-menu li.m-fit:before, #main-menu .mod-menu li.m-patrizia:before {
  display: none;
  width: 100%;
  height: 35px;
  font-size: 25px;
  color: #59685D;
  margin: 0;
  font-family: "Martel", serif;
  font-weight: 200;
}
@media (min-width: 769px) {
  #main-menu .mod-menu li.m-unique:before, #main-menu .mod-menu li.m-cozy:before, #main-menu .mod-menu li.m-good:before, #main-menu .mod-menu li.m-well:before, #main-menu .mod-menu li.m-self:before, #main-menu .mod-menu li.m-fit:before, #main-menu .mod-menu li.m-patrizia:before {
    height: 60px;
    font-size: 35px;
  }
}
#main-menu .mod-menu li.m-unique:before {
  content: "uniqueness";
}
#main-menu .mod-menu li.m-cozy:before {
  content: "cozyness";
}
#main-menu .mod-menu li.m-good:before {
  content: "goodness";
}
#main-menu .mod-menu li.m-well:before {
  content: "wellness";
}
#main-menu .mod-menu li.m-self:before {
  content: "selfness";
}
#main-menu .mod-menu li.m-fit:before {
  content: "activeness";
}
#main-menu .mod-menu li.m-patrizia:before {
  font-family: "Martel Sans", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  height: 30px;
}
body:lang(de) #main-menu .mod-menu li.m-patrizia:before {
  content: "Unser Schwesterhotel";
}
body:lang(it) #main-menu .mod-menu li.m-patrizia:before {
  content: "Partner Hotel";
}
body:lang(en) #main-menu .mod-menu li.m-patrizia:before {
  content: "Hotel Partner";
}
#main-menu .mod-menu li.m-patrizia {
  padding-top: 30px;
}
#main-menu .mod-menu li.m-patrizia img {
  display: block;
  width: 65px;
  height: auto;
  margin: 10px 0 10px 0;
}
#main-menu .mod-menu li ul {
  display: none;
  list-style: none;
  padding: 0 0 2vh 0;
}
#main-menu .mod-menu li ul li {
  padding: 5px 0 0 0;
}
#main-menu .mod-menu li ul li:before {
  content: "> ";
  display: inline-block;
  margin-right: 5px;
  width: 20px;
  height: 25px;
  color: #fff;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
#main-menu .mod-menu li ul li a {
  text-transform: uppercase;
  font-size: 16px;
  color: #59685D;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1.6px;
}
#main-menu .mod-menu li ul li.active:before {
  color: #414e21;
}
#main-menu .mod-menu li ul li.active a {
  color: #414e21;
}
#main-menu .mod-menu li.selected .nav-header::before, #main-menu .mod-menu li.active .nav-header::before {
  transform: rotate(90deg);
}
#main-menu .mod-menu li.selected ul, #main-menu .mod-menu li.active ul {
  display: block;
}
#main-menu .mod-menu li.selected ul li:hover:before, #main-menu .mod-menu li.active ul li:hover:before {
  color: #414e21;
}
#main-menu .extramenu li {
  padding: 0 0 1vh 0;
}
#main-menu .extramenu a {
  font-family: "Martel Sans", sans-serif;
  letter-spacing: 1.8px;
  line-height: 2.12em;
  margin: 0.4em 0;
  background: linear-gradient(90deg, rgba(137, 164, 70, 0.25) 0%, rgba(137, 164, 70, 0.25) 100%) repeat-x;
  background-size: 100% 5px;
  background-position-y: 0.9em;
  padding-right: 10px;
  transition: all 0.4s ease-out;
}
@media (min-width: 1024px) {
  #main-menu .extramenu a {
    background-size: 100% 10px;
    background-position-y: 0.9em;
  }
}
#main-menu .extramenu a {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #59685D;
  text-decoration: none;
}
#main-menu .extramenu a::before {
  content: ">";
  display: inline-block;
  margin-right: 5px;
  width: 18px;
  height: 14px;
}

#foto, #gmap {
  position: relative;
  display: block;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin: 0;
  font-size: 0;
}
body:not(.homepage) #foto, body:not(.homepage) #gmap {
  height: 100vh;
}
@media (min-width: 1024px) {
  body:not(.homepage) #foto, body:not(.homepage) #gmap {
    height: 70vh;
  }
}
@media (min-width: 1408px) {
  body.stickyLogo #foto:before, body.stickyLogo #gmap:before {
    content: "";
    display: block;
    height: 128px;
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 13;
  }
}
body.map-page #foto, body.map-page #gmap {
  height: 70vh;
}
@media (min-width: 1024px) {
  body.map-page #foto, body.map-page #gmap {
    height: 70vh;
  }
}
#foto .list, #gmap .list {
  overflow: hidden;
  height: 100%;
}
#foto .list img, #gmap .list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#foto .list img:not(:first-child), #gmap .list img:not(:first-child) {
  display: none;
}
#foto #slide-nav, #gmap #slide-nav {
  position: absolute;
  bottom: 80px;
  right: 80px;
  margin: 0;
  z-index: 21;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  #foto #slide-nav, #gmap #slide-nav {
    bottom: 50px;
  }
}
#foto #slide-nav a, #gmap #slide-nav a {
  padding: 0 3px;
  width: 40px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-out;
}
#foto #slide-nav a span, #gmap #slide-nav a span {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #59685D;
  margin: 0 auto;
  border-radius: 100%;
  background: rgba(89, 104, 93, 0.5);
  transition: all 0.4s ease-out;
}
#foto #slide-nav a.current span, #gmap #slide-nav a.current span {
  background: #59685d;
}
#foto #foto-after, #gmap #foto-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
#foto #foto-after .slogan, #gmap #foto-after .slogan {
  position: absolute;
  left: 5%;
  top: 25%;
  bottom: auto;
  width: 90%;
  text-align: center;
  font-size: 30px;
  font-family: "Martel", serif;
  font-weight: 300;
  line-height: 1em;
  box-sizing: border-box;
  color: #fff;
}
@media (min-width: 1024px) {
  #foto #foto-after .slogan, #gmap #foto-after .slogan {
    left: 0;
    top: auto;
    bottom: 30%;
    width: 100%;
  }
}
#foto #foto-after .slogan p, #gmap #foto-after .slogan p {
  margin: 0 20px;
}
@media (min-width: 1024px) {
  #foto #foto-after .slogan p, #gmap #foto-after .slogan p {
    margin: 0 40px;
  }
}
#foto #foto-after .slogan span, #gmap #foto-after .slogan span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
  line-height: 1.1em;
  letter-spacing: -1px;
}
#foto #foto-after .slider-scroll-down, #gmap #foto-after .slider-scroll-down {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
#foto #foto-after .slider-scroll-down .inner, #gmap #foto-after .slider-scroll-down .inner {
  padding: 90px 15px 6vh 15px;
}
@media (min-width: 1408px) {
  #foto #foto-after .slider-scroll-down, #gmap #foto-after .slider-scroll-down {
    padding: 0 135px;
  }
  #foto #foto-after .slider-scroll-down .inner, #gmap #foto-after .slider-scroll-down .inner {
    padding: 90px 135px 6vh 135px;
  }
}
#foto #foto-after .slider-scroll-down, #gmap #foto-after .slider-scroll-down {
  position: absolute;
  z-index: 22;
  bottom: 70px;
  left: calc(50% - 17.5px);
}
@media (min-width: 769px) {
  #foto #foto-after .slider-scroll-down, #gmap #foto-after .slider-scroll-down {
    bottom: 20px;
    left: calc(50% - 42.5px);
    padding: 0;
  }
}
#foto #foto-after .slider-scroll-down img, #gmap #foto-after .slider-scroll-down img {
  width: 35px;
  height: auto;
  cursor: pointer;
  transition: all 0.4s ease-out;
  -webkit-animation: ca3_fade_move_down 3s ease-in-out infinite;
  -moz-animation: ca3_fade_move_down 3s ease-in-out infinite;
  animation: ca3_fade_move_down 3s ease-in-out infinite;
}
@media (min-width: 769px) {
  #foto #foto-after .slider-scroll-down img, #gmap #foto-after .slider-scroll-down img {
    width: auto;
    height: auto;
  }
}
#foto #foto-after .mainLogoSticky, #gmap #foto-after .mainLogoSticky {
  position: sticky;
}
#foto #foto-after .mainLogoSticky .inner, #gmap #foto-after .mainLogoSticky .inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 50px 0 0 35px;
}
@media (min-width: 769px) {
  #foto #foto-after .mainLogoSticky .inner, #gmap #foto-after .mainLogoSticky .inner {
    padding: 225px 0 0 215.7999px;
  }
}
@media (min-width: 1024px) {
  #foto #foto-after .mainLogoSticky .inner, #gmap #foto-after .mainLogoSticky .inner {
    padding: 225px 0 0 215.7999px;
  }
}
@media (min-width: 1408px) {
  #foto #foto-after .mainLogoSticky .inner, #gmap #foto-after .mainLogoSticky .inner {
    padding: 225px 0 0 335.79px;
  }
}
#foto #foto-after .mainLogoSticky .inner a img, #foto #foto-after .mainLogoSticky .inner a svg, #gmap #foto-after .mainLogoSticky .inner a img, #gmap #foto-after .mainLogoSticky .inner a svg {
  width: 153px;
  height: 200px;
}
@media (min-width: 769px) {
  #foto #foto-after .mainLogoSticky .inner a img, #foto #foto-after .mainLogoSticky .inner a svg, #gmap #foto-after .mainLogoSticky .inner a img, #gmap #foto-after .mainLogoSticky .inner a svg {
    width: 266px;
    height: 345px;
  }
}
#foto #foto-after .btn-info, #gmap #foto-after .btn-info {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  font-size: 18px;
}
#foto #foto-after .cta-dropdown, #gmap #foto-after .cta-dropdown {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 100%;
  max-width: 90%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Martel Sans", sans-serif;
  z-index: 44;
  font-size: 16px;
}
@media (min-width: 1024px) {
  #foto #foto-after .cta-dropdown, #gmap #foto-after .cta-dropdown {
    font-size: 18px;
    right: 135px;
    left: auto;
    transform: unset;
    max-width: 300px;
  }
}
#foto #foto-after .cta-dropdown input, #gmap #foto-after .cta-dropdown input {
  display: none;
}
#foto #foto-after .cta-dropdown .cta-button, #gmap #foto-after .cta-dropdown .cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c4d1a4;
  color: #fff;
  font-family: "Martel Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  position: relative;
  user-select: none;
}
#foto #foto-after .cta-dropdown .cta-button .arrow, #gmap #foto-after .cta-dropdown .cta-button .arrow {
  margin-left: 12px;
  margin-bottom: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
#foto #foto-after .cta-dropdown .cta-content, #gmap #foto-after .cta-dropdown .cta-content {
  background: #E1E8D0;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: max-height 0.4s ease;
}
#foto #foto-after .cta-dropdown .cta-content a, #gmap #foto-after .cta-dropdown .cta-content a {
  padding: 12px;
  text-align: center;
  color: #59685D;
  font-weight: 700;
  font-family: "Martel Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}
#foto #foto-after .cta-dropdown .cta-content a:hover, #gmap #foto-after .cta-dropdown .cta-content a:hover {
  background: #89A446;
  color: #fff;
}
#foto #foto-after .cta-dropdown #toggle-deals:checked ~ .cta-content, #gmap #foto-after .cta-dropdown #toggle-deals:checked ~ .cta-content {
  max-height: 200px;
}
#foto #foto-after .cta-dropdown #toggle-deals:checked + .cta-button .arrow, #gmap #foto-after .cta-dropdown #toggle-deals:checked + .cta-button .arrow {
  transform: rotate(-135deg);
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  #foto #foto-after .cta-dropdown:hover .cta-content, #gmap #foto-after .cta-dropdown:hover .cta-content {
    max-height: 200px;
  }
  #foto #foto-after .cta-dropdown:hover .cta-button .arrow, #gmap #foto-after .cta-dropdown:hover .cta-button .arrow {
    transform: rotate(-135deg);
    margin-bottom: 0;
  }
}

h1, .h1 {
  position: relative;
  display: inline;
  font-size: 16px;
  font-weight: 700;
  font-family: "Martel Sans", sans-serif;
  letter-spacing: 0.15px;
  line-height: 1.12em;
  margin: 0.4em 0;
  background: linear-gradient(90deg, rgba(137, 164, 70, 0.25) 0%, rgba(137, 164, 70, 0.25) 100%) repeat-x;
  background-size: 100% 5px;
  background-position-y: 0.9em;
  padding-right: 10px;
  transition: all 0.4s ease-out;
}
@media (min-width: 1024px) {
  h1, .h1 {
    background-position-y: 0.9em;
  }
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 18px;
  }
}
h1 br, .h1 br {
  display: none;
}
@media (min-width: 1024px) {
  h1 br, .h1 br {
    display: block;
  }
}

.htitle {
  font-size: 35px;
  font-weight: 300;
  letter-spacing: 0.15px;
  line-height: 1.4em;
  margin: 1em 0 0.4em 0;
}
@media (min-width: 1024px) {
  .htitle {
    line-height: 1.12em;
    font-size: 60px;
    margin-top: 1em;
  }
}

h1 + .htitle, .h1 + .htitle, .h1 + h2 {
  margin-top: 3vh !important;
}
@media (min-width: 1024px) {
  h1 + .htitle, .h1 + .htitle, .h1 + h2 {
    margin-top: 6vh !important;
  }
}

h2 {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0.5em 0 0.1em 0;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 60px;
  }
}
h2:has(+ h3) {
  margin-bottom: 0.3em;
}

h3 {
  font-size: 22px;
  font-weight: 300;
  color: #89A446;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 36px;
  }
}

.bigtxt {
  font-weight: 300;
  font-size: 18px;
}
@media (min-width: 769px) {
  .bigtxt {
    font-size: 22px;
  }
}
@media (min-width: 1408px) {
  .bigtxt {
    font-size: 36px;
  }
}
.bigtxt strong {
  font-weight: 900;
}

.article + .section-twoColKombi {
  padding-top: 6vh;
}

#content {
  position: relative;
}
body.noPhoto #content {
  padding-top: 50px;
}
@media (min-width: 769px) {
  body.noPhoto #content {
    padding-top: 125px;
  }
}
body.map-page #content {
  padding-top: 0;
}
@media (min-width: 769px) {
  body.map-page #content {
    padding-top: 0;
  }
}
body.blogview #content {
  padding-top: 0;
}
@media (min-width: 769px) {
  body.blogview #content {
    padding-top: 0;
  }
}
body.blogview #content .article.bg-light {
  position: relative;
  padding-top: 50px;
  background-color: rgba(137, 164, 70, 0.3);
  background-image: url("/images/bg/GM_Ramage_weiß_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 769px) {
  body.blogview #content .article.bg-light {
    padding-top: 125px;
  }
}
@media (min-width: 1024px) {
  body.blogview #content .article.bg-light {
    background-image: url("/images/bg/bg-header-alternative.png");
  }
}
body.blogview #content .article .item-page.max-width-content .inner {
  max-width: calc(100% - 15px);
}
@media (min-width: 769px) {
  body.blogview #content .article .item-page.max-width-content .inner {
    max-width: calc(100% - 135px);
  }
}
@media (min-width: 1408px) {
  body.blogview #content .article .item-page.max-width-content .inner {
    max-width: calc(100% - 135px);
  }
}
body.lastminutepage #content .item-page .inner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
#content .article {
  position: relative;
  z-index: 12;
}
#content .article .item-page {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
#content .article .item-page .inner {
  padding: 90px 15px 6vh 15px;
}
@media (min-width: 1408px) {
  #content .article .item-page {
    padding: 0 135px;
  }
  #content .article .item-page .inner {
    padding: 90px 135px 6vh 135px;
  }
}
#content .article ul {
  list-style-position: inside;
}
#content a:not(.underline-small, .underline-medium, .ba-filter) {
  color: #59685D;
  transition: all 0.4s ease-out;
}
#content a:not(.underline-small, .underline-medium, .ba-filter):hover {
  color: #89A446;
}
#content p {
  margin: 1vh 0 2vh 0;
}
#content .smalltxt {
  color: rgba(137, 164, 70, 0.5);
  font-size: 22px;
}
@media (min-width: 1024px) {
  #content .smalltxt {
    font-size: 36px;
  }
}
#content .underline-small {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #59685D;
  text-decoration: none;
  font-weight: 700;
  font-family: "Martel Sans", sans-serif;
  letter-spacing: 0.15px;
  line-height: 1.12em;
  margin: 0.4em 0;
  background: linear-gradient(90deg, rgba(137, 164, 70, 0.25) 0%, rgba(137, 164, 70, 0.25) 100%) repeat-x;
  background-size: 100% 5px;
  background-position-y: 0.9em;
  padding-right: 10px;
  transition: all 0.4s ease-out;
}
@media (min-width: 1024px) {
  #content .underline-small {
    background-position-y: 0.9em;
  }
}
#content .underline-medium {
  text-transform: uppercase;
  color: #59685D;
  text-decoration: none;
  font-weight: 700;
  font-family: "Martel Sans", sans-serif;
  letter-spacing: 1.8px;
  line-height: 2.12em;
  margin: 0.4em 0;
  background: linear-gradient(90deg, rgba(137, 164, 70, 0.25) 0%, rgba(137, 164, 70, 0.25) 100%) repeat-x;
  background-size: 100% 5px;
  background-position-y: 0.9em;
  padding-right: 10px;
  transition: all 0.4s ease-out;
}
@media (min-width: 1024px) {
  #content .underline-medium {
    background-size: 100% 10px;
    background-position-y: 0.9em;
  }
}
#content a.underline-small:hover, #content a.underline-medium:hover, #content button.underline-medium:hover, #content button.underline-small:hover {
  color: #89A446;
  background-size: 100% 100%;
  background-position: top;
}
#content .accordionbox {
  padding: 40px 24px;
  max-width: 950px;
  position: relative;
  background-color: rgba(137, 164, 70, 0.2);
  background-image: url("/images/bg/GM_Ramage_weiß_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 1024px) {
  #content .accordionbox {
    padding: 50px 64px;
    background-image: url("/images/bg/bg-header-alternative.png");
  }
}
#content .accordionbox h3 {
  color: #59685D;
  font-weight: 300;
  font-size: 36px;
  margin-bottom: 20px;
}
@media (min-width: 1408px) {
  #content .accordionbox h3 {
    font-size: 36px;
  }
}
#content .accordion {
  position: relative;
  color: #59685D;
  cursor: pointer;
  padding: 8px 42px 8px 0;
  margin: 0;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  max-width: 956px;
  font-family: "Martel Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15px;
  border-top: 1px solid #89A446;
}
@media (min-width: 1024px) {
  #content .accordion {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border-top: 2px solid #89A446;
    padding: 14px 55px 14px 0;
  }
}
#content .accordion {
  transition: all 0.4s ease-out;
}
#content .accordion::after {
  content: "+";
  color: #59685D;
  font-weight: 200;
  position: absolute;
  right: 0;
  top: 5px;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 27.25px;
  line-height: 33px;
}
@media (min-width: 1024px) {
  #content .accordion::after {
    font-size: 47.25px;
    top: 16px;
  }
}
#content .accordion.active::after {
  content: "−";
}
#content .accordionpanel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  max-width: 850px;
}
#content .accordionpanel strong {
  text-decoration: underline;
}
#content .accordionpanel ul li {
  list-style-position: inside;
}
#content figure.img-deco {
  position: relative;
}
#content figure.img-deco:before {
  display: block;
  position: absolute;
  top: -40px;
  right: 98px;
  width: 51px;
  height: 39px;
  content: url("/images/icons/bird-medium.png");
}
@media (min-width: 769px) {
  #content figure.img-deco:before {
    top: -60px;
    width: 77px;
    height: 61px;
    right: 22%;
    content: url("/images/icons/bird.png");
  }
}
#content figure.img-deco img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#content section.section-item {
  overflow: hidden;
  position: relative;
  z-index: 12;
}
#content section.section-item .main-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
#content section.section-item .main-content .inner {
  padding: 90px 15px 6vh 15px;
}
@media (min-width: 1408px) {
  #content section.section-item .main-content {
    padding: 0 135px;
  }
  #content section.section-item .main-content .inner {
    padding: 90px 135px 6vh 135px;
  }
}
#content section.section-item.no-p-top .inner {
  padding-top: 0;
}
@media (min-width: 1024px) {
  #content section.section-item.no-p-top .inner {
    padding-top: 0;
  }
}
#content section.section-text .main-content ul {
  list-style-position: inside;
}
#content section.section-text .after-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
#content section.section-text .after-content .inner {
  padding: 90px 15px 6vh 15px;
}
@media (min-width: 1408px) {
  #content section.section-text .after-content {
    padding: 0 135px;
  }
  #content section.section-text .after-content .inner {
    padding: 90px 135px 6vh 135px;
  }
}
#content section.section-text .after-content .inner.two-col {
  display: flex;
  gap: 17px;
  flex-direction: row-reverse;
}
@media (min-width: 769px) {
  #content section.section-text .after-content .inner.two-col {
    flex-direction: row;
    width: 100%;
    margin-left: auto;
  }
}
@media (min-width: 1601px) {
  #content section.section-text .after-content .inner.two-col {
    width: 85%;
  }
}
#content section.section-text .after-content .inner.two-col img.only-mobile {
  max-width: 127px;
  height: auto;
  display: block;
}
@media (min-width: 769px) {
  #content section.section-text .after-content .inner.two-col img.only-mobile {
    display: none;
  }
}
#content section.section-text .after-content .inner.two-col img.only-desktop {
  max-width: 402px;
  height: auto;
  display: none;
}
@media (min-width: 769px) {
  #content section.section-text .after-content .inner.two-col img.only-desktop {
    display: block;
  }
}
#content section.section-text .colored-bg {
  position: relative;
}
#content section.section-text .colored-bg:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: calc(100% + 30px);
  transform: translate(30px, 0);
  height: 100%;
  background-image: url("/images/bg/GM_Ramage_hellgruen_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 769px) {
  #content section.section-text .colored-bg:after {
    width: calc(100% + 135px);
    transform: translate(-135px, 0);
  }
}
#content section.section-bildTextKombi .main-content:before {
  position: absolute;
  content: "";
  top: 135px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url("/images/bg/GM_Ramage_hellgruen_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media (min-width: 769px) {
  #content section.section-bildTextKombi .main-content:before {
    top: 135px;
  }
}
@media (min-width: 1408px) {
  #content section.section-bildTextKombi .main-content:before {
    top: 170px;
  }
}
#content section.section-bildTextKombi .main-content .inner {
  display: flex;
  gap: 35px;
  justify-content: center;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  #content section.section-bildTextKombi .main-content .inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 74px;
  }
}
#content section.section-bildTextKombi .main-content .inner .txt-content {
  width: 100%;
  flex: 1;
}
@media (min-width: 769px) {
  #content section.section-bildTextKombi .main-content .inner .txt-content {
    width: 100%;
    min-width: 365px;
  }
}
#content section.section-bildTextKombi .main-content .inner .imgsx img, #content section.section-bildTextKombi .main-content .inner .imgdx img {
  width: 100%;
  height: auto;
  display: block;
}
#content section.section-bildTextKombi .main-content .inner .imgsx {
  transform: translateX(-30px);
}
@media (min-width: 1024px) {
  #content section.section-bildTextKombi .main-content .inner .imgsx {
    transform: none;
  }
}
#content section.section-bildTextKombi .main-content .inner .imgsx img {
  width: 100%;
  max-width: 231px;
  height: auto;
}
@media (min-width: 1024px) {
  #content section.section-bildTextKombi .main-content .inner .imgsx img {
    max-width: 542px;
  }
}
#content section.section-bildTextKombi .main-content .inner .imgdx {
  transform: translateX(30px);
}
@media (min-width: 1024px) {
  #content section.section-bildTextKombi .main-content .inner .imgdx {
    transform: none;
  }
}
#content section.section-bildTextKombi .main-content .inner .imgdx img {
  width: 100%;
  max-width: 179px;
  height: auto;
  margin-left: auto;
}
@media (min-width: 1024px) {
  #content section.section-bildTextKombi .main-content .inner .imgdx img {
    max-width: 267px;
  }
}
#content section.hr-element {
  padding: 2vh 0;
}
@media (min-width: 1024px) {
  #content section.hr-element {
    padding: 9vh 0 0 0;
  }
}
#content section.hr-element .main-content .inner {
  position: relative;
}
#content section.hr-element hr {
  position: relative;
  height: 5px;
  background-color: #89A446;
  border: none;
  margin-bottom: 20px;
  overflow: visible;
}
@media (min-width: 1024px) {
  #content section.hr-element hr {
    height: 10px;
  }
}
#content section.hr-element hr:before {
  display: block;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 98px;
  width: 51px;
  height: 44px;
  margin-left: auto;
  content: url("/images/icons/bird-medium.png");
}
@media (min-width: 769px) {
  #content section.hr-element hr:before {
    width: 77px;
    height: 61px;
    left: 0;
    bottom: 9px;
    margin-left: 135px;
    margin-right: auto;
    content: url("/images/icons/bird.png");
  }
}
#content section.hr-element hr + p {
  color: rgba(137, 164, 70, 0.5);
  font-size: 35px;
  line-height: normal;
}
@media (min-width: 1408px) {
  #content section.hr-element hr + p {
    font-size: 60px;
    line-height: normal;
  }
}
#content section.section-blockquote .main-content h2 {
  color: rgba(137, 164, 70, 0.5019607843);
  font-weight: 300;
}
@media (min-width: 1408px) {
  #content section.section-blockquote .main-content h2 {
    padding-left: 135px;
  }
}
#content section.section-blockquote .blockquote-swiper {
  position: relative;
  background-color: rgba(137, 164, 70, 0.3);
  background-image: url("/images/bg/GM_Ramage_weiß_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 1024px) {
  #content section.section-blockquote .blockquote-swiper {
    background-image: url("/images/bg/bg-header-alternative.png");
  }
}
#content section.section-blockquote .blockquote-swiper:after {
  display: block;
  position: absolute;
  bottom: 0;
  content: url("/images/icons/bird.png");
  width: 77px;
  height: 61px;
  left: auto;
  right: 0;
  margin-right: 75px;
}
@media (min-width: 1024px) {
  #content section.section-blockquote .blockquote-swiper:after {
    margin-right: 135px;
  }
}
#content section.section-blockquote .blockquote-swiper .inner {
  padding: 4vh 0 9vh 0;
  margin: 0 15px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #content section.section-blockquote .blockquote-swiper .inner {
    padding: 4.5vh 0 9vh 0;
    margin: 0 135px;
  }
}
#content section.section-blockquote .blockquote-swiper .quotes-content {
  font-family: "Martel Sans", sans-serif;
}
#content section.section-blockquote .blockquote-swiper .underline-medium {
  font-weight: 700;
}
#content section.section-medien .medien-swiper {
  position: relative;
}
#content section.section-medien .medien-swiper .mod-list {
  overflow: hidden;
}
#content section.section-medien .medien-swiper .list-item img, #content section.section-medien .medien-swiper .list-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1920/1080;
}
#content section.section-medientxt:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url("/images/bg/GM_Ramage_hellgruen_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom right;
  height: 80%;
  width: 100%;
  z-index: -1;
}
#content section.section-medientxt .main-content .inner:before {
  display: block;
  position: absolute;
  top: 51px;
  right: 113px;
  width: 51px;
  height: 39px;
  content: url("/images/icons/bird-medium.png");
}
@media (min-width: 769px) {
  #content section.section-medientxt .main-content .inner:before {
    width: 77px;
    height: 61px;
    right: 22%;
    top: 30px;
    content: url("/images/icons/bird.png");
  }
}
#content section.section-medientxt .main-content .inner {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1601px) {
  #content section.section-medientxt .main-content .inner {
    flex-direction: row;
  }
}
#content section.section-medientxt .main-content .inner .medien-swiper {
  width: 100%;
}
@media (min-width: 1601px) {
  #content section.section-medientxt .main-content .inner .medien-swiper {
    width: 70%;
  }
}
#content section.section-medientxt .main-content .inner .medien-swiper {
  position: relative;
}
#content section.section-medientxt .main-content .inner .medien-swiper .mod-list {
  overflow: hidden;
}
@media (min-width: 1601px) {
  #content section.section-medientxt .main-content .inner .medien-swiper .mod-list .swiper-slide {
    height: 640px;
  }
}
#content section.section-medientxt .main-content .inner .medien-swiper .list-item img, #content section.section-medientxt .main-content .inner .medien-swiper .list-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1920/1080;
}
@media (min-width: 1601px) {
  #content section.section-medientxt .main-content .inner .medien-swiper .slidePrev-btn, #content section.section-medientxt .main-content .inner .medien-swiper .slideNext-btn {
    right: -57%;
  }
}
#content section.section-medientxt .main-content .inner .medien-swiper .slidePrev-btn {
  top: 80px;
}
@media (min-width: 1408px) {
  #content section.section-medientxt .main-content .inner .medien-swiper .slidePrev-btn {
    top: 128px;
  }
}
#content section.section-medientxt .main-content .inner .medien-swiper .slideNext-btn {
  top: 30px;
}
@media (min-width: 1408px) {
  #content section.section-medientxt .main-content .inner .medien-swiper .slideNext-btn {
    top: 0;
  }
}
#content section.section-medientxt .main-content .inner .medien-text {
  position: relative;
  width: 100%;
  background: #59685D;
  color: #fff;
  font-family: "Martel Sans", sans-serif;
  font-weight: 300;
  padding: 4vh 15px 6vh 15px;
  margin: 2px 0 0 0;
}
@media (min-width: 1601px) {
  #content section.section-medientxt .main-content .inner .medien-text {
    width: 26%;
    padding: 42px;
    margin: 0 0 0 10px;
    max-height: 80vh;
    overflow: auto;
  }
}
@media (min-width: 1750px) {
  #content section.section-medientxt .main-content .inner .medien-text {
    width: 29%;
    padding: 62px;
    margin: 0 0 0 10px;
  }
}
#content section.only-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#content section.section-treeColSwiper:before {
  position: absolute;
  content: "";
  top: 135px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url("/images/bg/GM_Ramage_hellgruen_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media (min-width: 769px) {
  #content section.section-treeColSwiper:before {
    top: 135px;
  }
}
@media (min-width: 1408px) {
  #content section.section-treeColSwiper:before {
    top: 230px;
  }
}
#content section.section-treeColSwiper.bg-lightgreen:before {
  top: 6vh;
  background-color: rgba(137, 164, 70, 0.2);
  background-image: url("/images/bg/GM_Ramage_weiß_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 1024px) {
  #content section.section-treeColSwiper.bg-lightgreen:before {
    background-image: url("/images/bg/bg-header-alternative.png");
  }
}
@media (min-width: 769px) {
  #content section.section-treeColSwiper.bg-lightgreen:before {
    top: 6vh;
  }
}
@media (min-width: 1408px) {
  #content section.section-treeColSwiper.bg-lightgreen:before {
    top: 90px;
  }
}
#content section.section-treeColSwiper .treeColSwiper {
  position: relative;
}
#content section.section-treeColSwiper .treeColSwiper .mod-list {
  overflow: hidden;
}
#content section.section-treeColSwiper .treeColSwiper .mod-list .swiper-slide {
  transition-timing-function: cubic-bezier(0.76, 0.09, 0.215, 1);
  padding: 0 5px;
}
#content section.section-treeColSwiper .treeColSwiper .list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 154/200;
}
#content section.section-treeColSwiper .treeColTextSwiper {
  position: relative;
}
#content section.section-treeColSwiper .treeColTextSwiper .mod-list {
  overflow: hidden;
}
#content section.section-treeColSwiper .treeColTextSwiper .mod-list .swiper-slide {
  transition-timing-function: cubic-bezier(0.76, 0.09, 0.215, 1);
  padding: 0 5px;
  cursor: grab;
}
#content section.section-treeColSwiper .treeColTextSwiper .list-item img {
  width: 70%;
  min-width: 190px;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 154/200;
}
@media (min-width: 1024px) {
  #content section.section-treeColSwiper .treeColTextSwiper .list-item img {
    width: 100%;
  }
}
#content section.section-treeColSwiper .treeColTextSwiper .list-item .itemtxt h3 {
  color: #59685D;
  font-weight: 700;
}
#content section.section-treeColSwiper .txtright {
  text-align: left;
}
@media (min-width: 1024px) {
  #content section.section-treeColSwiper .txtright {
    text-align: right;
  }
}
#content section.section-twoColKombi {
  padding-bottom: 6vh;
}
#content section.section-twoColKombi .main-content:before {
  position: absolute;
  content: "";
  top: 135px;
  left: 0;
  background: rgba(137, 164, 70, 0.1) url("/images/bg/GM_Ramage_weiß.png") 0 0 repeat padding-box;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media (min-width: 769px) {
  #content section.section-twoColKombi .main-content:before {
    top: 135px;
  }
}
@media (min-width: 1408px) {
  #content section.section-twoColKombi .main-content:before {
    top: 170px;
  }
}
#content section.section-twoColKombi .main-content .inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
#content section.section-twoColKombi .main-content .inner .inner {
  padding: 90px 15px 6vh 15px;
}
@media (min-width: 1408px) {
  #content section.section-twoColKombi .main-content .inner {
    padding: 0 135px;
  }
  #content section.section-twoColKombi .main-content .inner .inner {
    padding: 90px 135px 6vh 135px;
  }
}
#content section.section-twoColKombi .main-content .inner .imgbox {
  display: flex;
  gap: 5px;
  justify-content: center;
}
@media (min-width: 1024px) {
  #content section.section-twoColKombi .main-content .inner .imgbox {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  #content section.section-twoColKombi .main-content .inner .imgbox .imgsx, #content section.section-twoColKombi .main-content .inner .imgbox .imgdx {
    width: 70%;
  }
}
#content section.section-twoColKombi .main-content .inner .imgbox .imgsx img, #content section.section-twoColKombi .main-content .inner .imgbox .imgdx img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#content section.section-twoColKombi .main-content .inner .imgbox .imgsx.imgdx, #content section.section-twoColKombi .main-content .inner .imgbox .imgdx.imgdx {
  display: none;
}
@media (min-width: 1024px) {
  #content section.section-twoColKombi .main-content .inner .imgbox .imgsx.imgdx, #content section.section-twoColKombi .main-content .inner .imgbox .imgdx.imgdx {
    display: block;
    width: 30%;
  }
}
#content section.section-twoColKombi .main-content .inner .txt-content {
  width: 100%;
  flex: 1;
}
@media (min-width: 769px) {
  #content section.section-twoColKombi .main-content .inner .txt-content {
    width: 100%;
    min-width: 365px;
  }
}
#content section.section-quick .main-content h2 {
  color: rgba(137, 164, 70, 0.5019607843);
  font-weight: 300;
  padding-left: 30px;
}
@media (min-width: 1408px) {
  #content section.section-quick .main-content h2 {
    padding-left: 135px;
  }
}
#content section.section-quick .quickform {
  position: relative;
  margin-bottom: 3em;
  background-color: rgba(137, 164, 70, 0.3);
  background-image: url("/images/bg/GM_Ramage_weiß_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform {
    background-image: url("/images/bg/bg-header-alternative.png");
  }
}
@media (min-width: 1408px) {
  #content section.section-quick .quickform .inner {
    padding: 9vh 75px 6vh 75px;
  }
}
@media (min-width: 1750px) {
  #content section.section-quick .quickform .inner {
    padding: 9vh 75px 6vh 135px;
  }
}
#content section.section-quick .quickform .inner form {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 769px) {
  #content section.section-quick .quickform .inner form {
    justify-content: space-evenly;
  }
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform .inner form {
    gap: 60px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
#content section.section-quick .quickform .inner form .form-row {
  position: relative;
}
#content section.section-quick .quickform .inner form .form-row .groupform {
  position: relative;
}
#content section.section-quick .quickform .inner form .form-row .groupform svg.svg-inline {
  outline: none;
  width: 30px;
  height: 30px;
}
#content section.section-quick .quickform .inner form .form-row .groupform svg.svg-inline path {
  fill: #59685D;
}
#content section.section-quick .quickform .inner form .row-invia {
  width: 100%;
  margin-left: auto;
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform .inner form .row-invia {
    width: auto;
  }
}
#content section.section-quick .quickform .inner form .row-invia svg {
  position: relative;
  bottom: 3px;
}
#content section.section-quick .quickform .inner form input {
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  width: 150px;
  color: #59685D;
  font-weight: 300;
  font-family: "Martel", serif;
  font-size: 22px;
  outline: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform .inner form input {
    width: 200px;
    font-size: 36px;
  }
}
#content section.section-quick .quickform .inner form input#express-persons {
  width: 50px;
  text-align: center;
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform .inner form input#express-persons {
    width: 50px;
  }
}
#content section.section-quick .quickform .inner form .group-number {
  display: flex;
  position: relative;
  padding-right: 30px;
}
#content section.section-quick .quickform .inner form .group-number #express-persons[type=number]::-webkit-inner-spin-button,
#content section.section-quick .quickform .inner form .group-number #express-persons[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#content section.section-quick .quickform .inner form .group-number #express-persons[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
#content section.section-quick .quickform .inner form .group-number .groupbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#content section.section-quick .quickform .inner form .group-number .groupbox button {
  position: relative;
  outline: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  color: #59685D;
  cursor: pointer;
  margin: 0;
  width: 18px;
  height: 18px;
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform .inner form .group-number .groupbox button {
    width: 20px;
    height: 20px;
  }
}
#content section.section-quick .quickform .inner form .group-number .groupbox svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform .inner form .group-number .groupbox svg {
    width: 20px;
    height: 20px;
  }
}
#content section.section-quick .quickform .inner form svg.svg-inline--fa {
  width: 30px;
  height: 37px;
}
#content section.section-quick .quickform .inner form span {
  margin-left: 5px;
  font-size: 22px;
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform .inner form span {
    margin-left: 10px;
    font-size: 36px;
  }
}
#content section.section-quick .quickform .inner form button:not(.picker__footer button) {
  border: none;
  box-sizing: border-box;
  margin: 0;
  font-size: 22px;
  font-family: "Martel", serif;
  font-weight: 800;
  text-transform: none;
  background-size: 100% 10px;
  background-position-y: 0.9em;
  cursor: pointer;
}
@media (min-width: 1024px) {
  #content section.section-quick .quickform .inner form button:not(.picker__footer button) {
    font-size: 36px;
    background-position-y: 1.05em;
  }
}
#content section.section-quick .quickform .inner form button:not(.picker__footer button):hover {
  color: #89A446;
  background-size: 100% 100%;
  background-position: top;
}
#content section.section-quick .after-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
#content section.section-quick .after-content .inner {
  padding: 90px 15px 6vh 15px;
}
@media (min-width: 1408px) {
  #content section.section-quick .after-content {
    padding: 0 135px;
  }
  #content section.section-quick .after-content .inner {
    padding: 90px 135px 6vh 135px;
  }
}
#content section.section-quick .after-content .inner {
  padding: 2vh 15px;
}
@media (min-width: 1408px) {
  #content section.section-quick .after-content .inner {
    padding: 9vh 135px 6vh 135px;
  }
}
#content section.section-imageMap .inner, #content section.section-imageMap-familienfreundlich .inner {
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: 9vh !important;
}
#content section.section-imageMap .image-map, #content section.section-imageMap-familienfreundlich .image-map {
  position: relative;
  max-width: 1371px;
  margin: auto;
  background-color: #ccc;
}
#content section.section-imageMap .image-map img, #content section.section-imageMap-familienfreundlich .image-map img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
#content section.section-imageMap .image-map .map-popup, #content section.section-imageMap-familienfreundlich .image-map .map-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  width: 60%;
  padding: 1rem 1rem 30px 1rem;
  background-color: #fff;
  transition: all 300ms ease-in;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
}
#content section.section-imageMap .image-map .map-popup:after, #content section.section-imageMap-familienfreundlich .image-map .map-popup:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background: url("/images/icons/bird-small.png");
  width: 38px;
  height: 30px;
  left: auto;
  right: 0;
  margin-left: auto;
  margin-right: 15px;
}
#content section.section-imageMap .image-map .map-popup > *:first-child, #content section.section-imageMap-familienfreundlich .image-map .map-popup > *:first-child {
  margin-top: 0;
}
#content section.section-imageMap .image-map .map-popup > *:last-child, #content section.section-imageMap-familienfreundlich .image-map .map-popup > *:last-child {
  margin-bottom: 0;
}
#content section.section-imageMap .image-map .map-popup.open, #content section.section-imageMap-familienfreundlich .image-map .map-popup.open {
  opacity: 1;
  visibility: visible;
}
#content section.section-imageMap .image-map .map-popup p, #content section.section-imageMap-familienfreundlich .image-map .map-popup p {
  font-size: 16px;
  font-family: "Martel Sans", sans-serif;
  font-weight: 300;
  color: #89A446;
  line-height: 1.4;
}
@media (min-width: 769px) {
  #content section.section-imageMap .image-map .map-popup, #content section.section-imageMap-familienfreundlich .image-map .map-popup {
    position: absolute;
    left: 58px;
    width: 180px;
    transform: translateY(-50%);
  }
  #content section.section-imageMap .image-map .map-popup:before, #content section.section-imageMap-familienfreundlich .image-map .map-popup:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    margin-top: -16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 16px 16px 0;
    border-color: transparent #fff transparent transparent;
  }
  #content section.section-imageMap .image-map .map-popup.edge, #content section.section-imageMap-familienfreundlich .image-map .map-popup.edge {
    left: auto;
    right: calc(100% + 24px);
  }
  #content section.section-imageMap .image-map .map-popup.edge:before, #content section.section-imageMap-familienfreundlich .image-map .map-popup.edge:before {
    left: auto;
    right: -16px;
    border-width: 16px 0 16px 16px;
    border-color: transparent transparent transparent #fff;
  }
}
#content section.section-imageMap .image-map .marker, #content section.section-imageMap-familienfreundlich .image-map .marker {
  position: absolute;
  z-index: 1;
  display: inline-block;
  width: 26px;
  height: 26px;
  color: #59685D;
  line-height: 31px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  background-color: #fff;
  transition: all 300ms;
}
@media (min-width: 769px) {
  #content section.section-imageMap .image-map .marker, #content section.section-imageMap-familienfreundlich .image-map .marker {
    width: 36px;
    height: 36px;
    line-height: 42px;
    font-size: 27px;
  }
}
#content section.section-imageMap .image-map .marker.active, #content section.section-imageMap-familienfreundlich .image-map .marker.active {
  background-color: rgba(255, 255, 255, 0.5);
}
#content section.section-imageMap .image-map .marker.active svg, #content section.section-imageMap-familienfreundlich .image-map .marker.active svg {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  #content section.section-imageMap .image-map .marker1, #content section.section-imageMap-familienfreundlich .image-map .marker1 {
    top: 36%;
    left: 52%;
  }
  #content section.section-imageMap .image-map .marker2, #content section.section-imageMap-familienfreundlich .image-map .marker2 {
    top: 13%;
    left: 22%;
  }
  #content section.section-imageMap .image-map .marker3, #content section.section-imageMap-familienfreundlich .image-map .marker3 {
    top: 44%;
    left: 79%;
  }
  #content section.section-imageMap .image-map .marker4, #content section.section-imageMap-familienfreundlich .image-map .marker4 {
    top: 23%;
    left: 51%;
  }
  #content section.section-imageMap .image-map .marker5, #content section.section-imageMap-familienfreundlich .image-map .marker5 {
    top: 63%;
    left: 23%;
  }
  #content section.section-imageMap .image-map .marker6, #content section.section-imageMap-familienfreundlich .image-map .marker6 {
    top: 52%;
    left: 14%;
  }
  #content section.section-imageMap .image-map .marker7, #content section.section-imageMap-familienfreundlich .image-map .marker7 {
    top: 43%;
    left: 38%;
  }
}
@media (min-width: 769px) {
  #content section.section-imageMap .image-map .map-item, #content section.section-imageMap-familienfreundlich .image-map .map-item {
    position: absolute;
    width: 36px;
    height: 36px;
  }
  #content section.section-imageMap .image-map .map-item1, #content section.section-imageMap-familienfreundlich .image-map .map-item1 {
    top: 36%;
    left: 52%;
  }
  #content section.section-imageMap .image-map .map-item2, #content section.section-imageMap-familienfreundlich .image-map .map-item2 {
    top: 13%;
    left: 22%;
  }
  #content section.section-imageMap .image-map .map-item3, #content section.section-imageMap-familienfreundlich .image-map .map-item3 {
    top: 44%;
    left: 79%;
  }
  #content section.section-imageMap .image-map .map-item4, #content section.section-imageMap-familienfreundlich .image-map .map-item4 {
    top: 23%;
    left: 51%;
  }
  #content section.section-imageMap .image-map .map-item5, #content section.section-imageMap-familienfreundlich .image-map .map-item5 {
    top: 63%;
    left: 23%;
  }
  #content section.section-imageMap .image-map .map-item6, #content section.section-imageMap-familienfreundlich .image-map .map-item6 {
    top: 52%;
    left: 14%;
  }
  #content section.section-imageMap .image-map .map-item7, #content section.section-imageMap-familienfreundlich .image-map .map-item7 {
    top: 43%;
    left: 38%;
  }
}
#content section.section-imageMap-familienfreundlich .image-map {
  position: relative;
  max-width: 1371px;
  margin: auto;
  background-color: #ccc;
}
@media (max-width: 768px) {
  #content section.section-imageMap-familienfreundlich .image-map .fam-marker1 {
    top: 23%;
    left: 83%;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-marker2 {
    top: 63%;
    left: 27%;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-marker3 {
    top: 64%;
    left: 49%;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-marker4 {
    top: 74%;
    left: 31%;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-marker5 {
    top: 59%;
    left: 45%;
  }
}
@media (min-width: 769px) {
  #content section.section-imageMap-familienfreundlich .image-map .fam-map-item {
    position: absolute;
    width: 36px;
    height: 36px;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-map-item1 {
    top: 23%;
    left: 83%;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-map-item2 {
    top: 63%;
    left: 27%;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-map-item3 {
    top: 64%;
    left: 49%;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-map-item4 {
    top: 74%;
    left: 31%;
  }
  #content section.section-imageMap-familienfreundlich .image-map .fam-map-item5 {
    top: 59%;
    left: 45%;
  }
}
#content section.section-accordion .main-content .inner.two-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  #content section.section-accordion .main-content .inner.two-col {
    flex-direction: row-reverse;
    align-items: flex-start;
    padding-right: 0;
    padding-top: 15vh;
    gap: 60px;
  }
}
#content section.section-accordion .main-content .inner.two-col :first-child {
  width: auto;
}
@media (min-width: 1024px) {
  #content section.section-accordion .main-content .inner.two-col :first-child.bigtxt {
    width: 30%;
    transform: translateY(-110px);
  }
}
#content section.section-accordion.no-p-top .inner.two-col {
  padding-top: 0;
}
@media (min-width: 1024px) {
  #content section.section-accordion.no-p-top .inner.two-col {
    padding-top: 0;
  }
}
#content section.section-swiperAwards.bg-lightgreen:before {
  top: 6vh;
  background-color: rgba(137, 164, 70, 0.2);
  background-image: url("/images/bg/GM_Ramage_weiß_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 1024px) {
  #content section.section-swiperAwards.bg-lightgreen:before {
    background-image: url("/images/bg/bg-header-alternative.png");
  }
}
@media (min-width: 769px) {
  #content section.section-swiperAwards.bg-lightgreen:before {
    top: 6vh;
  }
}
@media (min-width: 1408px) {
  #content section.section-swiperAwards.bg-lightgreen:before {
    top: 9vh;
  }
}
#content section.section-swiperAwards .swiperAwards {
  position: relative;
}
#content section.section-swiperAwards .swiperAwards .mod-list {
  overflow: hidden;
}
#content section.section-swiperAwards .swiperAwards .mod-list .swiper-slide {
  transition-timing-function: cubic-bezier(0.76, 0.09, 0.215, 1);
  padding: 0 5px;
}
#content section.section-swiperAwards .swiperAwards .list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content section.section-newsletter .inner {
  padding-bottom: 1vh !important;
}
#content section.section-newsletter .shownl {
  cursor: pointer;
}
#content section.section-newsletter .add-nl.showing {
  display: block;
}
#content .cardsfilter-content {
  position: relative;
}
#content .cardsfilter-content:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url("/images/bg/GM_Ramage_hellgruen_2x.png");
  background-repeat: repeat;
  background-size: contain;
  background-position: top;
  height: 100%;
  width: 100%;
  z-index: -1;
}
#content .cardsfilter-content .filter {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
#content .cardsfilter-content .filter .inner {
  padding: 90px 15px 6vh 15px;
}
@media (min-width: 1408px) {
  #content .cardsfilter-content .filter {
    padding: 0 135px;
  }
  #content .cardsfilter-content .filter .inner {
    padding: 90px 135px 6vh 135px;
  }
}
@media (max-width: 768px) {
  #content .cardsfilter-content .filter {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px 10px 15px;
    top: 0;
    z-index: 100;
  }
}
#content .cardsfilter-content .filter .inner {
  display: flex;
}
@media (max-width: 768px) {
  #content .cardsfilter-content .filter .inner {
    flex-wrap: wrap;
    gap: 1px;
    padding: 0 15px;
  }
}
#content .cardsfilter-content .filter button {
  position: relative;
  border: none;
  text-align: center;
  font-family: "Martel Sans", sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1.6px;
  color: #fff;
  text-transform: uppercase;
  padding: 20px;
  width: 100%;
  max-width: 220px;
  margin: 0 5px 0 0;
  cursor: pointer;
  background: rgba(137, 164, 70, 0.5019607843);
}
@media (max-width: 768px) {
  #content .cardsfilter-content .filter button {
    max-width: 100%;
    margin: 0;
    padding: 10px 0;
    font-weight: 300;
    line-height: 1.12em;
    letter-spacing: normal;
  }
}
#content .cardsfilter-content .filter button.active-cards {
  background: #59685D;
}
@media (max-width: 768px) {
  #content .cardsfilter-content .filter button.active-cards {
    animation: pulse-red 3s infinite;
    padding: 10px;
  }
}
#content .cardsfilter-content .filter button.active-cards:before {
  display: block;
  position: absolute;
  top: -39px;
  right: 0;
  width: 51px;
  height: 39px;
  content: url("/images/icons/bird-medium.png");
}
@media (min-width: 769px) {
  #content .cardsfilter-content .filter button.active-cards:before {
    display: block;
    width: 77px;
    height: 61px;
    right: 0;
    top: -60px;
    content: url("/images/icons/bird.png");
  }
}
@media (max-width: 768px) {
  #content .cardsfilter-content .filter button.active-cards:before {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 38px;
    height: 30px;
    content: url("/images/icons/bird-small.png");
  }
}
#content .cardsfilter-content .filter .f_0 {
  margin-right: auto;
}
@media (min-width: 769px) {
  #content .cardsfilter-content .filter .f_0 {
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  #content .cardsfilter-content .filter .f_0 {
    margin-right: 0;
  }
}
#content .cardsfilter-content ul.flex-cards {
  position: relative;
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 30px;
  list-style: none;
  flex-direction: column;
}
@media (max-width: 768px) {
  #content .cardsfilter-content ul.flex-cards {
    padding: 30px;
  }
}
@media (min-width: 769px) {
  #content .cardsfilter-content ul.flex-cards {
    flex-direction: unset;
    flex-wrap: wrap;
  }
}
@media (min-width: 1408px) {
  #content .cardsfilter-content ul.flex-cards {
    padding: 9vh 67.5px 6vh 270px;
  }
}
@media (min-width: 1601px) {
  #content .cardsfilter-content ul.flex-cards {
    padding: 9vh 139px 6vh 270px;
  }
}
#content .cardsfilter-content ul.flex-cards .cards_item {
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  #content .cardsfilter-content ul.flex-cards .cards_item {
    width: calc(47% - 19px);
    margin: 0 40px 50px 0;
  }
}
@media (min-width: 1216px) {
  #content .cardsfilter-content ul.flex-cards .cards_item {
    width: calc(46% - 10px);
    margin: 0 56px 85px 0;
  }
}
@media (min-width: 1408px) {
  #content .cardsfilter-content ul.flex-cards .cards_item {
    width: 38%;
    margin: 0 122px 85px 0;
  }
}
@media (min-width: 1601px) {
  #content .cardsfilter-content ul.flex-cards .cards_item {
    width: 38%;
    margin: 0 122px 85px 0;
  }
}
@media (min-width: 1750px) {
  #content .cardsfilter-content ul.flex-cards .cards_item {
    width: 38%;
    margin: 0 153px 85px 0;
  }
}
#content .cardsfilter-content ul.flex-cards .cards_item.hide-cards {
  display: none;
}
#content .cardsfilter-content ul.flex-cards .card_title {
  cursor: pointer;
  font-size: 22px;
}
@media (min-width: 769px) {
  #content .cardsfilter-content ul.flex-cards .card_title {
    font-size: 26px;
  }
}
@media (min-width: 1601px) {
  #content .cardsfilter-content ul.flex-cards .card_title {
    font-size: 36px;
  }
}
#content .cardsfilter-content ul.flex-cards .card_text {
  margin: 2vh 0;
  font-family: "Martel Sans", sans-serif;
}
#content .cardsfilter-content ul.flex-cards .card_text p {
  margin: 0;
}
#content .cardsfilter-content ul.flex-cards .card_text p:last-of-type {
  margin-top: 2vh;
}
#content .cardsfilter-content ul.flex-cards .card_text p a {
  cursor: pointer;
}
#content .cardsfilter-content .card-slider, #content .cardsfilter-content .card-slider-detail {
  position: relative;
}
#content .cardsfilter-content .card-slider .mod-list, #content .cardsfilter-content .card-slider-detail .mod-list {
  position: static;
  overflow: hidden;
}
#content .cardsfilter-content .card-slider .list-item img, #content .cardsfilter-content .card-slider-detail .list-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
#content .cardsfilter-content .card-slider .slidePrev-btn, #content .cardsfilter-content .card-slider .slideNext-btn, #content .cardsfilter-content .card-slider-detail .slidePrev-btn, #content .cardsfilter-content .card-slider-detail .slideNext-btn {
  top: 75px;
  right: -30px;
}
@media (min-width: 1601px) {
  #content .cardsfilter-content .card-slider .slidePrev-btn, #content .cardsfilter-content .card-slider .slideNext-btn, #content .cardsfilter-content .card-slider-detail .slidePrev-btn, #content .cardsfilter-content .card-slider-detail .slideNext-btn {
    top: 64px;
    right: -75px;
  }
}
#content .cardsfilter-content .card-slider .slidePrev-btn img, #content .cardsfilter-content .card-slider .slideNext-btn img, #content .cardsfilter-content .card-slider-detail .slidePrev-btn img, #content .cardsfilter-content .card-slider-detail .slideNext-btn img {
  display: block;
  width: 50px;
  height: 50px;
}
@media (min-width: 1601px) {
  #content .cardsfilter-content .card-slider .slidePrev-btn img, #content .cardsfilter-content .card-slider .slideNext-btn img, #content .cardsfilter-content .card-slider-detail .slidePrev-btn img, #content .cardsfilter-content .card-slider-detail .slideNext-btn img {
    width: 64px;
    height: 64px;
  }
}
#content .cardsfilter-content .card-slider .slideNext-btn, #content .cardsfilter-content .card-slider-detail .slideNext-btn {
  top: 25px;
  right: -30px;
}
@media (min-width: 1601px) {
  #content .cardsfilter-content .card-slider .slideNext-btn, #content .cardsfilter-content .card-slider-detail .slideNext-btn {
    top: 0;
    right: -75px;
  }
}
#content .glob-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  z-index: 200;
  background: #fff;
  overflow: auto;
}
#content .glob-drawer:before {
  position: absolute;
  top: 0;
  content: "";
  background-color: rgba(137, 164, 70, 0.2);
  background-image: url("/images/bg/GM_Ramage_weiß_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
  height: 51px;
  width: 100%;
  z-index: -1;
}
@media (min-width: 769px) {
  #content .glob-drawer:before {
    height: 40vh;
  }
}
@media (min-width: 1408px) {
  #content .glob-drawer:before {
    height: 570px;
  }
}
#content .glob-drawer.on {
  animation: slideIn 0.5s ease-in-out both;
}
#content .glob-drawer.off {
  display: none;
  animation: slideOut 0.5s ease-in-out both;
}
#content .glob-drawer .drawer__header, #content .glob-drawer .drawer__content {
  padding: 0 15px;
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__header, #content .glob-drawer .drawer__content {
    padding: 0 135px;
  }
}
#content .glob-drawer .drawer__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 50px;
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__header {
    justify-content: flex-start;
    height: 128px;
  }
}
#content .glob-drawer .drawer__header .close {
  position: fixed;
  z-index: 100;
  display: flex;
  line-height: 1em;
  gap: 1rem;
  background: #59685D;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50px;
  height: 50px;
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__header .close {
    width: 128px;
    height: 128px;
  }
}
#content .glob-drawer .drawer__header .close .icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 25px;
  height: 14px;
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__header .close .icon {
    width: 59px;
    height: 43px;
  }
}
#content .glob-drawer .drawer__header .close .icon .bar {
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.2s linear;
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__header .close .icon .bar {
    height: 2px;
  }
}
#content .glob-drawer .drawer__header .close .icon .bar.top {
  transform: translateY(6px) rotate(45deg);
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__header .close .icon .bar.top {
    transform: translateY(20px) rotate(45deg);
  }
}
#content .glob-drawer .drawer__header .close .icon .bar.middle {
  opacity: 0;
}
#content .glob-drawer .drawer__header .close .icon .bar.bottom {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__header .close .icon .bar.bottom {
    transform: translateY(-20px) rotate(-45deg);
  }
}
#content .glob-drawer .drawer__header .close:hover {
  cursor: pointer;
}
#content .glob-drawer .drawer__header .bookingbox-top {
  display: none;
  position: absolute;
  right: 136px;
  top: 0;
  z-index: 1;
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__header .bookingbox-top {
    display: flex;
    flex-direction: row;
  }
}
#content .glob-drawer .drawer__header .bookingbox-top .bookbox-item-top {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  max-width: 200px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Martel Sans", sans-serif;
}
@media (min-width: 769px) {
  #content .glob-drawer .drawer__header .bookingbox-top .bookbox-item-top {
    max-width: 270px;
    padding: 0 20px;
  }
}
#content .glob-drawer .drawer__header .bookingbox-top .bookbox-item-top p {
  line-height: 20px;
  color: #89A446;
  letter-spacing: 0.15px;
}
#content .glob-drawer .drawer__header .bookingbox-top #cta-room-request-top, #content .glob-drawer .drawer__header .bookingbox-top #cta-room-booking-top, #content .glob-drawer .drawer__header .bookingbox-top #cta-card-request-top, #content .glob-drawer .drawer__header .bookingbox-top #cta-card-booking-top {
  display: block;
  width: auto;
  height: 64px;
  background: rgba(137, 164, 70, 0.5019607843);
  transition: all 0.4s ease-out;
}
#content .glob-drawer .drawer__header .bookingbox-top #cta-room-request-top:hover, #content .glob-drawer .drawer__header .bookingbox-top #cta-room-booking-top:hover, #content .glob-drawer .drawer__header .bookingbox-top #cta-card-request-top:hover, #content .glob-drawer .drawer__header .bookingbox-top #cta-card-booking-top:hover {
  background: #89A446;
}
#content .glob-drawer .drawer__header .bookingbox-top #cta-room-request-top a, #content .glob-drawer .drawer__header .bookingbox-top #cta-room-booking-top a, #content .glob-drawer .drawer__header .bookingbox-top #cta-card-request-top a, #content .glob-drawer .drawer__header .bookingbox-top #cta-card-booking-top a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 64px;
  color: #fff;
  margin: 0 20px;
  line-height: 1.1em;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-decoration: none;
}
#content .glob-drawer .drawer__header .bookingbox-top #cta-room-request-top a span, #content .glob-drawer .drawer__header .bookingbox-top #cta-room-booking-top a span, #content .glob-drawer .drawer__header .bookingbox-top #cta-card-request-top a span, #content .glob-drawer .drawer__header .bookingbox-top #cta-card-booking-top a span {
  font-weight: 200;
}
#content .glob-drawer .drawer__header .bookingbox-top #cta-room-booking-top {
  background: #59685D;
}
#content .glob-drawer .glob-slider-detail {
  position: relative;
  padding: 0 0;
  overflow: hidden;
}
@media (min-width: 1408px) {
  #content .glob-drawer .glob-slider-detail {
    padding: 0 135px;
  }
}
#content .glob-drawer .glob-slider-detail .list-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1920/1080;
}
@media (min-width: 1408px) {
  #content .glob-drawer .glob-slider-detail .list-item img {
    height: 574px;
    object-fit: cover;
    aspect-ratio: unset;
  }
}
#content .glob-drawer .glob-slider-detail .slidePrev-btn, #content .glob-drawer .glob-slider-detail .slideNext-btn {
  top: auto;
  bottom: 50px;
  right: 0;
  left: auto;
}
@media (min-width: 1408px) {
  #content .glob-drawer .glob-slider-detail .slidePrev-btn, #content .glob-drawer .glob-slider-detail .slideNext-btn {
    top: auto;
    left: 0;
    right: auto;
    bottom: 132px;
  }
}
#content .glob-drawer .glob-slider-detail .slidePrev-btn img, #content .glob-drawer .glob-slider-detail .slideNext-btn img {
  display: block;
  width: 50px;
  height: 50px;
}
@media (min-width: 1408px) {
  #content .glob-drawer .glob-slider-detail .slidePrev-btn img, #content .glob-drawer .glob-slider-detail .slideNext-btn img {
    width: 128px;
    height: 128px;
  }
}
#content .glob-drawer .glob-slider-detail .slideNext-btn {
  top: auto;
  bottom: 100px;
  right: 0;
  left: auto;
}
@media (min-width: 1408px) {
  #content .glob-drawer .glob-slider-detail .slideNext-btn {
    top: auto;
    left: 0;
    right: auto;
    bottom: 260px;
  }
}
@media (min-width: 1408px) {
  #content .glob-drawer .glob-slider-detail .swiper-horizontal > .swiper-pagination-bullets, #content .glob-drawer .glob-slider-detail .swiper-pagination-bullets.swiper-pagination-horizontal, #content .glob-drawer .glob-slider-detail .swiper-pagination-custom, #content .glob-drawer .glob-slider-detail .swiper-pagination-fraction {
    top: auto;
    bottom: 10px;
    left: 20px;
  }
}
#content .glob-drawer .drawer__content {
  overflow: auto;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__content {
    padding: 2vh 135px 9vh 135px;
  }
}
#content .glob-drawer .drawer__content .inner {
  padding: 5vh 15px 2vh 15px;
}
@media (min-width: 1408px) {
  #content .glob-drawer .drawer__content .inner {
    padding: 6vh 135px 2vh 135px;
  }
}
#content .glob-drawer .drawer__content .grid-item4 {
  padding-bottom: 150px !important;
}
#content .glob-drawer .drawer__content .grid-item6:before {
  display: block;
  position: absolute;
  width: 51px;
  height: 39px;
  top: -40px;
  left: 30px;
  content: url("/images/icons/bird-medium.png");
}
@media (min-width: 769px) {
  #content .glob-drawer .drawer__content .grid-item6:before {
    width: 77px;
    height: 61px;
    top: -60px;
    left: 60px;
    content: url("/images/icons/bird.png");
  }
}
#content .glob-drawer .drawer__content .grid-design {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
}
@media (max-width: 768px) {
  #content .glob-drawer .drawer__content .grid-design {
    display: flex;
    flex-direction: column;
  }
}
#content .glob-drawer .drawer__content .grid-design .item {
  position: relative;
  padding: 0;
}
#content .glob-drawer .drawer__content .grid-design .grid-item1 {
  grid-area: 1/1/2/5;
}
@media (max-width: 768px) {
  #content .glob-drawer .drawer__content .grid-design .grid-item1 {
    display: none;
  }
}
#content .glob-drawer .drawer__content .grid-design .grid-item2 {
  grid-area: 1/5/2/13;
}
@media (max-width: 768px) {
  #content .glob-drawer .drawer__content .grid-design .grid-item2 {
    order: 1;
  }
}
#content .glob-drawer .drawer__content .grid-design .grid-item3 {
  grid-area: 2/1/3/5;
}
@media (max-width: 768px) {
  #content .glob-drawer .drawer__content .grid-design .grid-item3 {
    order: 4;
  }
}
#content .glob-drawer .drawer__content .grid-design .grid-item4 {
  grid-area: 2/5/3/13;
}
@media (max-width: 768px) {
  #content .glob-drawer .drawer__content .grid-design .grid-item4 {
    order: 2;
  }
}
#content .glob-drawer .drawer__content .grid-design .grid-item5 {
  grid-area: 3/1/4/5;
}
@media (max-width: 768px) {
  #content .glob-drawer .drawer__content .grid-design .grid-item5 {
    display: none;
  }
}
#content .glob-drawer .drawer__content .grid-design .grid-item6 {
  grid-area: 3/5/4/13;
}
@media (max-width: 768px) {
  #content .glob-drawer .drawer__content .grid-design .grid-item6 {
    order: 3;
  }
}
#content .glob-drawer .drawer__content .bookingbox {
  position: absolute;
  right: 0;
  bottom: -64px;
  z-index: 1;
}
@media (min-width: 769px) {
  #content .glob-drawer .drawer__content .bookingbox {
    bottom: -64px;
  }
}
#content .glob-drawer .drawer__content .bookingbox .bookbox-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  max-width: 200px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Martel Sans", sans-serif;
}
@media (min-width: 769px) {
  #content .glob-drawer .drawer__content .bookingbox .bookbox-item {
    max-width: 270px;
    padding: 0 20px;
  }
}
#content .glob-drawer .drawer__content .bookingbox .bookbox-item p {
  line-height: 20px;
  color: #89A446;
  letter-spacing: 0.15px;
}
#content .glob-drawer .drawer__content .bookingbox #cta-room-request, #content .glob-drawer .drawer__content .bookingbox #cta-room-booking {
  display: block;
  width: auto;
  height: 64px;
  background: rgba(137, 164, 70, 0.5019607843);
  transition: all 0.4s ease-out;
}
#content .glob-drawer .drawer__content .bookingbox #cta-room-request:hover, #content .glob-drawer .drawer__content .bookingbox #cta-room-booking:hover {
  background: #89A446;
}
#content .glob-drawer .drawer__content .bookingbox #cta-room-request a, #content .glob-drawer .drawer__content .bookingbox #cta-room-booking a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 64px;
  color: #fff;
  margin: 0 20px;
  line-height: 1.1em;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-decoration: none;
}
#content .glob-drawer .drawer__content .bookingbox #cta-room-request a span, #content .glob-drawer .drawer__content .bookingbox #cta-room-booking a span {
  font-weight: 200;
}
#content .glob-drawer .drawer__content .bookingbox #cta-room-booking {
  background: #59685D;
}
#content .glob-drawer .drawer__content .floorplan {
  position: relative;
}
#content .glob-drawer .drawer__content .floorplan .planToggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  max-width: 100%;
  margin: 3vh auto;
  border: 1px solid #59685D;
  background-color: #fff;
  background-image: url("/images/bg/GM_Ramage_hellgruen_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 769px) {
  #content .glob-drawer .drawer__content .floorplan .planToggle {
    max-width: 266px;
    margin: 0 auto;
  }
}
#content .glob-drawer .drawer__content .floorplan .planToggle .planButton {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
}
#content .glob-drawer .drawer__content .floorplan .planToggle .planButton .planIcon .close {
  display: none;
  width: 50px;
  height: auto;
  margin: 0;
}
@media (min-width: 769px) {
  #content .glob-drawer .drawer__content .floorplan .planToggle .planButton .planIcon .close {
    width: 128px;
  }
}
#content .glob-drawer .drawer__content .floorplan .planToggle .planButton .planIcon .zoom {
  display: block;
  width: 30px;
  height: auto;
  margin: 0;
}
#content .glob-drawer .drawer__content .floorplan .planToggle input {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 22;
  -webkit-touch-callout: none;
}
#content .glob-drawer .drawer__content .floorplan .planToggle input:checked ~ .planButton {
  left: 0;
  top: 0;
  z-index: 21;
  width: 128px;
  height: 128px;
}
#content .glob-drawer .drawer__content .floorplan .planToggle input:checked ~ .planButton .zoom {
  display: none;
}
#content .glob-drawer .drawer__content .floorplan .planToggle input:checked ~ .planButton .close {
  display: block;
}
#content .glob-drawer .drawer__content .floorplan .planToggle input:checked ~ .planItem {
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}
#content .glob-drawer .drawer__content .floorplan .planToggle input:checked ~ .planItem img {
  width: 100%;
  max-width: 80dvw;
  height: auto;
  object-fit: cover;
  margin: 10px;
}
@media (min-width: 769px) {
  #content .glob-drawer .drawer__content .floorplan .planToggle input:checked ~ .planItem img {
    max-width: 480px;
    margin: 60px;
  }
}
#content .glob-drawer .drawer__content .floorplan .planToggle img {
  width: 150px;
  height: auto;
}
#content .glob-drawer .drawer__content .floorplan .planToggle .planItem {
  position: absolute;
  z-index: 20;
  top: -1px;
  left: -1px;
  width: 101%;
  height: auto;
  margin: 0 0 60px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: auto;
  list-style-type: none;
  border: 1px solid #59685D;
  -webkit-font-smoothing: antialiased;
  transform-origin: top left;
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
  background-color: #fff;
  background-image: url("/images/bg/GM_Ramage_hellgruen_2x.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 769px) {
  #content .glob-drawer .drawer__content .floorplan .planToggle .planItem {
    width: 60vw;
  }
}
#content .glob-drawer .drawer__content .accordionbox {
  padding: 100px 24px 40px;
}
#content .activities-page .filter button {
  max-width: 190px;
}
@media (max-width: 768px) {
  #content .activities-page .filter button {
    max-width: 100%;
  }
}
#content .activities-page .filter .f_0 {
  margin-right: 5px;
}
@media (min-width: 769px) {
  #content .activities-page .filter .f_0 {
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  #content .activities-page .filter .f_0 {
    margin-right: 0;
  }
}
#content .activities-page .card-slider .list-item img, #content .activities-page .card-image .list-item img {
  aspect-ratio: 1/1;
}
@media (min-width: 1601px) {
  #content .activities-page ul.flex-cards .cards_item {
    width: 23%;
    margin: 0 53px 85px 0;
  }
}
@media (min-width: 1750px) {
  #content .activities-page ul.flex-cards .cards_item {
    width: 23%;
    margin: 0 53px 85px 0;
  }
}
@media (min-width: 769px) {
  #content .activities-page ul.flex-cards .card_title {
    font-size: 26px;
  }
}
@media (min-width: 1601px) {
  #content .activities-page ul.flex-cards .card_title {
    font-size: 36px;
  }
}
#content .activities-page .glob-drawer .drawer__content .grid-item4 {
  padding-bottom: 0px !important;
}
#content .activities-page .glob-drawer .drawer__content .grid-item4:before {
  display: block;
  position: absolute;
  width: 51px;
  height: 39px;
  top: -40px;
  left: 30px;
  content: url("/images/icons/bird-medium.png");
}
@media (min-width: 769px) {
  #content .activities-page .glob-drawer .drawer__content .grid-item4:before {
    width: 77px;
    height: 61px;
    top: -60px;
    left: 60px;
    content: url("/images/icons/bird.png");
  }
}
#content .activities-page .glob-drawer .drawer__content .grid-design {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0;
}
@media (max-width: 768px) {
  #content .activities-page .glob-drawer .drawer__content .grid-design {
    display: flex;
    flex-direction: column;
  }
}
#content .activities-page .glob-drawer .drawer__content .grid-design .item {
  position: relative;
  padding: 0;
}
#content .activities-page .glob-drawer .drawer__content .grid-design .grid-item1 {
  grid-area: 1/1/2/5;
}
@media (max-width: 768px) {
  #content .activities-page .glob-drawer .drawer__content .grid-design .grid-item1 {
    display: none;
  }
}
#content .activities-page .glob-drawer .drawer__content .grid-design .grid-item2 {
  grid-area: 1/5/2/13;
}
@media (max-width: 768px) {
  #content .activities-page .glob-drawer .drawer__content .grid-design .grid-item2 {
    order: 1;
  }
}
#content .activities-page .glob-drawer .drawer__content .grid-design .grid-item3 {
  grid-area: 2/1/3/5;
}
@media (max-width: 768px) {
  #content .activities-page .glob-drawer .drawer__content .grid-design .grid-item3 {
    order: 4;
  }
}
#content .activities-page .glob-drawer .drawer__content .grid-design .grid-item4 {
  grid-area: 2/5/3/13;
}
@media (max-width: 768px) {
  #content .activities-page .glob-drawer .drawer__content .grid-design .grid-item4 {
    order: 2;
  }
}
#content .activities-page .glob-drawer .drawer__content .grid-design .grid-item5 {
  grid-area: 3/1/4/5;
}
@media (max-width: 768px) {
  #content .activities-page .glob-drawer .drawer__content .grid-design .grid-item5 {
    display: none;
  }
}
#content .activities-page .glob-drawer .drawer__content .grid-design .grid-item6 {
  grid-area: 3/5/4/13;
}
@media (max-width: 768px) {
  #content .activities-page .glob-drawer .drawer__content .grid-design .grid-item6 {
    order: 3;
  }
}
#content .activities-page .glob-drawer .drawer__content .accordionbox {
  padding: 50px 24px 40px;
}
#content .offer-content {
  position: relative;
}
#content .offer-content:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url("/images/bg/GM_Ramage_hellgruen_2x.png");
  background-repeat: repeat;
  background-size: contain;
  background-position: top;
  height: 100%;
  width: 100%;
  z-index: -1;
}
#content .offer-content ul.flex-cards {
  position: relative;
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 30px;
  list-style: none;
  flex-direction: column;
}
@media (max-width: 768px) {
  #content .offer-content ul.flex-cards {
    padding: 30px;
  }
}
@media (min-width: 769px) {
  #content .offer-content ul.flex-cards {
    flex-direction: unset;
    flex-wrap: wrap;
  }
}
@media (min-width: 1408px) {
  #content .offer-content ul.flex-cards {
    padding: 9vh 67.5px 6vh 270px;
  }
}
@media (min-width: 1601px) {
  #content .offer-content ul.flex-cards {
    padding: 9vh 139px 6vh 270px;
  }
}
#content .offer-content ul.flex-cards .cards_item {
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  #content .offer-content ul.flex-cards .cards_item {
    width: calc(47% - 19px);
    margin: 0 40px 50px 0;
  }
}
@media (min-width: 1216px) {
  #content .offer-content ul.flex-cards .cards_item {
    width: calc(46% - 10px);
    margin: 0 56px 85px 0;
  }
}
@media (min-width: 1408px) {
  #content .offer-content ul.flex-cards .cards_item {
    width: 38%;
    margin: 0 122px 85px 0;
  }
}
@media (min-width: 1601px) {
  #content .offer-content ul.flex-cards .cards_item {
    width: 38%;
    margin: 0 122px 85px 0;
  }
}
@media (min-width: 1750px) {
  #content .offer-content ul.flex-cards .cards_item {
    width: 38%;
    margin: 0 153px 85px 0;
  }
}
#content .offer-content ul.flex-cards .cards_item.hide-cards {
  display: none;
}
#content .offer-content ul.flex-cards .card_title {
  font-size: 22px;
}
@media (min-width: 769px) {
  #content .offer-content ul.flex-cards .card_title {
    font-size: 26px;
  }
}
@media (min-width: 1601px) {
  #content .offer-content ul.flex-cards .card_title {
    font-size: 36px;
  }
}
#content .offer-content ul.flex-cards .card_image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}
#content .offer-content ul.flex-cards .card_text {
  margin: 2vh 0;
  font-family: "Martel Sans", sans-serif;
}
#content .offer-content ul.flex-cards .card_text p {
  margin: 0;
}
#content .offer-content ul.flex-cards .card_text p:last-of-type {
  margin-top: 2vh;
}
#content .offer-content ul.flex-cards .card_text p a {
  cursor: pointer;
}

#alteaForm .af-col-center button {
  background: #89A446;
}
#alteaForm .af-col-center button:hover {
  background: #525e34;
}
#alteaForm .af-required-field-message span, #alteaForm .af-label-required:after {
  color: #89A446;
}
#alteaForm .af-form-control, #alteaForm .af-fake-input {
  background-color: #f3f5ee;
}
#alteaForm .af-fake-input {
  border-bottom: 2px solid rgba(82, 94, 52, 0.34);
}
#alteaForm .af-error-messages,
#alteaForm .af-form-control.error,
#alteaForm .af-form-check-inline.error,
#alteaForm [type=checkbox].error,
#alteaForm [type=radio].error,
#alteaForm .af-fake-input.error {
  border-color: #E71A1A;
}
#alteaForm .af-col-center {
  text-align: left !important;
}

footer {
  position: relative;
  background: #59685D;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
}
@media (min-width: 1408px) {
  footer {
    font-size: 18px;
  }
}
footer .footerdecor {
  position: absolute;
  z-index: 1;
  right: 72px;
  top: -25px;
  background: #89A446;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footerdecor img {
  width: 35px;
  height: auto;
}
@media (min-width: 1024px) {
  footer .footerdecor img {
    width: auto;
    height: auto;
  }
}
@media (min-width: 1024px) {
  footer .footerdecor {
    right: 14%;
    top: -64px;
    width: 128px;
    height: 128px;
  }
}
footer .twocol-box {
  display: block;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}
footer .twocol-box .col-item {
  padding: 30px;
}
@media (min-width: 1408px) {
  footer .twocol-box .col-item {
    padding: 4vh 0 0 135px;
  }
}
@media (min-width: 1408px) {
  footer .twocol-box {
    padding: 0 135px;
  }
}
@media (min-width: 769px) {
  footer .twocol-box {
    display: flex;
  }
}
@media (min-width: 1408px) {
  footer .twocol-box:before {
    background: url("/images/bg/bg-footer.png") top left;
    background-repeat: no-repeat;
    background-size: auto 100%;
    content: "";
    opacity: 0.5;
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 50%;
  }
}
footer .twocol-box .col-item {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 769px) {
  footer .twocol-box .col-item {
    width: 50%;
  }
}
@media (min-width: 769px) {
  footer .twocol-box .col-item:first-of-type {
    display: flex;
    flex-direction: column;
  }
  footer .twocol-box .col-item:first-of-type > .footer-items:first-child {
    margin-bottom: auto;
  }
}
footer .twocol-box .col-item:first-of-type:before {
  background: url("/images/bg/GM_Ramage_weiß.png") top left;
  background-repeat: repeat-x;
  background-size: 100% auto;
  content: "";
  opacity: 0.5;
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}
@media (min-width: 1408px) {
  footer .twocol-box .col-item:first-of-type:before {
    display: none;
  }
}
footer .twocol-box .col-item:first-of-type:after {
  content: "";
  opacity: 0.5;
  bottom: 0;
  left: 0;
  margin: 30px auto -30px auto;
  display: block;
  position: relative;
  height: 2px;
  width: 100%;
  background: #fff;
}
@media (min-width: 769px) {
  footer .twocol-box .col-item:first-of-type:after {
    display: none;
  }
}
footer .twocol-box .col-item .footer-items {
  position: relative;
  font-family: "Martel Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 1.6px;
  padding: 10px 0;
  text-transform: uppercase;
}
footer .twocol-box .col-item .footer-items ul {
  list-style-type: "> ";
  font-weight: 700;
}
footer .twocol-box .col-item .footer-items img {
  max-width: 206px;
  height: auto;
  display: block;
  width: 100%;
  margin: 10px 0;
}
@media (min-width: 1408px) {
  footer .twocol-box .col-item .footer-items img {
    max-width: 250px;
    margin: 30px 0 15px 0;
  }
}
footer .twocol-box .col-item .footer-items .underline-small {
  font-family: "Martel Sans", sans-serif;
  letter-spacing: 0.15px;
  line-height: 1.12em;
  margin: 0.4em 0;
  background: linear-gradient(90deg, rgba(137, 164, 70, 0.25) 0%, rgba(137, 164, 70, 0.25) 100%) repeat-x;
  background-size: 100% 5px;
  background-position-y: 0.9em;
  padding-right: 10px;
  transition: all 0.4s ease-out;
}
@media (min-width: 1024px) {
  footer .twocol-box .col-item .footer-items .underline-small {
    background-position-y: 0.9em;
  }
}
footer .twocol-box .col-item .footer-items .underline-small {
  letter-spacing: 1.6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%) repeat-x;
  background-size: 100% 5px;
  background-position-y: 1em;
  padding-right: 10px;
}
footer .twocol-box .col-item .footer-items .underline-small:hover {
  background-size: 100% 100%;
  background-position: top;
}
footer .twocol-box .col-item .footer-items a[href^="mailto:"] {
  text-decoration: underline;
  text-transform: none;
}
footer .twocol-box .col-item .weather-tool {
  letter-spacing: unset;
  margin-bottom: 7vh;
  text-transform: unset;
}
@media (min-width: 1024px) {
  footer .twocol-box .col-item .weather-tool br {
    display: none;
  }
}
footer .twocol-box .col-item .weather-tool .weather-response {
  font-weight: 700;
}
footer .twocol-box .col-item .size22 {
  font-size: 22px;
}
@media (min-width: 1408px) {
  footer .twocol-box .col-item .size22 {
    line-height: normal;
    font-size: 36px;
  }
}
footer .twocol-box .col-item .op50 {
  opacity: 0.5;
  margin-top: 50px;
}
footer .twocol-box .col-item .color-green {
  color: #89A446;
  font-weight: 700;
}
footer .twocol-box .col-item .fontPrimary {
  font-family: "Martel", serif;
}
footer a {
  color: #fff;
  text-decoration: none;
  line-height: normal;
}
footer a:hover {
  color: #E1E8D0;
}

#jmap_sitemap {
  width: 64%;
  margin: 5rem auto;
}

#jmap_sitemap .folder {
  display: none;
}

#jmap_sitemap .selected {
  all: unset;
}

.scroll {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .scroll {
    padding-top: 15px;
    padding-bottom: 0;
  }
}
.scroll svg {
  transform: rotate(180deg);
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 15px 0 auto;
  background: #89A446;
}
@media (min-width: 769px) {
  .scroll svg {
    margin: 0 70px 0 auto;
  }
}
@media (min-width: 1024px) {
  .scroll svg {
    width: 128px;
    height: 68px;
    margin: 0 14% 0 auto;
  }
}
.scroll svg path {
  stroke: #fff;
  stroke-width: 0.5px;
}

.awards-slider {
  overflow: hidden;
  padding: 3vh 0;
}
.awards-slider .swiper-wrapper {
  align-items: center;
}
.awards-slider .slider-items .slider__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.awards-slider .slider-items .slider__content a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.awards-slider .slider-items .slider__content a:hover img {
  filter: grayscale(0);
}
.awards-slider .slider-items .slider__content img {
  display: block;
  transition: all 0.4s ease-out;
  filter: grayscale(1);
  max-width: 120px;
  height: auto;
}
@media (min-width: 769px) {
  .awards-slider .slider-items .slider__content img {
    max-width: 120px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .awards-slider .slider-items .slider__content img {
    max-width: 120px;
    height: auto;
  }
}

.fixed-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  gap: 5px;
  display: flex;
  justify-content: flex-end;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 15px;
}
.fixed-mobile .inner {
  padding: 90px 15px 6vh 15px;
}
@media (min-width: 1408px) {
  .fixed-mobile {
    padding: 0 135px;
  }
  .fixed-mobile .inner {
    padding: 90px 135px 6vh 135px;
  }
}
.fixed-mobile {
  transition: all 0.4s ease-out;
}
@media (min-width: 769px) {
  .fixed-mobile {
    display: none;
  }
}
.fixed-mobile .fixed-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 50px;
  height: 50px;
  text-align: center;
  background: #fff;
}
.fixed-mobile .fixed-inner a img {
  display: block;
}
.fixed-mobile .fixed-inner.cta-request, .fixed-mobile .fixed-inner.cta-booking {
  flex-basis: 40%;
  margin-right: auto;
  background-color: #c4d1a4;
  transition: all 0.4s ease-out;
}
.fixed-mobile .fixed-inner.cta-request:hover, .fixed-mobile .fixed-inner.cta-booking:hover {
  background: #89A446;
}
.fixed-mobile .fixed-inner.cta-request a, .fixed-mobile .fixed-inner.cta-booking a {
  display: block;
  color: #fff;
  font-family: "Martel Sans", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.fixed-mobile .fixed-inner.cta-booking {
  background-color: #59685D;
}

.slidePrev-btn, .slideNext-btn {
  position: absolute;
  display: block;
  z-index: 10;
  top: -50px;
  right: -30px;
  cursor: pointer;
  background-color: #59685D;
}
@media (min-width: 1408px) {
  .slidePrev-btn, .slideNext-btn {
    top: 0;
    right: -135px;
  }
}
.slidePrev-btn img, .slideNext-btn img {
  display: block;
  width: 50px;
  height: 50px;
}
@media (min-width: 1408px) {
  .slidePrev-btn img, .slideNext-btn img {
    width: 128px;
    height: 128px;
  }
}

.slidePrev-btn {
  top: 0;
  background: #c4d1a4;
}
@media (min-width: 1408px) {
  .slidePrev-btn {
    top: 128px;
  }
}
.slidePrev-btn img {
  rotate: 180deg;
}
.slidePrev-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}

.slideNext-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: auto;
  top: 5px;
  left: 10px;
  width: 100%;
  text-align: left;
}
@media (min-width: 1408px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top: 10px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2px;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 1px solid #59685D;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
@media (min-width: 1408px) {
  .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
}

.swiper-pagination-bullet-active {
  background: #59685D;
  border: none;
}

.swiper-button-lock {
  display: none !important;
}

.picker__table {
  font-size: 16px;
}
@media (min-width: 1024px) {
  .picker__table {
    font-size: 18px;
  }
}

@media (min-height: 33.875em) {
  .picker--opened .picker__frame {
    top: auto;
    bottom: 30px;
  }
}
#Bs-BookingWidget .Bs-BookingWidge .f1llftv3 {
  color: #59685D !important;
}

.f1llftv3 {
  color: #59685D !important;
}

.fqs9fqt {
  background: #59685D !important;
}

.f14ph9r3, .f14ph9r3:hover {
  background: #59685D !important;
}

.fk6yewe strong {
  color: #59685D !important;
}

.f24jk6z {
  color: #59685D !important;
}

.fixed-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
}
.fixed-popup .outer-popup {
  background: #dee4d2;
  padding: 30px;
  width: 80%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  color: #59685D;
}
@media (min-width: 1216px) {
  .fixed-popup .outer-popup {
    width: 60%;
  }
}
@media (min-width: 1408px) {
  .fixed-popup .outer-popup {
    width: 40%;
  }
}
.fixed-popup .outer-popup a {
  color: #59685D;
}
.fixed-popup .outer-popup .close-popup {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 1.25em;
}
.fixed-popup .outer-popup .close-popup .close-popup-text {
  display: none;
}
.fixed-popup .outer-popup .inner-popup {
  line-height: 1.5em;
}
@media (min-width: 769px) {
  .fixed-popup .outer-popup .inner-popup {
    font-size: 1.1em;
    line-height: 1.6em;
  }
}
.fixed-popup .outer-popup .inner-popup .title {
  font-size: 1.5em;
  font-weight: bold;
}
.fixed-popup .outer-popup .inner-popup p {
  margin: 1.4em 0;
}
.fixed-popup .outer-popup .inner-popup > *:last-child {
  margin-bottom: 0;
}

#cookiescript_badge {
  display: none !important;
}

.show-cookie-box {
  cursor: pointer;
}

.show-cookie-box:hover {
  color: #89A446;
}

.altea-headervideo__controls--bottom-left {
  bottom: 4.25rem !important;
}
@media (min-width: 769px) {
  .altea-headervideo__controls--bottom-left {
    bottom: 1.25rem !important;
  }
}

/*# sourceMappingURL=giardinomarling.css.map */
