@charset "UTF-8";
/* Fontello Icons */
@import "/_intern/fonts/fontello/css/fontello_mg.css";
/* === LESS variables === */
/* === CSS mixins === */
/* CALC example
	width: ~"calc(100% - 2px)";
	width: calc(~"50%" - $px_padding*2);
*/
/* roboto-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: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("/_intern/fonts/roboto/roboto-v32-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-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: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("/_intern/fonts/roboto/roboto-v32-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - 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: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("/_intern/fonts/roboto/roboto-v32-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-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: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("/_intern/fonts/roboto/roboto-v32-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* === === */
html {
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #707070;
  position: relative;
  background-color: #FAF9F0;
}
.icon-mg_logo:before {
  font-size: 85%;
  position: relative;
  top: 2px;
}
h1, .h1 {
  display: block;
  font-size: 110px;
  font-weight: 700;
  color: #0092C7;
  margin: 0px 0px 5px 0px;
  line-height: 1;
}
h2, .h2 {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: #0092C7;
  margin: 0px 0px 15px 0px;
}
h3, .h3 {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #0092C7;
  margin: 0px 0px 15px 0px;
  line-height: 1.1;
}
h4, .h4 {
  display: block;
  font-size: 14px;
  margin: 0px 0px 5px 0px;
}
a {
  color: #707070;
  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 a {
  color: #0092C7;
}
.text a:hover {
  text-decoration: underline;
}
button, .button, input[type="submit"] {
  display: inline-block;
  border: 0px;
  background-color: transparent;
  border: 1px solid #0092C7;
  padding: 0px 30px;
  line-height: 32px;
  border-radius: 16px;
  font-weight: 500;
  color: #0092C7;
  text-transform: none;
  transition: 0.4s all;
}
button:before, .button:before, input[type="submit"]:before {
  content: "";
  font-family: "fontello_mg";
  color: inherit;
  transform: rotate(-45deg);
  display: inline-block;
  margin-right: 6px;
  transition: 0.4s all;
}
button:hover, .button:hover, input[type="submit"]:hover {
  text-decoration: none !important;
  background-color: #0092C7;
  color: white;
}
button:hover:before, .button:hover:before, input[type="submit"]:hover:before {
  transform: rotate(0deg);
}
.form {
  margin: 0px;
  padding: 0px;
}
.form li {
  display: flex;
  padding-bottom: 10px;
}
.form li .label {
  display: inline-block;
  margin-right: 3px;
  text-align: right;
  color: #0092C7;
  width: 200px;
}
.form li input[type="text"], .form li input[type="email"], .form li input[type="url"], .form li input[type="date"], .form li input[type="password"], .form li input[type="web"], .form li textarea {
  height: 25px;
  width: 96%;
  padding: 0px 2%;
  border: 0px;
  color: #0092C7;
  border-bottom: 1px dotted #0092C7;
}
.form li textarea {
  height: auto;
  padding: 2%;
  border: 0px;
  border-bottom: 1px dotted #0092C7;
}
.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: 22px;
  display: block;
}
.form .req {
  display: inline-block;
  margin: 0px 5px;
  color: #0092C7;
}
.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: 1100px;
  margin: auto;
  position: relative;
}
.outer {
  max-width: 95%;
  width: 1400px;
  margin: auto;
  position: relative;
}
#header {
  position: fixed;
  z-index: 10;
  background-color: transparent;
  top: 0px;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
  transition: 0.4s all;
}
#header .buttoncontainer {
  padding: 15px 5%;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
