/* Fontello Icons */
@import "/_intern/fonts/fontello/css/fontello_mg.css";
/* Material Symbols */
@import "/_intern/fonts/material-symbols/material_symbols.css";
/* === LESS variables === */
/* light blue */
/* light blue */
/* light yellow */
/* atkinson-hyperlegible-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: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  src: url("/_intern/fonts/atkinson/atkinson-hyperlegible-v12-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* atkinson-hyperlegible-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: "Atkinson Hyperlegible";
  font-style: italic;
  font-weight: 400;
  src: url("/_intern/fonts/atkinson/atkinson-hyperlegible-v12-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* atkinson-hyperlegible-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: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  src: url("/_intern/fonts/atkinson/atkinson-hyperlegible-v12-latin-700.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: "Atkinson Hyperlegible", Verdana, Arial;
  font-size: 18px;
  color: black;
  position: relative;
}
.icon-mg_logo:before {
  font-size: 85%;
  position: relative;
  top: 2px;
}
h1, .h1 {
  display: block;
  font-size: 60px;
  font-weight: 400;
  color: #0FA0D7;
  line-height: 1.1;
  margin: 0px 0px 30px 0px;
}
h1 b, h1 strong, .h1 b, .h1 strong {
  font-weight: 700;
}
h2, .h2 {
  display: block;
  color: #0FA0D7;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
}
h3, .h3 {
  display: block;
  font-size: 14px;
  margin: 0px 0px 5px 0px;
}
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.6;
}
.text p {
  margin: 0px 0px 15px 0px;
}
.text p:last-Child {
  margin: 0px;
}
.text ul {
  margin: 0px 0px 15px 0px;
  padding-left: 25px;
}
.text ul:last-Child {
  margin: 0px;
}
.text a {
  color: #0FA0D7;
}
.text a:hover {
  text-decoration: underline;
}
.text b, .text strong {
  font-weight: bold;
  color: #0FA0D7;
}
button, .button, a.button, input[type="submit"] {
  display: inline-block;
  border: 0px;
  background-color: rgba(235, 235, 30, 0.7);
  padding: 0px 15px;
  line-height: 34px;
  font-weight: 400;
  color: #0FA0D7;
  text-transform: uppercase;
  border-radius: 17px;
  -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: #0FA0D7;
}
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 #0FA0D7 r g b / 30%);
}
.form {
  margin: 0px;
  padding: 0px;
}
.form li {
  display: block;
  padding-bottom: 10px;
  max-width: 500px;
}
.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="password"], .form li input[type="web"], .form li textarea {
  font-size: 16px;
  height: 34px;
  border-radius: 3px;
  width: 96%;
  padding: 0px 2%;
  background-color: rgba(235, 235, 30, 0.3);
  border: 0px;
}
.form li textarea {
  height: auto;
  padding: 2%;
}
.form li input[type="radio"], .form li input[type="checkbox"] {
  position: absolute;
}
.form li.input label {
  display: none;
}
.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;
  font-size: 90%;
}
.form .req {
  display: inline-block;
  margin: 0px 5px;
  color: #0FA0D7;
}
.form .hidden {
  display: none;
}
.form .g-recaptcha {
  margin: 10px 0px;
}
.form li .pflichtfeld_text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 15px;
  color: grey;
}
.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: 980px;
  margin: auto;
  position: relative;
}
.outer {
  max-width: 95%;
  width: 1300px;
  margin: auto;
  position: relative;
}
#header {
  position: fixed;
  z-index: 10;
  background-color: white;
  top: 0px;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
}
#logo {
  display: inline-block;
  max-width: 60%;
  margin: 8px 0px 5px 0px;
}
#logo img {
  display: block;
  height: 50px;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
#mainmenu {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
#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 {
  color: #5C666A;
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
}
#nav li.lvl1 a.active {
  color: #0FA0D7;
}
#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: 5px;
  border: 1px solid grey;
  padding: 35px;
  box-sizing: border-box;
}
#cookiehint .text {
  font-size: 94%;
}
#cookiehint a.readmore {
  color: #0FA0D7;
  text-decoration: underline;
}
#cookiehint .checkboxes {
  margin-top: 10px;
}
#cookiehint .checkboxes .item {
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 5px;
  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;
}
#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;
}
#page {
  position: relative;
  padding-top: 50px;
}
#footer {
  position: relative;
  padding: 0px 0px;
  color: white;
  background-color: #0FA0D7;
  /*
	&:after {
		content: "";
		display: block;
		position: absolute;
		height: 15px;
		bottom: -15px;
		left: 0px;
		width: 100%;
		background-color: $color_bg_footer;
	}
	*/
}
#footer:before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% + 15px);
  top: 0px;
  left: 0px;
  width: 100%;
  background-image: url(/MEDIEN/layout/footer_background.svg);
  background-size: cover;
}
#footer:after {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% + 15px);
  top: 0%;
  left: 0px;
  width: 100%;
  background-image: url(/MEDIEN/layout/Pfeile_Lines.svg);
  background-size: auto 160%;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.3;
  pointer-events: none;
}
#footer .text, #footer .text a, #footer .text b, #footer .text strong {
  line-height: 1.4;
  color: white;
}
#footer .container {
  position: relative;
  z-index: 1;
}
#footer .claim {
  font-size: 120px;
  font-weight: bold;
  padding: 75px 0px;
  line-height: 1;
}
#footer .flexcontainer {
  display: flex;
  flex-wrap: nowrap;
  gap: 100px;
  align-items: flex-end;
  padding-bottom: 30px;
}
#footer .flexcontainer .legals {
  margin-left: auto;
}
#footer .address {
  margin-top: 60px;
  position: relative;
}
#footer .address:before {
  content: "";
  display: block;
  height: 50px;
  width: 1px;
  top: -55px;
  left: 30%;
  background-color: white;
  position: absolute;
}
.section {
  padding: 75px 0px;
  position: relative;
}
.section.hideSection {
  display: none;
}
.accordeon_container {
  margin-top: 35px;
  max-width: 780px;
}
.accordeon {
  margin-bottom: 14px;
  position: relative;
  background-color: rgba(15, 160, 215, 0.4);
  border-radius: 3px;
  transition: 0.3s all;
}
.accordeon .title {
  padding: 10px 20px;
  font-size: 115%;
  color: black;
  position: relative;
  cursor: pointer;
}
.accordeon .title .ic {
  color: black;
  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 .contentbox.text b, .accordeon .contentbox.text strong {
  color: inherit;
}
.accordeon.opened {
  background-color: rgba(15, 160, 215, 0.14);
}
.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: rgba(235, 235, 30, 0.7);
}
.section.video .videocontainer video, .section.video_youtube .videocontainer video {
  width: 100%;
  max-width: 100%;
  margin: auto;
  display: block;
  object-fit: cover;
  background-color: rgba(235, 235, 30, 0.7);
}
.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 #0FA0D7;
  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 #0FA0D7;
}
.slick-dots li.slick-active button {
  background-color: #0FA0D7;
}
#intro {
  padding: 0px;
}
#intro_keyvisual {
  position: relative;
}
#intro_keyvisual video {
  display: block;
  width: 100%;
}
#introtext .iconanimation {
  position: absolute;
  top: -14vh;
  right: 0px;
  width: calc((118vw - 980px)/2);
  max-width: 700px;
  z-index: 1;
}
#introtext .iconanimation .template_image {
  display: block;
  width: 100%;
}
#introtext .iconanimation .blue {
  position: absolute;
  top: 5%;
  left: 19%;
  display: block;
  width: 54%;
  z-index: 1;
  opacity: 0;
  transition: 1.2s all;
  transition-delay: 0.2s;
  transform: translateY(-35%) translateX(50%) rotate(180deg);
}
#introtext .iconanimation .yellow {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  z-index: 2;
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateY(20%) translateX(-35%);
  transition: 1.2s all;
}
#introtext .image {
  margin-bottom: 30px;
}
.scrolled #introtext .iconanimation .blue {
  opacity: 1;
  transform: translateY(10%) translateX(0%) rotate(180deg);
}
.scrolled #introtext .iconanimation .yellow {
  transform: translateY(0%) translateX(0%);
  opacity: 1;
}
#offers .section_title:before {
  background-image: url("/MEDIEN/layout/logocon_yellow.svg");
  top: -10px;
  left: auto;
  right: calc(100% + 10px);
  width: 100px;
  height: 150px;
}
#about .image {
  width: 120%;
  left: -20%;
  position: relative;
  overflow: hidden;
}
#about .image img {
  display: block;
}
#about .image:after {
  content: "";
  display: block;
  background-image: url("/MEDIEN/layout/logocon_yellow.svg");
  position: absolute;
  left: 5%;
  top: 40%;
  height: 100%;
  width: 35%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#about .textblock {
  position: relative;
  z-index: 1;
  background-color: white;
  margin-top: -70px;
  padding-top: 20px;
  padding-left: 20px;
  margin-left: -20px;
}
#quote {
  padding-top: 0px;
}
#quote .container {
  padding-top: 75px;
  border-top: 1px solid #0FA0D7;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
#quote .container .image {
  width: 25%;
}
#quote .container .text {
  width: 75%;
}
#quote .text {
  color: #0FA0D7;
}
#quote .text em {
  font-weight: bold;
  line-height: 1.3;
  font-size: 28px;
}
#contact #form {
  padding-left: 50px;
}
#contact #form form {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #0FA0D7;
}
#contact #form h2 {
  font-weight: 400;
  font-size: 28px;
}
.section_title {
  color: #0FA0D7;
  font-size: 115%;
  background-color: rgba(235, 235, 30, 0.7);
  position: relative;
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 25px;
}
.section_title.hasCross:before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  left: -65px;
  bottom: -5px;
  background-image: url("/MEDIEN/layout/cross_yellow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
