/*-------------------------------------------------------------------------------------

  Copyright (c) 2014 Pixelzauber GmbH, Switzerland
  CSS definition for basic layout

-------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

:root {
  --color-black: rgb(0, 0, 0);
  --color-black-90: rgb(26, 26, 26);
  --color-black-80: rgb(51, 51, 51);
  --color-black-70: rgb(77, 77, 77);
  --color-black-60: rgb(102, 102, 102);
  --color-black-50: rgb(128, 128, 128);
  --color-black-40: rgb(153, 153, 153);
  --color-black-30: rgb(179, 179, 179);
  --color-black-20: rgb(204, 204, 204);
  --color-black-15: rgb(217, 217, 217);
  --color-black-10: rgb(230, 230, 230);
  --color-black-05: rgb(242, 242, 242);
  --color-white: rgb(255, 255, 255);
  --color-blue-light: rgb(138, 181, 225);
  --color-blue-dark: rgb(0, 108, 181);
  --color-red: rgb(210, 0, 0);
  --color-green: rgb(46, 141, 0);

  --font-main: "Inter", Arial, Helvetica, sans-serif;
}

/**
 * ANCHOR Normalize
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}
html {
  height: 100%;
  font-size: 16px;
  line-height: 23px;
}
body {
  height: 100%;
  line-height: 1;
}
body ol,
body ul {
  list-style: none;
  margin-bottom: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a,
a:active,
a:focus,
button,
button:focus,
button:active {
  outline: none;
  outline: 0;
}
input::-moz-focus-inner {
  border: 0;
}
ul,
ol {
  padding: 0;
  margin-left: 25px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 8px;
}

/**
 * ANCHOR Layout
 *
 */
header,
section,
nav,
article,
main,
address,
footer {
  position: relative;
  float: left;
  width: 100%;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1178px;
  height: auto;
}

.mobile {
  display: none;
}
.desktop {
  display: block;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.gray {
  background-color: var(--color-black-05);
}
.content {
  margin: 0;
  width: 100%;
}
.column-left,
.spalte-links {
  float: left;
  width: calc(100% - 400px);
}
.column-right,
.spalte-rechts {
  float: right;
  width: 378px;
}
.goTop {
  cursor: pointer;
}
.goMore {
  cursor: pointer;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.flexbox > * {
  flex-basis: 260px;
  flex-basis: calc(calc(680px - 100%) * 999);
  flex-grow: 1;
}
.two-col {
  flex-grow: 2;
}
.three-col {
  flex-grow: 3;
}
.four-col {
  flex-grow: 4;
}

header {
  position: fixed;
  float: left;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 100;
  height: 150px;
}
header .background {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 115px;
  background-color: rgba(255, 255, 255, 1);
}
header .gradient {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.logo {
  float: left;
  margin: 16px 0 0 0;
  width: calc(100% - 160px);
  max-width: 278px;
}
.logo img {
  float: left;
  width: 100%;
  height: auto;
}

.navTop {
  float: right;
  width: auto;
  margin-top: 64px;
  height: 40px;
}

.headerImg {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 70%;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.home .headerImg {
  height: 100%;
}
.teaser {
  position: absolute;
  padding: 0;
  right: calc(50% + 89px);
  bottom: 40px;
  width: 50%;
  max-width: 500px;
  z-index: 18;
}
.mouse {
  position: absolute;
  left: 50%;
  bottom: 98px;
  width: 28px;
  height: 42px;
  border: 2px solid var(--color-blue-dark);
  border-radius: 16px;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 20;
}
.mouse::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 12px;
  top: 6px;
  background-color: var(--color-blue-dark);
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  animation: mouse 2s infinite;
}
.mouse::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 40px;
  top: 60px;
  left: 11px;
  background-color: var(--color-blue-dark);
}
@keyframes mouse {
  from {
    opacity: 1;
    top: 6px;
  }
  to {
    opacity: 0;
    top: 12px;
  }
}

main {
  padding: 100px 0;
  min-height: calc(50% - 160px);
}
.small {
  max-width: 778px;
}

section {
  float: left;
  padding: 120px 0;
  width: 100%;
}
.home .navigation {
  display: none;
}
.home #content {
  width: calc(100% - 30px);
}

.footer {
  position: relative;
  padding: 0;
  height: auto;
}
.footer img {
  float: right;
  width: 100%;
  max-width: 378px;
  margin-bottom: 22px;
}
footer {
  position: relative;
  padding: 60px 0;
  height: auto;
  background: var(--color-blue-dark);
}

.goUp {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 11px;
  height: 40px;
  width: 40px;
  z-index: 80;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--color-blue-dark);
  background-image: url("../images/icon_up.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px auto, auto;
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100000;
}
#react-cookie-banner {
  position: fixed;
  padding: 30px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--color-blue-dark);
  z-index: 100000;
}

