:root {
  /*Colors*/
  --colorHell: #f0f0f0;
  --color-grauMittel: #dddddd;
  --color-grauDunkel: #B2B1B9;
  --color-gruen:#24ff86;
  --color-weiss: #ffffff;
  --color-error: #e91e63;
  --color-blauDunkel: #383e66;
  --color-blauHell: #b4c9de;
  --color-blau: #000cf0;
  --color-orange: #ffa500;
  --color-schwarz: #393939;
  --color-lila: #301256;
  /*HEX-Colors*/
  --colorHEX-grau: rgba(178, 177, 185, 1);
  --colorHEX-schwarzDunkel: rgba(0, 0, 0, 0.60);
  --colorHEX-schwarzHell: rgba(0, 0, 0, 0.45);
  --colorHEX-weissHell: rgba(255, 255, 255, 0.4);
  --colorHEX-weiss: rgba(255, 255, 255, 1);
  /*Schatten*/
  --schatten-main: 0 2px 4px rgba(36, 36, 36, 0.04),
                   0 4px 8px rgba(36, 36, 36, 0.04),
                   0 4px 12px rgba(36, 36, 36, 0.02);
  --schatten-btn: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  --schatten-btnDunkel: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
  --schatten-blau:rgb(38, 57, 77) 0px 20px 30px -10px;
  --radius-main: 2em;
  --header-height: 3rem;
  /*========== Colors ==========*/
  --first-color: #ffa500;
  --first-color-alt: #048654;
  --first-color-neu: #ffa500;
  --title-color: #393939;
  --text-color: #707070;
  --text-color-light: #A6A6A6;
  --body-color: #FBFEFD;
  --container-color: #FFFFFF;
  --buttonColor: #393939;
  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size:3rem;
  --foreverBig-font-size:2.3rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== Margenes ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 768px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url(../fonts/Poppins-Bold.ttf);
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Poppins", sans-serif;
  src: url(../fonts/Poppins-SemiBold.ttf);
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Poppins", sans-serif;
  src: url(../fonts/Poppins-Medium.ttf);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins", sans-serif;
  src: url(../fonts/Poppins-Light.ttf);
  font-weight: 300;
  font-display: swap;
}
.la-ball-square-clockwise-spin,
.la-ball-square-clockwise-spin > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.la-ball-square-clockwise-spin {
  display: block;
  font-size: 0;
  color: var(--title-color);
}

.la-ball-square-clockwise-spin > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-square-clockwise-spin {
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 25vh;
  transform: translate(-50%, 0);
}

.la-ball-square-clockwise-spin > div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  border-radius: 100%;
  animation: ball-square-clockwise-spin 1s infinite ease-in-out;
}

.la-ball-square-clockwise-spin > div:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: -0.875s;
  color: var(--first-color);
}

.la-ball-square-clockwise-spin > div:nth-child(2) {
  top: 0;
  left: 50%;
  animation-delay: -0.75s;
}

.la-ball-square-clockwise-spin > div:nth-child(3) {
  top: 0;
  left: 100%;
  animation-delay: -0.625s;
  color: var(--first-color);
}

.la-ball-square-clockwise-spin > div:nth-child(4) {
  top: 50%;
  left: 100%;
  animation-delay: -0.5s;
}

.la-ball-square-clockwise-spin > div:nth-child(5) {
  top: 100%;
  left: 100%;
  animation-delay: -0.375s;
  color: var(--first-color);
}

.la-ball-square-clockwise-spin > div:nth-child(6) {
  top: 100%;
  left: 50%;
  animation-delay: -0.25s;
}

.la-ball-square-clockwise-spin > div:nth-child(7) {
  top: 100%;
  left: 0;
  animation-delay: -0.125s;
  color: var(--first-color);
}

.la-ball-square-clockwise-spin > div:nth-child(8) {
  top: 50%;
  left: 0;
  animation-delay: 0s;
}

.la-ball-square-clockwise-spin.la-sm {
  width: 12px;
  height: 12px;
}

