/* Fontello Icons */
@import "/_intern/fonts/fontello/css/fontello_mg.css";
/* Material Symbols */
/*@import '/_intern/fonts/material-symbols/material_symbols.css';*/
/* === LESS variables === */
/* noto-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/_intern/fonts/noto_sans/noto-sans-v42-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 400;
  src: url("/_intern/fonts/noto_sans/noto-sans-v42-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/_intern/fonts/noto_sans/noto-sans-v42-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 700;
  src: url("/_intern/fonts/noto_sans/noto-sans-v42-latin-700italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* shantell-sans-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Shantell Sans";
  font-style: normal;
  font-weight: 300;
  src: url("/_intern/fonts/shantell/shantell-sans-v13-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* shantell-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Shantell Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/_intern/fonts/shantell/shantell-sans-v13-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* === CSS mixins === */
/* CALC example
	width: ~"calc(100% - 2px)";
	width: calc(~"50%" - $px_padding*2);
*/
/* === === */
html {
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-family: "Noto Sans", Helvetica, sans-serif;
  font-size: 16px;
  color: black;
  position: relative;
}
.icon-mg_logo:before {
  font-size: 85%;
  position: relative;
  top: 2px;
}
h1, .h1, h2, .h2 {
  display: block;
  /*
	font-family: 'Shantell Sans', Verdana;
	font-weight: 300;
  font-size: 35px;
	*/
  font-weight: 400;
  font-size: 30px;
  margin: 0px 0px 40px 0px;
  line-height: 1.3;
}
h3, .h3 {
  display: block;
  /*
	font-family: 'Shantell Sans', Verdana;
	font-weight: 300;
  font-size: 26px;
	*/
  font-weight: 400;
  font-size: 20px;
  margin: 0px 0px 20px 0px;
  line-height: 1.3;
  text-transform: uppercase;
}
h4, .h4 {
  display: block;
  font-size: 14px;
  margin: 0px 0px 5px 0px;
}
a {
  color: black;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.grid2 {
  float: left;
  width: 50%;
  box-sizing: border-box;
}
.grid3 {
  float: left;
  width: 33.33%;
  box-sizing: border-box;
}
.clear:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
img {
  max-width: 100%;
  height: auto;
}
.text {
  line-height: 1.5;
}
.text p {
  margin: 0px 0px 15px 0px;
}
.text p:last-Child {
  margin: 0px;
}
.text ul, .text ol {
  padding-left: 15px;
  margin: 0px 0px 15px 0px;
}
.text ul:last-Child, .text ol:last-Child {
  margin: 0px;
}
.text ul li, .text ol li {
  padding-bottom: 5px;
}
.text a {
  color: #84be58;
}
.text a:hover {
  text-decoration: underline;
}
.text b, .text strong {
  font-weight: bold;
}
button, .button, a.button, input[type="submit"] {
  display: inline-block;
  border: 0px;
  background-color: #84be58;
  padding: 0px 10px;
  line-height: 32px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  border-radius: 0px;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
button:hover, .button:hover, a.button:hover, input[type="submit"]:hover {
  text-decoration: none;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #424242;
  margin: 0;
  width: 40px;
  height: 20px;
  border-color: 1px solid grey;
  border-radius: 10px;
  position: relative;
  line-height: 1;
  margin-right: 7px;
  transition: 0.4s all;
}
input[type="checkbox"]:disabled, input[type="checkbox"][disabled], input[type="checkbox"][disabled=""] {
  background-color: #f8f8f8;
  opactiy: 0.5;
}
input[type="checkbox"]:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: white;
  transition: 0.4s all;
}
input[type="checkbox"]:checked {
  background-color: #84be58;
}
input[type="checkbox"]:checked:before {
  left: calc(50% + 1px);
}
input[type=checkbox][disabled] {
  background-color: rgb(from #424242 r g b / 30%);
}
input[type=checkbox][disabled]:checked {
  background-color: rgb(from #84be58 r g b / 30%);
}
.form {
  margin: 0px;
  padding: 0px;
}
.form li {
  display: block;
  padding-bottom: 10px;
  max-width: 100%;
}
.form li label, .form li .label {
  display: block;
  margin-bottom: 3px;
}
.form li input[type="text"], .form li input[type="email"], .form li input[type="url"], .form li input[type="date"], .form li input[type="number"], .form li input[type="password"], .form li input[type="web"], .form li textarea, .form li select {
  height: 38px;
  width: 100%;
  background-color: #f8f8f8;
  border: 1px solid grey;
  border-radius: 3px;
  padding: 0px 2%;
  box-sizing: border-box;
}
.form li textarea {
  height: auto;
  padding: 2%;
}
.form li input[type="radio"], .form li input[type="checkbox"] {
  position: absolute;
}
.form li.radio .field > div, .form li.checkbox .field > div {
  position: relative;
  padding: 2px 0px;
}
.form li.radio label, .form li.checkbox label {
  margin-left: 50px;
  display: block;
}
.form .req {
  display: inline-block;
  margin: 0px 5px;
  color: #84be58;
}
.form .hidden {
  display: none;
}
.form .g-recaptcha {
  margin: 10px 0px;
}
.form li .pflichtfeld_text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-style: italic;
}
.form .forTheBear {
  overflow: hidden;
  height: 0px;
  visibility: hidden;
}
.animateme {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.8s all;
}
.animateme.done {
  opacity: 1;
  transform: translateY(0px);
}
img.animateme {
  transition-delay: 0.2s;
}
.inner {
  max-width: 95%;
  width: 1000px;
  margin: auto;
  position: relative;
}
#header {
  position: fixed;
  z-index: 10;
  background-color: white;
  top: 0px;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
}
#header .container {
  height: 110px;
  position: relative;
  transition: 0.8s all;
}
.scrolled #header .container {
  height: 80px;
}
.scrolled #header #logo img {
  width: 220px;
}
#logo {
  display: inline-block;
  max-width: 50%;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