/* Parallax */
.parallax {
  padding: 0;
  margin: 0;
  min-height: 50%;
  overflow: hidden;
}
.parallax img {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
}

/* Standard Images */
.image-wrapper,
.image-wrapper-left,
.image-wrapper-right,
.image-wrapper-big {
  float: right;
  margin: 0 0 10px 30px;
  width: 40%;
  max-width: 280px;
  height: auto;
}
.image-wrapper-left {
  float: left;
  margin: 4px 30px 10px 0;
}
.image-wrapper-big {
  float: left;
  margin: 4px 0 0 0;
  width: 100%;
  max-width: inherit;
}
.image-wrapper-right {
  float: right;
  margin: 4px 0 10px 30px;
}
.image-wrapper img,
.image-wrapper-left img,
.image-wrapper-right img,
.image-wrapper-big img {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

/* Images */
.imgFrame,
.imageFrame {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  background-position: center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.imgFrame::before,
.imageFrame::before {
  content: "";
  display: block;
  padding-top: 56%;
}

/* Video */
.responsive-iframe {
  position: relative;
  margin-top: 0px;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  padding-top: 0px;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * ANCHOR Text Basics
 *
 */
body {
  font-family: var(--font-main);
  color: var(--color-black-80);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  -webkit-text-size-adjust: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 33px 0 12px;
  font-family: var(--font-main);
  color: var(--color-blue-dark);
  font-weight: 600;
  line-height: 1.1;
}

h1,
.h1 {
  font-size: 40px;
  margin: 11px 0 33px 0;
  padding-bottom: 25px;
  background: transparent url(../images/bg_h1.svg) left bottom no-repeat;
  background-size: 78px 2px;
}
h2,
.h2 {
  font-size: 26px;
}
h3,
.h3 {
  font-size: 26px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 20px;
  color: var(--color-black);
}
h6,
.h6 {
  font-size: 20px;
  color: var(--color-black);
}
h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
  margin-top: 0;
}
/*
.first {
  margin-top: 0;
}
.solo {
  margin: 0;
}
*/
.center {
  text-align: center;
}

p {
  line-height: 1.4;
  margin: 0;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
p + p {
  margin: 12px 0 0;
}

a {
  color: var(--color-blue-dark);
  font-weight: 500;
  text-decoration: none;
}
a:hover {
  color: var(--color-blue-light);
  text-decoration: none;
}
a[name],
a[name]:hover {
  color: var(--color-black-80);
  text-decoration: none;
}

em {
  font-style: italic;
}

pre {
  padding: 10px 19px;
  margin: 18px 0 12px 0;
  line-height: 20px;
  width: auto;
  color: var(--color-blue-dark);

  border: 1px solid var(--color-black-20);
  background-color: var(--color-black-05);

  overflow: auto;
  overflow-y: hidden;
}

sup {
  line-height: 1em;
}

blockquote {
  display: inline-block;
  position: relative;
  margin: 11px 0;
  padding: 20px 60px;
  width: auto;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--color-black-50);
  border-radius: 8px;
  background-color: var(--color-black-05);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
blockquote::before,
blockquote::after {
  position: absolute;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 1;
  font-size: 80px;
}
blockquote::before {
  content: "\201C";
  top: 10px;
  left: 10px;
}
blockquote::after {
  right: 10px;
  bottom: 0;
  content: "\201D";
}
blockquote cite {
  left: 40px;
  margin-bottom: 8px;
  font-size: 1em;
  color: var(--color-black-30);
}
blockquote cite:before {
  content: "\2014 \2009";
}

ol,
ul {
  margin: 0;
  padding: 0 0 15px 0;
  width: 100%;
}
ul ul,
ol ol {
  margin: 0;
  padding: 0;
  width: 100%;
}
ul li {
  list-style: none;
  text-align: left;
  line-height: 1.5em;
  margin: 0 0 0 24px;
}
ul li::before {
  float: left;
  content: "\25CF";
  color: var(--color-blue-dark);
  margin: 0 0 -10px -18px;
  display: block;
  font-size: 0.8em;
}
ol li {
  margin-left: 30px;
  line-height: 1.5em;
  list-style: decimal;
}
@media print {
  ol {
    margin: 0 0 0 24px;
    padding: 0;
    list-style: decimal;
  }
  ul {
    margin: 0 0 0 17px;
    padding: 0;
    list-style: disc;
  }
  ol li,
  ul li {
    margin: 0;
    padding: 0;
    background: none;
  }
}

b,
strong {
  font-weight: 500;
}

hr {
  padding: 0 0 20px 0;
  margin: 20px 0 0 0;
  height: 0;
  border: 0;
  border-top: 1px dotted var(--color-black);
}

table {
  margin-bottom: 12px;
  font-family: var(--font-main);
  font-size: 1em;
}
table th {
  border-bottom: 1px dotted var(--color-black);
  font-weight: 500;
  padding: 2px 0;
  text-align: left;
}
table td {
  padding: 4px 0;
}
table.none,
table.none td {
  padding: 0px;
  margin-bottom: 0px;
}
table.zebra thead tr {
  background-color: var(--color-black-10);
}
table.zebra tbody tr:nth-child(even) {
  background-color: var(--color-black-05);
}

button {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

/**
 * ANCHOR Text Customising
 *
 */

.teaser p {
  font-size: 32px;
  color: var(--color-blue-dark);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
}

.content a.pdf,
.content a.doc,
.content a.xls,
.content a.ppt,
.content a.jpg,
.content a.zip,
.content a.mp4,
.content a.xd {
  background-color: transparent;
  background-position: 1px 3px;
  background-size: 14px auto;
  background-repeat: no-repeat;
  padding-left: 22px;
  padding-right: 0;
}
.content a.pdf {
  background-image: url("../images/icon_files_pdf.svg");
}
.content a.doc {
  background-image: url("../images/icon_files_doc.svg");
}
.content a.xls {
  background-image: url("../images/icon_files_xls.svg");
}
.content a.ppt {
  background-image: url("../images/icon_files_ppt.svg");
}
.content a.jpg {
  background-image: url("../images/icon_files_img.svg");
}
.content a.zip {
  background-image: url("../images/icon_files_zip.svg");
}
.content a.mp4 {
  background-image: url("../images/icon_files_mp4.svg");
}
.content a.xd {
  background-image: url("../images/icon_files_xd.svg");
}
.content a.none,
.content a:hover.none {
  background: none;
  padding-right: 0px;
  padding-left: 0px;
}

p.button {
  padding: 20px 0 30px 0;
}
p.button a {
  padding: 8px 50px;
  cursor: pointer;
  color: var(--color-white);
  background: none;
  background-color: var(--color-blue-dark);
  border: 1px solid var(--color-blue-dark);
  border-radius: 3px;
}
p.button a:hover {
  color: var(--color-white) !important;
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
}

blockquote {
  margin: 22px 22px 11px 22px;
  padding: 40px 50px;
  max-width: calc(100% - 44px);
  background-color: var(--color-white);
  box-shadow: 0px 0 20px var(--color-black-10);
}
blockquote::before {
  top: -12px;
  left: -15px;
  height: 60px;
  width: 60px;
  content: "";
  background-image: url(../images/icon_quote.svg);
  background-size: 60px auto;
  background-repeat: no-repeat;
}
blockquote::after {
  display: none;
  content: "";
  right: unset;
  bottom: unset;
}

a.forward {
  padding-right: 20px;
  background: transparent url("../images/icon_nav_forward_dark.svg") center right no-repeat;
  background-size: auto 16px;
}
a:hover.forward {
  background: transparent url("../images/icon_nav_forward_light.svg") center right no-repeat;
  background-size: auto 16px;
}
a.back {
  padding-left: 20px;
  background: transparent url("../images/icon_nav_back_dark.svg") center left no-repeat;
  background-size: auto 16px;
}
a:hover.back {
  background: transparent url("../images/icon_nav_back_light.svg") center left no-repeat;
  background-size: auto 16px;
}

img.circle {
  float: left;
  width: 80%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

footer {
  font-size: 18px;
}
footer,
footer h1,
footer h2,
footer h3,
footer h4,
footer p,
footer a {
  color: var(--color-white);
}
footer p + p {
  margin-top: 24px;
}
footer a {
  font-weight: 400;
}
footer a:hover {
  color: var(--color-blue-light);
}
footer p strong {
  font-weight: 600;
}

#react-cookie-banner {
  font-size: 1.1em;
  font-weight: 400;
  color: var(--color-white);
}
#react-cookie-banner a {
  color: var(--color-white);
  text-decoration: underline;
}
#react-cookie-banner a:hover {
  color: var(--color-black-20);
}
#react-cookie-banner .button {
  float: right;
  margin: 0;
  margin-top: -20px;
}
#react-cookie-banner .button a {
  text-decoration: none;
}