.la-ball-square-clockwise-spin.la-sm > div {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
}

.la-ball-square-clockwise-spin.la-2x {
  width: 52px;
  height: 52px;
}

.la-ball-square-clockwise-spin.la-2x > div {
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
}

.la-ball-square-clockwise-spin.la-3x {
  width: 78px;
  height: 78px;
}

.la-ball-square-clockwise-spin.la-3x > div {
  width: 36px;
  height: 36px;
  margin-top: -18px;
  margin-left: -18px;
}

/*
 * Animation
 */
@keyframes ball-square-clockwise-spin {
  0%, 40%, 100% {
    transform: scale(0.4);
  }
  70% {
    transform: scale(1);
  }
}
.btn-Primary {
  padding: 1.25em 2.5em;
  background: var(--body-color);
  border-radius: 1em;
  display: flex;
  align-self: baseline;
  width: fit-content;
  color: var(--color-blauDunkel);
  transition: all 300ms ease-in-out;
  box-shadow: var(--schatten-btn);
  position: relative;
  z-index: 2;
}
.btn-Primary.disabled {
  background: var(--colorHell);
  color: var(--color-grauMittel);
  box-shadow: none;
  border: 1px solid;
}
.btn-Primary.disabled:hover {
  color: var(--colorHell-dark);
  background: var(--colorHell);
  transform: translate(0rem, -0.5rem);
  cursor: no-drop;
  border: 1px solid var(--colorHell-dark);
}
.btn-Primary.btn-mini {
  padding: 0.5em 1em;
  border-radius: 0.5em;
}
.btn-Primary.red {
  background: var(--color-error);
  color: var(--color-weiss);
  align-items: center;
}
.btn-Primary.orange {
  background: var(--color-orange);
  color: var(--color-weiss);
}
.btn-Primary:hover {
  color: var(--color-blau);
  background: var(--color-gruen);
  transform: translate(0rem, -0.5rem);
  box-shadow: var(--schatten-btnDunkel);
}
@media screen and (max-width: 500px) {
  .btn-Primary {
    padding: 0.75em 0.75em;
    text-align: center;
  }
}

.btn-Weiter {
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0;
  padding: 1.25em 2.5em;
  background: var(--color-gruen);
  color: var(--color-schwarz);
  display: flex;
  align-self: center;
  transition: all 300ms ease-in-out;
  font-weight: 900;
  box-shadow: var(--schatten-btn);
}
.btn-Weiter:hover {
  background: var(--color-gruen);
  color: var(--color-blau);
  transform: translate(0rem, -0.5rem);
  box-shadow: var(--schatten-btnDunkel);
}
@media screen and (max-width: 500px) {
  .btn-Weiter {
    padding: 0.75em 0.75em;
    text-align: center;
  }
}

.link-blue {
  color: var(--color-blau);
  text-decoration: underline;
  margin: 0 5px;
}

a.back_btn {
  font-size: 5.5vw;
  margin-bottom: 4vh;
  display: block;
  position: relative;
}
@media (max-width: 363.6363636364px) {
  a.back_btn {
    font-size: 20px;
  }
}
@media (min-width: 727.2727272727px) {
  a.back_btn {
    font-size: 40px;
  }
}
a.back_btn:hover {
  cursor: pointer;
}
@media (max-width: 600px) {
  a.back_btn {
    margin-bottom: 5vh;
  }
}

.btn-blue {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-blau);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btn-blue i {
  font-size: 20px;
}

.btn-abbrechen {
  position: fixed;
  top: 15px;
  right: 15px;
  font-size: 14px;
  color: var(--color-blau);
}

.layer-cookie {
  display: none;
  transition: all 0.6s ease-in-out;
}
.layer-cookie.aktiviert {
  position: fixed;
  z-index: 1003;
  background: var(--colorHEX-schwarzHell);
  opacity: 0.5;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.cookieContent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1004;
  width: 95%;
  max-width: 800px;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  padding: 18px;
  background: var(--body-color);
}
.cookieContent.aktiviert {
  right: 0%;
  -webkit-animation: fadeInRight 0.2s 1;
  animation: fadeInRight 0.2s 1;
}