#logo img {
  width: 275px;
  /* transform: translateY(20%); */
  transition: 0.7s all;
}
#mainmenu {
  position: absolute;
  bottom: 10%;
  right: 0px;
}
#nav {
  margin: 0px;
  padding: 0px;
  text-align: center;
  /* gets handled via javascript */
  /*
	li.lvl1:hover > .submenu {
		display: block;
	}
	*/
}
#nav li.lvl1 {
  list-style-type: none;
  display: inline-block;
  margin: 0px 18px;
  position: relative;
}
#nav li.lvl1:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 60%;
  top: 52%;
  right: -18px;
  transform: translateY(-50%);
  display: inline-block;
  background-color: #84be58;
}
#nav li.lvl1:last-Child:after {
  display: none;
}
#nav li.lvl1 a {
  display: inline-block;
  font-size: 110%;
  line-height: 35px;
  transition: 0.5s all;
}
#nav li.lvl1 a.active {
  text-decoration: underline;
}
#nav li.lvl1:hover a, #nav li.lvl1.hover a {
  text-decoration: underline;
}
#nav .submenu {
  padding: 0px;
  margin: 0px;
  display: none;
  position: absolute;
  z-index: 5;
  text-align: left;
  padding: 0px;
  background-color: red;
  min-width: 250px;
  border: 1px solid black;
  opacity: 0;
}
#nav .submenu li.lvl2 {
  margin: 0px;
  display: block;
  list-style-type: none;
}
#nav .submenu li.lvl2 a {
  padding: 0px 10px;
  display: block;
}
#mobilmenu_trigger {
  display: none;
  position: absolute;
  right: 2%;
  top: 10px;
  width: 50px;
  z-index: 20;
}
#mobilmenu_trigger span {
  position: relative;
  height: 6px;
  display: block;
  margin: 5px 0px;
  background-color: white;
  transform: rotate(0deg);
  opacity: 1;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.mobilenav #mobilmenu_trigger .line1 {
  transform: translateY(11px) rotate(45deg);
}
.mobilenav #mobilmenu_trigger .line2 {
  opacity: 0;
}
.mobilenav #mobilmenu_trigger .line3 {
  transform: translateY(-11px) rotate(-45deg);
}
#mobilemenu_container {
  display: none;
  position: absolute;
  top: 0px;
  right: -300px;
  width: 300px;
  height: 100vh;
  z-index: 19;
  overflow: auto;
  background-color: #bebebe;
  -webkit-transition: all 0.75s;
  -moz-transition: all 0.75s;
  transition: all 0.75s;
}
#mobilemenu_container #mobilenav_logo {
  display: block;
  margin: 10px auto;
}
.mobilenav #mobilemenu_container {
  right: 0px;
}
#nav_mobile {
  margin: 0px;
  padding: 0px;
}
#nav_mobile li {
  display: block;
  list-style-type: none;
  position: relative;
}
#nav_mobile li a {
  display: block;
  color: #000000;
  padding: 0px 15px;
  line-height: 35px;
  text-decoration: none;
}
#cookiehint {
  display: none;
  position: fixed;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 750px;
  max-width: calc(100% - 30px);
  background-color: white;
  border-radius: 0px;
  border: 1px solid grey;
  padding: 35px;
  box-sizing: border-box;
}
#cookiehint .text {
  font-size: 94%;
}
#cookiehint a.readmore {
  color: #84be58;
  text-decoration: underline;
}
#cookiehint .checkboxes {
  margin-top: 10px;
}
#cookiehint .checkboxes .item {
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 0px;
  margin-bottom: 5px;
  display: flex;
  gap: 10px;
  align-content: center;
  align-items: center;
}
#cookiehint .checkboxes label {
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
}
#cookiehint .checkboxes .desc {
  font-size: 90%;
}
#cookiehint .buttons {
  margin-top: 15px;
}
#cookiehint .button {
  margin: 0px 10px 0px 0px;
  color: inherit;
}
#cookiehint .cookie_deny {
  background-color: white;
  border: 1px solid grey;
  color: grey;
}
#cookiehint .cookie_save {
  background-color: white;
  border: 1px solid grey;
  color: grey;
}
#cookiehint .cookie_acceptAll {
  color: white;
}
#keyvisual {
  position: relative;
  height: 92vh;
  overflow: hidden;
}
#keyvisual.noimage {
  height: 30vh;
}
#keyvisual_image {
  height: 100%;
  position: relative;
}
#keyvisual_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: 0.5s all;
}
#keyvisual_text {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: white;
}
#page {
  position: relative;
  padding-top: 100px;
}
#footer {
  position: relative;
  padding: 25px 0px 15px 0px;
  color: white;
  background-color: #ececec;
}
#footer:after {
  content: "";
  display: block;
  position: absolute;
  height: 15px;
  bottom: -15px;
  left: 0px;
  width: 100%;
  background-color: #ececec;
}
#footer .container {
  text-align: center;
}
#footer .container a {
  display: inline-block;
  margin: 0px 15px;
}
#standard {
  min-height: 85vh;
}
.flexcontainer {
  display: flex;
  flex-wrap: nowrap;
}
.section_wrapper.hideSection {
  display: none;
}
.section_wrapper.noMargin .section {
  padding-bottom: 0px;
  margin-bottom: -75px !important;
}
.section_wrapper.noMargin:last-Child .section {
  margin-bottom: 0px !important;
}
.section {
  padding: 100px 0px;
  position: relative;
}
.section.text .text {
  margin: auto;
  max-width: 900px;
}
.accordeon {
  margin-bottom: 8px;
  position: relative;
  background-color: #dadada;
}
.accordeon .title {
  padding: 25px;
  color: #84be58;
  position: relative;
}
.accordeon .title .ic {
  color: #84be58;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: inline-block;
  height: 28px;
  width: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 20px;
  cursor: default;
}
.accordeon .title .ic.opened {
  display: none;
}
.accordeon .title .ic.closed {
  display: inline-block;
}
.accordeon .content {
  display: block;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.accordeon .contentbox {
  padding: 5px 25px 40px 25px;
}
.accordeon.opened .content {
  max-height: 500px;
  overflow: auto;
}
.accordeon.opened .title .ic.opened {
  display: inline-block;
}
.accordeon.opened .title .ic.closed {
  display: none;
}
.section.video .videocontainer, .section.video_youtube .videocontainer {
  position: relative;
  background-color: #ececec;
}
.section.video .videocontainer video, .section.video_youtube .videocontainer video {
  width: 100%;
  max-width: 100%;
  margin: auto;
  display: block;
  object-fit: cover;
  background-color: #ececec;
}
.youtube_wrapper .videocontainer {
  position: relative;
  padding-bottom: 56.6%;
  border: 1px solid var(--color_boxes);
}
.youtube_wrapper .videocontainer iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}
#blog_newest {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
#blog_newest .item {
  width: calc(50% - 25px);
  padding: 70px 25px 100px 25px;
  background-color: transparent;
  border: 1px solid #84be58;
  position: relative;
  box-sizing: border-box;
}
#blog_newest .date {
  text-transform: uppercase;
  font-weight: 400;
}
#blog_all .container .item {
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid grey;
  box-sizing: border-box;
}
#blog_all .container .date {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 5px;
  box-sizing: border-box;
}
.externals_loader {
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  /* transform: translateY(-50%) translateX(-50%); */
}
.externals_loader > div {
  max-width: 500px;
  margin: auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.externals_loader button {
  cursor: pointer;
}
.slick-dots {
  position: absolute;
  margin: 0px;
  padding: 0px;
  width: 90%;
  bottom: -70px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
.slick-dots li {
  list-style-type: none;
  display: inline-block;
}
.slick-dots li button {
  color: transparent !important;
  display: block;
  padding: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0px 5px;
  background-color: transparent;
  border: 1px solid #84be58;
}
.slick-dots li.slick-active button {
  background-color: #84be58;
}
#onepage_wrapper {
  position: relative;
}
#onepage_wrapper .section {
  padding: 100px 0px;
  position: relative;
}
#intro {
  padding: 0px !important;
}
#intro img {
  display: block;
  height: auto;
}
#intro .icon_container {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
#intro .dgsv_icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 120px;
}
#intro .dgsv_icon img {
  display: block;
}
.container.narrow {
  max-width: 700px;
  margin: auto;
}
#start {
  background-color: #b5d595;
}
#start .textbox {
  padding-top: 20px;
}
#start .layout_image {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 10%;
  height: 100%;
  background-image: url("/MEDIEN/layout/Foto02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#offers {
  background-color: #ececec;
}
#offers .flexcontainer {
  gap: 20px;
}
#offers .flexcontainer .item {
  width: 33.33%;
  box-sizing: border-box;
  padding: 30px;
  position: relative;
  z-index: 1;
}
#offers .flexcontainer .item:after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("/MEDIEN/layout/logo_icon_spirale.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  filter: grayscale(1);
  opacity: 0.2;
}
#offers .flexcontainer .item .text {
  position: relative;
  z-index: 1;
}
#offers .flexcontainer .item:nth-child(2):after {
  background-image: url("/MEDIEN/layout/spirale_02.svg");
}
#offers .flexcontainer .item:nth-child(3):after {
  background-image: url("/MEDIEN/layout/spirale_03.svg");
}
#offers .layout_image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 10%;
  height: 130%;
  background-image: url("/MEDIEN/layout/Foto02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
#contact {
  padding: 40px 0px !important;
  background-color: #dadada;
}
#contact .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#contact .container .left {
  width: 33.33%;
}
#contact .container .right {
  width: 66.66%;
}
#about {
  background-color: #c8dfb0;
}
#about .flexcontainer {
  display: flex;
  gap: 70px;
}
#about .image {
  display: block;
  margin: auto;
  max-width: 90%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
}
#about .image img {
  display: block;
}