/**
 * ANCHOR Navigation Desktop
 *
 */
.navTop ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 33px;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  z-index: 1000;
}
.navTop ul li {
  position: relative;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.navTop ul li::before {
  content: none;
}
.navTop ul li a {
  display: flex;
  align-items: center;
  height: 40px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--color-black-80);
}
.navTop ul li:hover a,
.navTop ul li.active a {
  color: var(--color-blue-dark);
}

/* Level 2 */
.navTop ul li ul {
  position: absolute;
  padding: 0 0 10px 0;
  left: -20px;
  top: 40px;
  min-width: 160px;
  width: auto;
  height: auto;
  display: none;
  background-color: var(--color-white);
  transition: background-color 0.3s ease-in-out;
}
.navTop ul li ul li {
  float: left;
  margin: 0;
  padding: 0;
  left: 0;
  height: auto;
  width: 100%;
}
.navTop ul li ul li a,
.navTop ul li:hover ul li a,
.navTop ul li.active ul li a {
  float: left;
  padding: 5px 20px;
  margin: 0;
  height: auto;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: var(--color-black-80);
}
.navTop ul li:hover ul li:hover a,
.navTop ul li:hover ul li.active a {
  color: var(--color-blue-dark);
}
.navTop ul li ul li a:before {
  content: "";
}