#closeXcookie {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--body-color);
  color: var(--title-color);
}

#closeXcookie a {
  display: inline-block;
  font-size: 35px;
  text-decoration: none;
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}

#closeXcookie i {
  display: inline-block;
  color: var(--title-color);
}

#closeXcookie h2 {
  margin: 0;
  color: var(--title-color);
}

.cookieToggle-outer {
  position: relative;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1300px;
  background: var(--bg-sub);
  padding: 5% 10%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
}

.line {
  width: 50px;
  height: 3px;
  background: var(--color-schwarz);
  margin-bottom: 5px;
}

.linkBox {
  width: 80%;
  margin-top: 50px;
  margin-left: 10%;
  text-align: center;
  font-weight: 500;
}

.linkBox p a {
  color: var(--color-schwarz);
  text-decoration: underline;
}

p#eiwilligen-btnDirekt {
  margin-top: 25px;
  background: var(--color-orange);
  color: var(--color-schwarz);
  padding: 15px 25px;
  font-size: 18px;
}

p#eiwilligen-btnEinstellungen {
  margin-top: 25px;
  background: var(--color-schwarz);
  color: var(--color-grauMittel);
  padding: 10px 20px;
  font-size: 16px;
}

.btn-style {
  width: 100%;
  max-width: 250px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.cookieToggle {
  display: flex;
  position: fixed;
  width: 40px;
  height: auto;
  transition: all 0.4s ease-in-out;
  left: 50px;
  bottom: 50px;
  z-index: 99;
}

.cookieToggle img {
  width: 100%;
  height: auto;
}

.cookieToggle:hover,
#closeXcookie a:hover {
  cursor: pointer;
  transform: rotate(90deg);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: var(--title-color);
}

/** =======================
 * Contenedor Principal
 ===========================*/
.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: var(--mb-3) auto;
}

.accordion .link {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  color: var(--title-color);
  background: var(--text-color-Hex);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.accordion li i {
  font-size: 25px;
  color: var(--title-color);
  display: none;
}

.accordion li {
  position: relative;
}

@media (max-width: 600px) {
  .accordion li h3 {
    padding: 0;
    margin-top: var(--mb-2);
  }
}

.accordion li h3 span {
  display: block;
  font-size: var(--small-font-size);
}

.tLeft p {
  font-weight: bold;
}

.accordion li ul li {
  display: flex;
  flex-direction: row;
}

.accordion li ul li p:first-child {
  font-size: var(--smaller-font-size);
  padding-top: var(--mb-2);
}

.tLeft p,
.tRight p {
  font-size: var(--smaller-font-size) !important;
  padding: 2.5px 3px;
}

.tRight p {
  padding: 2.5px 3px 2.5px 15px;
}

/**
 * Submenu
 -----------------------------*/
.submenu {
  display: none;
  font-size: var(--smaller-font-size);
}

.submenu li {
  padding: var(--mb-1);
  display: flex;
  flex-direction: column !important;
}
.submenu li .inBox {
  flex-direction: row;
  display: flex;
  margin: var(--mb-1) 0;
  background: var(--body-color);
}

/*===end .accordion===========================================================*/
/*checkbox*/
form#formGo {
  overflow-y: auto;
}

.btn-cookie-speichern:hover {
  cursor: pointer;
}

.navCookie {
  box-sizing: border-box;
  overflow-y: scroll;
}

/* Checkmark style starts */
@-moz-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 12.5px;
  }
}
@-webkit-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 12.5px;
  }
}
@keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 12.5px;
  }
}
@keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}
@-webkit-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}
@-moz-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}
.block {
  display: flex;
  align-items: center;
  background: var(--container-color);
}
.block p {
  margin-bottom: 0 !important;
  width: 100%;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  animation: none !important;
}
.block h3 {
  margin-left: 25px;
}
@media (max-width: 400px) {
  .block h3 {
    margin-left: 15px;
    font-size: 16px;
  }
}