#header .buttoncontainer > * {
  display: inline-block;
  text-align: center;
}
#header .moreofus {
  position: absolute;
  top: 25px;
  right: 5%;
  text-align: right;
  color: #0092C7;
}
#header .moreofus a {
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
}
#header .socials {
  position: absolute;
  top: 22px;
  right: 15%;
  text-align: right;
  color: #0092C7;
}
#header .socials a {
  color: inherit;
  font-size: 22px;
}
.scrolled #header {
  background-color: #FAF9F0;
}
#logo {
  display: inline-block;
  max-width: 60%;
}
#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;
}
#nav li.lvl1 a {
  display: inline-block;
  line-height: 35px;
  text-transform: uppercase;
}
#nav li.lvl1 a.active {
  color: #0092C7;
}
#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: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 750px;
  max-width: calc(100% - 30px);
  background-color: lightgrey;
  padding: 35px;
  box-sizing: border-box;
}
#cookiehint .text {
  font-size: 90%;
}
#cookiehint a.readmore {
  color: #0092C7;
  text-decoration: underline;
}
#cookiehint .button {
  margin: 10px 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;
}
#page {
  position: relative;
  padding-top: 100px;
}
#footer {
  position: relative;
  padding: 40px 0px;
  color: white;
  background-color: #0092C8;
}
#footer:after {
  content: "";
  display: block;
  position: absolute;
  height: 15px;
  bottom: -15px;
  left: 0px;
  width: 100%;
  background-color: #0092C8;
}
#footer a {
  color: white;
}
#footer .flexcontainer {
  align-items: flex-end;
  justify-content: space-between;
}
#footer .flexcontainer > *:last-Child {
  text-align: right;
}
.section {
  padding: 75px 0px;
  position: relative;
}
.accordeon_container {
  border-top: 1px solid #0092C7;
}
.accordeon {
  margin-bottom: 8px;
  position: relative;
  border-bottom: 1px solid #0092C7;
}
.accordeon .title {
  padding: 20px 0px;
  color: #0092C7;
  position: relative;
  font-weight: bold;
  font-size: 25px;
}
.accordeon .title .ic {
  color: #0092C7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: inline-block;
  height: 28px;
  width: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 25px;
  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: #E3F6FD;
}
.section.video .videocontainer video, .section.video_youtube .videocontainer video {
  width: 100%;
  display: block;
  object-fit: cover;
  background-color: #E3F6FD;
}
.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;
}
.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 #0092C7;
}
.slick-dots li.slick-active button {
  background-color: #0092C7;
}
.slick-arrow {
  position: absolute;
  bottom: 0px;
  display: inline-block;
  width: 50px;
  left: 50%;
}
.slick-arrow.prev {
  margin-left: -40px;
  transform: translateX(-50%) rotate(0);
}
.slick-arrow.next {
  margin-left: 40px;
  transform: translateX(-50%) rotate(180deg);
}
.flexcontainer {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}
.flexcontainer > * {
  width: 50%;
}
#onepage .section {
  position: relative;
  min-height: 80vh;
  box-sizing: border-box;
  padding: 100px 0px;
}
#popup {
  position: fixed;
  z-index: 20;
  background-color: #FAF9F0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  max-height: 100%;
  overflow: auto;
  display: none;
}
#popup .close {
  display: inline-block;
  margin: 50px 0px;
  width: 40px;
  position: relative;
  left: 5%;
}
body.openpopup {
  max-height: 100vh;
  overflow: hidden;
}
#popup_gallery .popup_section {
  position: relative;
  margin-bottom: 20px;
}
#popup_gallery .flexcontainer {
  gap: 20px;
}
#popup_gallery .flexcontainer img {
  margin-bottom: 20px;
}
#intro .flexcontainer {
  gap: 20px;
  margin-bottom: 20px;
}
#intro .intro_row1 .left, #intro .intro_row3 .left {
  width: 60%;
  text-align: right;
}
#intro .intro_row1 .right, #intro .intro_row3 .right {
  width: 40%;
}
#intro .intro_row2 {
  align-items: flex-end;
}
#intro .intro_row2 .left {
  width: 40%;
}
#intro .intro_row2 .right {
  width: 60%;
}
#intro h2 {
  color: #8B8B8B;
}
#advantages {
  min-height: 0px !important;
  padding: 50px 0px !important;
  background-color: rgba(0, 146, 200, 0.5);
  color: white;
}
#advantages img {
  width: 100px;
  height: 120px;
  object-fit: contain;
  display: inline-block;
}
#advantages .item {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 40px 40px;
  font-size: 15px;
  font-weight: 500;
  color: white;
}
#advantages .item:last-Child {
  border-right: 0px;
}
#advantages .line {
  margin: 20px auto;
  height: 2px;
  background-color: white;
  max-width: 100px;
}
#advantages .item:hover {
  text-decoration: none;
}
#slider {
  background-color: rgba(55, 55, 55, 0.1);
}
#slider h2, #slider h3 {
  color: #373737;
  max-width: 640px;
}
#slider .slidercontainer, #slider .topcontainer .text {
  margin-left: auto;
  max-width: 900px;
}
#slider .slidercontainer {
  margin-top: 30px;
  padding-bottom: 70px;
}
#slider .slidercontainer .item img {
  margin-bottom: 10px;
}
#faq .accordeon_container {
  margin-top: 50px;
}
#outro {
  XXpadding-bottom: 0px !important;
}
#outro .row1 {
  align-items: center;
  margin-bottom: 30px;
}
#outro .row2 {
  align-items: center;
  flex-direction: row-reverse;
}
#outro .row2 .right {
  text-align: right;
}
#outro .left {
  width: 60%;
}
#outro .right {
  width: 40%;
}
#outro img {
  display: block;
}
#contactbox {
  position: fixed;
  top: 70px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  padding: 100px 20px 50px 55%;
  transform: translateY(-150%);
  transition: 0.7s all;
  background-image: url("/MEDIEN/layout/contactbox_bg.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}
.contactbox #contactbox {
  transform: translateY(0%);
}
.contactbox #contactbox_trigger:before {
  transform: rotate(90deg);
}
#appointmentbox {
  position: fixed;
  top: 70px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  padding: 50px 20px 50px 45%;
  transform: translateY(-150%);
  transition: 0.7s all;
  background-image: url("/MEDIEN/layout/Rechteck_78.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}
#appointmentbox .container {
  width: 100%;
  max-width: 500px;
}
.appointmentbox #appointmentbox {
  transform: translateY(0%);
}
.appointmentbox .appointment_trigger:before {
  transform: rotate(90deg);
}
#standard h1 {
  font-size: 45px;
}
#standard h2 {
  font-size: 24px;
  margin-top: 20px;
}
#standard h3 {
  margin-top: 20px;
  font-size: 20px;
}