/**
 * ANCHOR Navigation Burger 
 *
 */
.navBurger {
  display: none;
  position: absolute;
  margin: 0;
  padding: 0 40px 0 0;
  top: 35px;
  right: 0;
  width: auto;
  height: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  outline: 0;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: transparent;

  font-family: var(--font-main);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-blue-dark);
}
.navBurger:hover,
.navBurger:focus {
  background-color: transparent;
  outline: none;
}
.navBurger span {
  display: block;
  position: absolute;
  top: 14px;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--color-blue-dark);
  transition-duration: 0.3s;
}
.navBurger span:before,
.navBurger span:after {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-blue-dark);
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
  transition-property: top, transform;
}
.navBurger span:after {
  top: 8px;
  width: 22px;
}
.navBurger.is-active span {
  background: none;
}
.navBurger.is-active span:before {
  top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.3s;
}
.navBurger.is-active span:after {
  top: 0;
  width: 30px;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.3s;
}

/**
 * ANCHOR Navigation Mobile
 *
 */
#navMobile {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 90px;
  width: 0;
  height: calc(100% - 90px);
  background: var(--color-blue-dark);
  z-index: 90;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}
#navMobile.open {
  width: 100%;
}
#navMobile .navMobileWrapper {
  float: left;
  width: auto;
}
#navMobile .navContact {
  float: left;
  margin: 8vh 0;
  padding: 0;
  width: auto;
}

#navMobile ul {
  float: unset;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 0;
  padding: 0;
}
#navMobile ul li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  background-image: none;
}
#navMobile ul li::before {
  content: none;
}
#navMobile ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 12px 0;
  display: block;
  font-size: 30px;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 400;
}
#navMobile ul li a:hover,
#navMobile ul li a.starter_active {
  color: var(--color-blue-light);
}

#navMobile ul.socialmedia {
  float: unset;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 22px;
  margin: 0;
  padding: 0;
  width: auto;
  list-style: none;
}
#navMobile ul.socialmedia li {
  float: left;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: none;
}
#navMobile ul.socialmedia li:hover {
}
#navMobile ul.socialmedia li a {
  display: inline-block;
  padding-left: 50px;
  width: 50px;
  height: 50px;
  background-size: 40px auto;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

/**
 * ANCHOR Socialmedia
 *
 */