.navCookie input[type=checkbox] {
  display: none;
}

.navCookie .check-box {
  height: 25px;
  width: 25px;
  border: 2px solid var(--text-color);
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
  z-index: 999;
}

.navCookie .check-box::before,
.navCookie .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 3px;
  background-color: var(--title-color);
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  -webkit-transition: opacity ease 0.5;
  -moz-transition: opacity ease 0.5;
  transition: opacity ease 0.5;
}

.navCookie .check-box::before {
  top: 16px;
  left: 13.5px;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.navCookie .check-box::after {
  top: 7px;
  left: 4px;
  width: 3px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navCookie input[type=checkbox]:checked + .check-box,
.navCookie .check-box.checked {
  /*  border-color: var(--title-color);*/
}

.navCookie input[type=checkbox]:checked + .check-box::after,
.navCookie .check-box.checked::after {
  height: 12.6px;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}

.navCookie input[type=checkbox]:checked + .check-box::before,
.navCookie .check-box.checked::before {
  height: 30px;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}

/*===end Checkox================================================================*/
@media screen and (max-width: 800px) {
  .linkBox {
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  p#eiwilligen-btnDirekt {
    padding: 10px 25px;
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  .linkBox {
    width: 90%;
  }
  .line .linkBox {
    margin-left: 5%;
  }
}
.cookieBanner {
  width: 95vw;
  position: fixed;
  z-index: var(--z-fixed);
  left: 50%;
  bottom: 15px;
  display: flex;
  padding: var(--mb-2);
  transform: translate(-50%, 0);
  background: var(--body-color);
  border: 1px solid var(--color-orange);
  box-shadow: var(--schatten-main);
  border-radius: 1em;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  -ms-border-radius: 1em;
  -o-border-radius: 1em;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}
@media screen and (max-width: 500px) {
  .cookieBanner {
    flex-direction: column;
  }
}
.cookieBanner .bannerInner h3 {
  font-size: var(--normal-font-size);
  margin: 0 0 var(--mb-1) 0;
}
.cookieBanner .bannerInner p {
  font-size: var(--small-font-size);
  margin: 0 0 var(--mb-1) 0;
}
.cookieBanner .buttonBox {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  padding-right: 25px;
  display: grid;
  gap: var(--mb-3);
  margin-left: var(--mb-5);
}
@media screen and (max-width: 500px) {
  .cookieBanner .buttonBox {
    margin-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
  }
}
.cookieBanner .buttonBox a {
  color: var(--color-weiss);
  display: flex;
  align-items: center;
  padding: var(--mb-1) var(--mb-3);
  font-size: var(--small-font-size);
}
@media screen and (max-width: 500px) {
  .cookieBanner .buttonBox a {
    width: 100%;
  }
}
.cookieBanner .buttonBox a:first-child {
  font-size: var(--h2-font-size);
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .cookieBanner .buttonBox a:first-child {
    justify-content: left;
    padding: 0;
  }
  .cookieBanner .buttonBox a:first-child i {
    margin-left: 0;
    color: var(--title-color);
  }
}
.cookieBanner .buttonBox a i {
  color: var(--title-color);
  margin-left: var(--mb-3);
}

@media screen and (max-width: 400px) {
  .cookieBanner .buttonBox {
    flex-direction: column;
    justify-content: center;
  }
  .cookieBanner .buttonBox a {
    margin: 10px 0;
    align-self: center;
  }
}
.cookieBtn {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 80px;
  left: 15px;
  border-radius: 50%;
  background: var(--title-color);
  cursor: pointer;
  box-shadow: 0 0 0 2px var(--schatten-main);
  z-index: 1005;
  padding: 5px;
}
.cookieBtn:hover {
  animation: none;
}
.cookieBtn:hover svg path,
.cookieBtn:hover img path {
  fill: var(--first-color-neu);
}
.cookieBtn svg,
.cookieBtn img {
  width: 100%;
  max-width: 30px;
  height: auto;
  object-fit: cover;
}
.cookieBtn svg path,
.cookieBtn img path {
  fill: var(--container-color);
}

@media screen and (max-width: 700px) {
  .cookieBtn {
    width: 32px;
    height: 32px;
    right: 10px;
    bottom: 35px;
  }
  .cookieBtn svg,
.cookieBtn img {
    max-width: 18px;
  }
  .helpNav {
    right: 10px;
    bottom: 70px;
    width: 25px;
    height: 25px;
  }
  .helpNav a svg,
.helpNav a img {
    max-width: 8px;
  }
}
.error404 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.error404 a {
  align-self: center;
  margin-top: 15px;
}

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/*========== BASE ==========*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Arial";
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: #f1f3f2;
  --text-color: #c7d1cc;
  --body-color: #1f1f1f;
  --container-color: #292a2d;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 15px;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 0em;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: var(--first-color-neu);
}

html::-webkit-scrollbar-track {
  background-color: var(--buttonColor);
}

html::-webkit-scrollbar-track:hover {
  background-color: var(--buttonColor);
}

select::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

select::-webkit-scrollbar-thumb {
  background-color: var(--buttonColor);
  border-radius: 0em;
}

select::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-gruen);
}

select::-webkit-scrollbar-track {
  background-color: var(--buttonColor);
}

select::-webkit-scrollbar-track:hover {
  background-color: var(--buttonColor);
}

::selection {
  background-color: var(--color-orange);
  color: #fff;
}

h1 {
  font-size: 5.5vw;
}
@media (max-width: 454.5454545455px) {
  h1 {
    font-size: 25px;
  }
}
@media (min-width: 1181.8181818182px) {
  h1 {
    font-size: 65px;
  }
}

h2 {
  font-size: 5.5vw;
}
@media (max-width: 363.6363636364px) {
  h2 {
    font-size: 20px;
  }
}
@media (min-width: 727.2727272727px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 4vw;
}
@media (max-width: 500px) {
  h3 {
    font-size: 20px;
  }
}
@media (min-width: 750px) {
  h3 {
    font-size: 30px;
  }
}

p {
  font-size: 3vw;
}
@media (max-width: 533.3333333333px) {
  p {
    font-size: 16px;
  }
}
@media (min-width: 600px) {
  p {
    font-size: 18px;
  }
}

a {
  font-size: 3vw;
}
@media (max-width: 533.3333333333px) {
  a {
    font-size: 16px;
  }
}
@media (min-width: 600px) {
  a {
    font-size: 18px;
  }
}

/*========== Button Dark/Light ==========*/
.change-theme {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
ul,
p {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

/*========== CLASS CSS ==========*/
main.l-main {
  overflow: hidden;
}

picture {
  text-align: center;
}

img {
  width: 100%;
  height: auto;
}

.section {
  padding: 4rem 0 2rem;
}
.section-title, .section-subtitle {
  text-align: center;
}
.section-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}
.section-BigTitle {
  font-size: var(--foreverBig-font-size);
  color: var(--title-color);
}
.section-subtitle {
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

/*========== LAYOUT ==========*/
.bd-container {
  max-width: 960px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

/*========== NAV ==========*/
.nav {
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: var(--body-color);
    transition: 0.4s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 1rem 1rem;
    z-index: var(--z-fixed);
  }
}
.nav__item {
  margin-bottom: var(--mb-2);
}
.nav__link, .nav__logo, .nav__toggle {
  color: var(--text-color);
  font-weight: var(--font-medium);
}
.nav__logo {
  display: flex;
  align-items: center;
  height: inherit;
}
.nav__logo:hover {
  color: var(--first-color);
}
.nav__picture {
  display: flex;
  height: inherit;
  max-height: 80%;
}
.nav__picture .nav__img {
  width: 100%;
  height: auto;
}
.nav__picture .nav__img g#schriftzug path {
  fill: var(--title-color);
}
.nav__link {
  transition: 0.3s;
}
.nav__link:hover {
  color: var(--first-color);
}
.nav__toggle {
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: var(--header-height);
}

/* Active menu */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  background: var(--buttonColor);
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  visibility: hidden;
}
.scrolltop:hover {
  background-color: var(--color-orange);
}
.scrolltop__icon {
  font-size: 1.8rem;
  color: var(--body-color);
}

.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

.nav__img #schrift1 path,
.nav__img #schrift2 path {
  fill: var(--title-color) !important;
}

.facebook {
  margin-top: 5px;
  margin-left: 15px;
}
.facebook svg {
  width: 25px;
  height: 25px;
}
.facebook svg path {
  fill: var(--title-color);
}

/*========== GOOGLE Bewertungen ==========*/
.googleBewertung__title {
  font-weight: 900;
  color: var(--title-color);
}
.googleBewertung__numberRating {
  color: var(--title-color);
}
.googleBewertung__ratingTotal {
  color: var(--text-color);
  font-size: var(--smaller-font-size);
}
.googleBewertung__link {
  margin: var(--mb-3);
}
.googleBewertung__starsOuter {
  position: relative;
  display: inline-block;
}
.googleBewertung__starsOuter::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--text-color);
}
.googleBewertung__starsInner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}
.googleBewertung__starsInner::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--first-color-neu);
}

/*========== HOME ==========*/
.home {
  margin-top: var(--mb-2);
}
.home__container {
  height: calc(100vh - var(--header-height));
  align-content: center;
  display: flex;
  flex-direction: column-reverse;
}
.home__title {
  font-size: var(--biggest-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}
.home__subtitle {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-4);
}
.home__description {
  margin-bottom: var(--mb-1);
}
.home__description i {
  color: var(--color-orange);
}
.home__img {
  max-width: 500px;
  justify-self: center;
  border-radius: 2em;
}
@media screen and (max-width: 850px) {
  .home__img {
    max-width: 400px;
  }
}
@media screen and (max-width: 650px) {
  .home__img {
    max-width: 350px;
  }
}
.home__picture {
  display: flex;
  height: fit-content;
  max-width: auto;
}
.home__picture svg,
.home__picture img {
  width: 100%;
}
.home__picture svg path,
.home__picture img path {
  fill: var(--title-color);
}
@media screen and (max-width: 650px) {
  .home__picture {
    max-width: 70%;
  }
}

/*========== BUTTONS ==========*/
.button {
  display: inline-block;
  background-color: var(--buttonColor);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: 0.3s;
  border: none;
  outline: none;
}
.button:hover {
  background-color: var(--first-color);
}

/*========== ABOUT ==========*/
.about__data {
  text-align: center;
}
.about__description {
  margin-bottom: var(--mb-3);
}
.about__img {
  max-width: 280px;
  border-radius: 0.5rem;
  justify-self: center;
}