#navMobile ul.socialmedia,
ul.socialmedia {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: left;
  margin: 22px 0;
  padding: 0;
  width: auto;
  list-style: none;
}
#navMobile ul.socialmedia {
  justify-content: left;
  gap: 22px;
  margin: 0;
}
#navMobile ul.socialmedia li,
ul.socialmedia li {
  display: inline;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-white);
}
#navMobile ul.socialmedia li {
  width: 50px;
  height: 50px;
  background-color: var(--color-blue-dark);
}
ul.socialmedia li:hover,
ul.socialmedia li:active {
  background-color: var(--color-blue-light);
}
#navMobile ul.socialmedia li:hover {
  background-color: var(--color-blue-dark);
}
ul.socialmedia li::before {
  content: none;
}
#navMobile ul.socialmedia li a,
ul.socialmedia li a {
  display: inline-block;
  padding-left: 40px;
  width: 40px;
  height: 40px;
  background-size: 40px auto;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#navMobile ul.socialmedia li a {
  padding-left: 50px;
  width: 50px;
  height: 50px;
}

li.youtube a {
  background-image: url(../images/icon_socialmedia_youtube_dark.svg);
}
li.linkedin a {
  background-image: url(../images/icon_socialmedia_linkedin_dark.svg);
}
li.xing a {
  background-image: url(../images/icon_socialmedia_xing_dark.svg);
}
li.facebook a {
  background-image: url(../images/icon_socialmedia_facebook_dark.svg);
}
li.twitter a {
  background-image: url(../images/icon_socialmedia_twitter_dark.svg);
}
li.whatsapp a {
  background-image: url(../images/icon_socialmedia_whatsapp_dark.svg);
}
li.instagram a {
  background-image: url(../images/icon_socialmedia_instagram_dark.svg);
}
li.pinterest a {
  background-image: url(../images/icon_socialmedia_pinterest_dark.svg);
}
li.mail a {
  background-image: url(../images/icon_socialmedia_mail_dark.svg);
}
li.phone a {
  background-image: url(../images/icon_socialmedia_phone_dark.svg);
}
#navMobile li.mail a {
  background-image: url(../images/icon_socialmedia_mail_light.svg);
}
#navMobile li.phone a {
  background-image: url(../images/icon_socialmedia_phone_light.svg);
}

/**
 * ANCHOR Formular
 *
 */
form,
fieldset {
  float: left;
  margin: 0 -11px;
  padding: 0;
  width: calc(100% + 22px);
}
fieldset {
  margin: 0 0 10px 0;
  width: 100%;
}
label,
legend {
  float: left;
  margin: 0 11px;
  padding-top: 13px;
  width: calc(30% - 22px);
}
.group {
  float: left;
  margin: 0;
  padding: 6px 0;
  width: 70%;
}

.required {
  color: var(--color-red);
}
select,
input,
textarea {
  float: left;
  margin: 0 11px 5px 11px;
  padding: 10px 11px;
  width: calc(70% - 22px);
  border-radius: 3px;
  border: 1px solid var(--color-black-05);
  background-color: var(--color-black-05);
  outline: none;

  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1em;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input.plz {
  margin-right: 5px;
  width: 100px;
}
input.ort {
  margin-left: 0;
  width: calc(70% - 127px);
}
select {
  padding: 10px 50px 10px 7px;
  background-image: url("../images/icon_down.svg");
  background-position: calc(100% - 11px) center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  cursor: pointer;
}
select:required:invalid {
  color: var(--color-black-30);
}
select option[value=""][disabled] {
  display: none;
}
select option,
select:required:invalid option {
  color: var(--color-black-80);
}
textarea {
  height: 124px;
}

::-webkit-input-placeholder {
  color: var(--color-black-30);
}
:-moz-placeholder {
  color: var(--color-black-30);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--color-black-30);
  opacity: 1;
}
::placeholder {
  color: var(--color-black-30);
}
select.placeholder {
  color: var(--color-black-30);
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  float: left;
  margin-top: 10px;
  cursor: pointer;
  color: var(--color-white);
  width: calc(35% - 22px);

  border: none;
  border-radius: 3px;
  background-color: var(--color-blue-dark);
  transition: all 0.2s ease;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  background-color: var(--color-black);
}

.container {
  display: block;
  position: relative;
  margin: 4px 11px 4px 11px;
  padding: 0 0 0 35px;
  width: calc(100% - 22px);
  min-height: 24px;
  line-height: 1.3;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.group.rail .container {
  width: auto;
  margin-right: 33px;
}
.group.rail .container:last-child {
  margin-right: 0;
}
.container input {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  width: 0;
  height: 0;
}
.checkmark,
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 2px solid var(--color-black-05);
  background-color: var(--color-black-05);
  border-radius: 3px;
}
.radiomark {
  border-radius: 50%;
}
.error .checkmark,
.error .radiomark {
  outline: 2px solid var(--color-red);
}

.checkmark:after,
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}
.container:hover input ~ .checkmark:after,
.container input:checked ~ .checkmark:after,
.container:hover input ~ .radiomark:after,
.container input:checked ~ .radiomark:after {
  display: block;
}
.container:hover .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-black-10);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container .checkmark:after,
.container:hover input:checked ~ .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-black);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container:hover .radiomark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black-10);
}
.container .radiomark:after,
.container:hover input:checked ~ .radiomark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black);
}

.switch {
  position: relative;
  display: inline-block;
  margin: 7px 11px;
  padding: 0;
  width: 56px;
  height: 30px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--color-green);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 15px;
}

.slider.round:before {
  border-radius: 50%;
}

form p {
  /* Pflichtfeld */
  float: left;
  margin-right: 11px;
  margin-left: calc(30% + 11px);
  width: calc(70% - 22px);
}
div.error {
  display: none;
  float: left;
  margin: 0;
  width: 100%;
  color: var(--color-red);
}

/* Form stretched */
form.stretched label {
  display: none;
}
form.stretched label.container {
  display: block;
}
form.stretched legend {
  margin-bottom: 5px;
  width: calc(100% - 30px);
}
form.stretched fieldset .group {
  width: calc(100% - 30px);
}
form.stretched fieldset .group label {
  display: block;
}
form.stretched input[type="text"],
form.stretched input[type="number"],
form.stretched input[type="url"],
form.stretched input[type="tel"],
form.stretched input[type="email"],
form.stretched input[type="password"],
form.stretched select,
form.stretched textarea {
  width: calc(100% - 30px);
}
form.stretched input[type="submit"],
form.stretched input[type="button"],
form.stretched input[type="reset"] {
  width: calc(50% - 30px);
}
form.stretched p {
  float: left;
  margin: 11px;
  width: calc(100% - 22px);
}

.block.addition {
  margin-top: -10px;
  height: 0;
  overflow: hidden;
}

/**
 * ANCHOR Search
 *
 */
.search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 33px;
}
.search form {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 584px;
  background: var(--color-black-05);
  border-radius: 6px;
}
.search input {
  float: left;
  border: none;
  margin: 0;
  padding: 10px 20px;
  height: 60px;
  width: calc(100% - 60px);
  color: var(--color-black-80);
  border: none;
  background: transparent;
}
.search input:focus {
  color: var(--color-black-80);
}
.search input[type="submit"] {
  float: left;
  margin: 0;
  padding: 0;
  height: 60px;
  width: 60px;
  background: transparent url("../images/icon_search_dark.svg") center no-repeat;
  background-size: 25px auto;
  box-shadow: none;
}
.search input[type="submit"]:hover {
  border: none;
}
#navMobile .search form {
  border-bottom: solid 1px var(--color-black-80);
  border-radius: 0;
  background-color: var(--color-white);
}
#navMobile .search input {
  height: 50px;
  padding-left: 0;
}
#navMobile .search input[type="submit"] {
  opacity: 0.5;
  background-position: right 5px center;
}

.searchForm {
  float: left;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
}
.searchForm input {
  float: left;
  margin: 0;
  height: 60px;
  width: 70%;
  padding-left: 22px;
  border-radius: 6px 0 0 6px;
}
.searchForm input[type="submit"] {
  float: left;
  margin: 0;
  height: 60px;
  width: 30%;
  border-radius: 0 6px 6px 0;
}
.searchResult {
  float: left;
  margin-top: 20px;
  margin-bottom: 5px;
  width: 100%;
  cursor: pointer;
}
.searchResult h3,
.searchResult p {
  margin: 0 0 4px 0;
}
.searchResult p .resultPath {
  color: rgb(150, 150, 150);
}

/**
 * ANCHOR Loader
 *
 */