/*========== SERVICES ==========*/
.services__container {
  row-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.services__content {
  text-align: center;
}
.services__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--mb-2);
}
.services__img img,
.services__img svg {
  width: 100%;
  height: auto;
}
.services__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}
.services__description {
  padding: 0 1.5rem;
}

/*========== MENU ==========*/
.menu__container {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}
.menu__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(3, 74, 40, 0.15);
  padding: 0.75rem;
}
.menu__description {
  text-align: center;
}
.menu__telBox {
  width: 100%;
  max-width: 345px;
  padding: 10px;
  margin: var(--mb-3) auto 0 auto;
  background-color: var(--container-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(3, 74, 40, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu__telBox h2,
.menu__telBox p {
  text-align: end;
  margin: 0;
}
.menu__imgWhatsapp {
  max-width: 50px;
}
.menu__img {
  max-width: none;
  width: 140% !important;
  align-self: center;
  margin-bottom: var(--mb-2);
}
.menu__imgIcon {
  max-width: none;
  width: 140px;
  height: 140px;
  align-self: center;
  margin-bottom: var(--mb-2);
}
.menu__img2 {
  width: 80px;
  align-self: center;
  margin-bottom: var(--mb-2);
}
.menu__name, .menu__preci {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.menu__name {
  font-size: var(--normal-font-size);
}
.menu__detail, .menu__preci {
  font-size: var(--small-font-size);
}
.menu__price {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-top: var(--mb-1);
}
.menu__button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  font-size: 1.25rem;
  padding: 0.625rem 0.813rem;
  border-radius: 0.5rem 0 0.5rem 0;
}
.menu__descriptionCenter {
  text-align: center;
}

/*========== APP ==========*/
.app__data {
  text-align: center;
}
.app__description {
  margin-bottom: var(--mb-5);
}
.app__stores {
  margin-bottom: var(--mb-4);
}
.app__store {
  width: 120px;
  margin: 0 var(--mb-1);
}
.app__img {
  max-width: 230px;
  justify-self: center;
  border-radius: 1.2em;
}
.app__picture {
  display: flex;
  height: inherit;
  max-width: 200px;
}
.app__picture svg,
.app__picture img {
  width: 100%;
  height: auto;
}
.app__picture svg path,
.app__picture img path {
  fill: var(--first-color);
}
.app__link {
  color: var(--first-color);
  text-decoration: underline;
}
.app__maps {
  width: 100%;
  height: 70vh;
  border-radius: 2em;
}

/*========== maps ==========*/
.maps__map {
  width: 100%;
  height: 70vh;
  border-radius: 2em;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

/*========== Versicherung ==========*/
.versicherung {
  text-align: left;
}
.versicherung__lines {
  padding: var(--mb-1) var(--mb-2);
  border-bottom: 1px solid var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.versicherung__lines:first-child {
  border-top: 1px solid var(--text-color);
  margin-top: var(--mb-3);
}
.versicherung__lines:last-child {
  margin-bottom: var(--mb-5);
}
.versicherung__lines i {
  color: var(--color-orange);
}

/*========== zuhause ==========*/
.zuhause__data {
  text-align: center;
}
.zuhause__description {
  margin-bottom: var(--mb-5);
}
.zuhause__stores {
  margin-bottom: var(--mb-4);
}
.zuhause__store {
  width: 120px;
  margin: 0 var(--mb-1);
}
.zuhause__img {
  max-width: 230px;
  justify-self: center;
  border-radius: 1em;
}
.zuhause__picture {
  display: flex;
  height: inherit;
  max-width: 200px;
}
.zuhause__picture svg,
.zuhause__picture img {
  width: 100%;
  height: auto;
}
.zuhause__picture svg path,
.zuhause__picture img path {
  fill: var(--first-color);
}

/*========== CONTACT ==========*/
.contact__container {
  text-align: center;
}
.contact__description {
  margin-bottom: var(--mb-3);
}
.contact__description span {
  display: inline-block;
}
.contact__imgSkyline {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
.contact__data {
  background-color: var(--container-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(3, 74, 40, 0.15);
  padding: 0.75rem;
  padding-bottom: 110px;
  position: relative;
}
.contact__data.dataLayoutSonderDing {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
  box-shadow: none;
  background-color: transparent;
  border: 5px solid transparent;
  height: 100%;
}

/*========== tableBlueBlack ==========*/
.tableBlueBlack {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  padding: 2% 0;
}
.tableBlueBlack h4 {
  margin-bottom: 15px;
}
.tableBlueBlack a {
  color: var(--first-color);
}
.tableBlueBlack nav {
  width: 100%;
}
.tableBlueBlack nav ul {
  display: flex;
  flex-direction: column;
}
.tableBlueBlack nav ul li {
  padding: 5px 10px;
  border-bottom: 1px solid var(--color-weiss);
  display: flex;
}
@media (max-width: 700px) {
  .tableBlueBlack nav ul li {
    flex-direction: column;
  }
}
.tableBlueBlack nav ul li p {
  width: 100%;
  display: flex;
  align-items: center;
}
.tableBlueBlack nav ul li p.left {
  max-width: 400px;
  margin-right: 10px;
}
.tableBlueBlack nav ul li p.right {
  width: 100%;
  color: var(--first-color);
}
.tableBlueBlack nav ul li p.right.topline {
  color: var(--color-schwarz);
}
.tableBlueBlack nav ul li p.right.buttonClass {
  justify-content: end;
}
@media (max-width: 700px) {
  .tableBlueBlack nav ul li p.right.buttonClass {
    justify-content: start;
  }
}
.tableBlueBlack nav ul li p.right span {
  display: inline-block;
  margin: 0 10px;
  padding: 2px 5px;
  background: var(--color-weiss);
}
.tableBlueBlack nav ul li:first-child p {
  font-weight: bold;
}
.tableBlueBlack nav ul li:first-child p.left {
  max-width: 400px;
}

/*========== FOOTER ==========*/
.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}
.footer__logo {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}
.footer__description {
  display: block;
  font-size: var(--small-font-size);
  margin: 0.25rem 0 var(--mb-3);
}
.footer__social {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-2);
}
.footer__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}
.footer__link {
  display: inline-block;
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}
.footer__link:hover {
  color: var(--first-color);
}
.footer__copy {
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-top: 3.5rem;
}
.footer__picture {
  display: flex;
  height: inherit;
  max-width: 125px;
}
.footer__picture .nav__img {
  width: 100%;
  height: auto;
}
.footer__picture .nav__img g#schriftzug path {
  fill: var(--title-color);
}

/*========== MEDIA QUERIES ==========*/
@media screen and (max-width: 576px) {
  .menu__img {
    max-width: none;
  }
  .menu__imgIcon {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 576px) {
  .home__container,
.about__container,
.app__container,
.zuhause__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data,
.about__initial,
.app__data,
.app__initial,
.zuhause__data,
.zuhause__initial,
.contact__container,
.contact__initial,
.contact__initial,
.maps__initial,
.versicherung__initial {
    text-align: initial;
  }
  .about__img,
.app__img {
    max-width: 380px;
    order: -1;
  }
  .zuhause__img {
    max-width: 380px;
    order: 1;
  }
  .contact__container {
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }
  .contact__button {
    justify-self: center;
  }
}
@media screen and (max-width: 768px) {
  .menu__telBox {
    margin-bottom: var(--mb-2);
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .section {
    padding-top: 8rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
    justify-content: center;
  }
  .nav__list {
    display: flex;
  }
  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }
  .nav__item i {
    transition: all 250ms;
  }
  .nav__item i:hover {
    cursor: pointer;
    color: var(--color-orange);
  }
  .nav__toggle {
    display: none;
  }
  .change-theme {
    position: initial;
    margin-left: var(--mb-2);
  }
  .home__container {
    height: 100vh;
    justify-items: center;
    display: flex;
    flex-direction: column-reverse;
  }
  .services__container,
.menu__container {
    margin-top: var(--mb-6);
  }
  .menu__container {
    grid-template-columns: repeat(3, 210px);
    column-gap: 4rem;
  }
  .menu__content {
    padding: 1.5rem;
  }
  .menu__img {
    width: 100%;
  }
  .app__store {
    margin: 0 var(--mb-1) 0 0;
  }
}
@media screen and (max-width: 960px) {
  .menu__img {
    width: 100% !important;
    max-width: 350px;
  }
}
@media screen and (min-width: 960px) {
  .nav {
    justify-content: end;
  }
  .bd-container {
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }
  .home__img {
    max-width: 500px;
  }
  .about__container,
.app__container,
.zuhause__container {
    column-gap: 7rem;
  }
}
/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  .home__container {
    min-height: 640px;
    margin-top: 5vh;
  }
}

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