.loader {
  position: relative;
  margin: 0 auto;
  top: 35%;
  width: 60px;
  height: 70px;
  text-align: center;
}
.loader > div {
  background-color: var(--color-red);
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: loader 1.2s infinite ease-in-out;
  animation: loader 1.2s infinite ease-in-out;
}
.loader .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.loader .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.loader .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.loader .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes loader {
  0%,
  60%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  30% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes loader {
  0%,
  60%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  30% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/**
 * ANCHOR Module
 *
 */

/*  Touren und Kurse  */
.proposal {
  display: flex;
  flex-wrap: wrap;
  padding-top: 11px;
  margin: 0 -11px;
  width: calc(100% + 22px);
}
.proposal article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 11px 11px 44px 11px;
  width: calc(25% - 22px);
  cursor: pointer;
}
.home .proposal article {
  margin: 11px;
}
.proposal article .imgFrame {
  margin-bottom: 20px;
}
.proposal article .imgFrame::before {
  padding-top: 100%;
}
.proposal article .txtFrame {
  display: flex;
  flex-direction: column;
  align-content: space-between;
}
.proposal article h2,
.proposal article h3 {
  margin: 6px 0;
  margin: 0;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.proposal article p {
  margin: 6px 0;
  font-size: 17px;
}
.proposal article div + div p {
  margin-bottom: 12px;
}

.course {
  float: left;
  margin: 0 -11px 44px -11px;
  width: calc(100% + 22px);
}
.course .left {
  float: left;
  margin: 0 11px;
  width: calc(66.6666% - 22px);
}
.course .right {
  float: right;
  margin: 0 11px;
  width: calc(33.3333% - 22px);
  text-align: left;
}
.course .right .impressionen {
  float: left;
  margin: 0 -3px;
  width: calc(100% + 6px);
}
.course .right .impressionen img {
  float: left;
  margin: 3px;
  width: calc(50% - 6px);
  object-fit: cover;
  aspect-ratio: 1;
}
.course .right .partner {
  float: left;
  margin-top: 66px;
  width: 100%;
}

/*  gallery  */
.gallerys,
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 60px -11px;
  width: calc(100% + 22px);
}
.gallerys article,
.gallery a {
  float: left;
  margin: 11px;
  width: calc(25% - 22px);
  cursor: pointer;
}
.gallerys article {
  margin: 44px 11px;
}
.gallerys article img,
.gallery a img {
  float: left;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.gallerys article img {
  margin-bottom: 20px;
}
.gallerys article h2,
.gallerys article h3 {
  margin: 6px 0 12px 0;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/**
 * ANCHOR FancyBox
 *
 */
.fancybox-enabled {
  overflow: hidden;
}

.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  transition: opacity 0.2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  direction: ltr;
}

.fancybox-show-controls .fancybox-controls {
  opacity: 1;
}

.fancybox-infobar {
  display: none;
}

.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: var(--font-main);
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all;
}

.fancybox-show-buttons .fancybox-buttons {
  display: block;
}
.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr;
}
.fancybox-slider-wrap,
.fancybox-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
}
.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}
.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}
.fancybox-slide--image {
  overflow: hidden;
}
.fancybox-slide--image::before {
  display: none;
}
.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: var(--font-main);
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}
.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.fancybox-slide--video .fancybox-content,
.fancybox-slide--video .fancybox-iframe {
  background: transparent;
}
.fancybox-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%;
}
.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}
.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  cursor: default;
}
.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}
.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background 0.2s;
  box-sizing: border-box;
  z-index: 2;
}
.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}
.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent;
}
.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}
/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
}
.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: var(--font-main);
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}
.fancybox-caption a,
.fancybox-caption button {
  pointer-events: all;
}
.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}
/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  outline: none;
}
.fancybox-button--disabled {
  cursor: default;
  pointer-events: none;
}
.fancybox-infobar__body,
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}
.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.fancybox-button::before,
.fancybox-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}
.fancybox-button--disabled::before,
.fancybox-button--disabled::after {
  opacity: 0.5;
}
.fancybox-button--left::after {
  left: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.fancybox-button--right::after {
  right: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.fancybox-button--left {
  border-bottom-left-radius: 5px;
}
.fancybox-button--right {
  border-bottom-right-radius: 5px;
}
.fancybox-button--close {
  float: right;
}
.fancybox-button--close::before,
.fancybox-button--close::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}
.fancybox-button--close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.fancybox-button--close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Loading spinner */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}
@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-controls {
    text-align: left;
  }
  .fancybox-button--left,
  .fancybox-button--right,
  .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important;
  }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}
/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none;
}
/* Slideshow button */
.fancybox-button--play::before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent;
}
.fancybox-button--pause::before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  background: transparent;
}
/* Thumbs */
.fancybox-button--thumbs span {
  font-size: 23px;
}
.fancybox-button--thumbs::before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
}
.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap,
.fancybox-container--thumbs .fancybox-caption-wrap {
  right: 220px;
}
.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #fff;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
}
.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #fff;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}
li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}
.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-thumbs > ul > li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1;
}
/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important;
  }
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0;
  }
}

/**
 * ANCHOR Responsive
 *
 */
@media only screen and (max-width: 1280px) {
  .teaser {
    right: none;
    left: 40px;
    width: calc(50% - 80px);
  }

  .proposal article {
    width: calc(33.3333% - 22px);
  }
  .home .proposal article:last-child {
    display: none;
  }
  .proposal article p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1080px) {
  .navTop ul {
    gap: 22px;
  }
}

@media only screen and (max-width: 980px) {
  .navTop {
    display: none;
  }
  .navBurger {
    display: block;
  }

  section {
    padding: 66px 0;
  }
  main {
    padding: 22px 0;
    min-height: unset;
  }

  .proposal {
    margin: 22px -11px 0 -11px;
  }
  .home .proposal {
    margin: 0 -11px;
  }
  .proposal article {
    width: calc(50% - 22px);
  }
  .home .proposal article:last-child {
    display: flex;
  }

  .gallerys,
  .gallery {
    margin: 0 -11px;
  }
  .gallerys article,
  .gallery a {
    width: calc(33.3333% - 22px);
  }
}

@media only screen and (max-width: 880px) {
  .teaser {
    bottom: 70px;
    left: 20px;
    width: calc(100% - 40px);
  }
  .mouse {
    bottom: 22px;
  }
  .mouse::after {
    display: none;
  }
  .course .left,
  .course .right {
    float: left;
    width: calc(100% - 22px);
  }
  .course .right .impressionen {
    margin-top: 33px;
  }

  .gallerys article,
  .gallery a {
    width: calc(50% - 22px);
  }

  h1,
  .h1 {
    font-size: 34px;
  }
  h2,
  .h2 {
    font-size: 24px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 680px) {
  .desktop,
  header .background,
  header .gradient {
    display: none;
  }

  .inner {
    width: calc(100% - 40px);
  }

  header {
    height: 100px;
    background-color: rgb(255, 255, 255);
  }
  .logo {
    margin-top: 12px;
    max-width: 180px;
  }

  .headerImg {
    height: 60%;
    background-position-x: right;
  }
  .home .headerImg {
    height: 100%;
    background-position-x: center;
  }

  .proposal article,
  .gallerys article,
  .gallery a {
    width: calc(100% - 22px);
  }

  .footer img {
    width: 60%;
  }
  footer {
    padding: 22px 0;
  }

  /* Formulare */
  label,
  legend {
    margin: 5px 0 0 0;
    width: 100%;
  }
  label {
    margin-bottom: 8px;
  }
  label.noCaption {
    width: calc(100% - 25px);
  }
  input,
  textarea,
  select,
  input.plz,
  input.ort {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    width: 100%;
    height: inherit;
    padding: 10px 3%;
  }
  input[type="submit"],
  input[type="button"],
  input[type="resete"] {
    padding: 15px 0;
    height: auto;
    width: 100%;
  }
  .container,
  .group {
    margin: 0 0 5px 0;
    width: 100%;
  }
  form p {
    margin: 0 0 5px 0;
    width: 100%;
  }

  /* Texte */
  blockquote {
    margin: 11px 0;
    padding: 25px;
    max-width: calc(100% - 50px);
  }
  blockquote::before,
  blockquote::after {
    font-size: 60px;
  }
  blockquote::before {
    left: -10px;
  }
  blockquote::after {
    right: -20px;
  }

  .column {
    column-count: 1;
    column-gap: 0;
  }
}

/**
 * ANCHOR Print
 *
 */
@media print {
  .inner {
    width: 100%;
    max-width: unset;
  }
}
