/* -------------------- Allgemein -------------------- */

body {
  font-size: 18px;
  font-family: var(--font-fliesstext, "futura-pt", sans-serif); /*Für Fließtext immer die Futura PT nehmen*/
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  background-color: var(--bg-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titel, "futura-pt", sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-titel);
  text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-titel, "futura-pt", sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-titel);
  text-decoration: none;
}
.subline {
  font-family: var(--font-subline, "futura-pt", sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-subline);
  text-decoration: underline 5px solid var(--color-border);
  text-underline-offset: 7px;
  padding-bottom: 1rem;
}
a {
  color: var(--color-links);
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
a:hover {
  color: var(--color-links-hover);
}
#impressum a {
  color: var(--color-akzent);
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
#impressum a:hover {
  color: var(--color-links-hover);
}
img {
  filter: var(--img-filter);
}
img[src$=".svg"], img[src$=".icon.svg"] {
  filter: none;
}
.mapsiframe {
  border: 4px solid #fff;
  width: 100%;
  filter: var(--mapsiframe-filter);
}
.tooltip-highlighter {
  border-bottom: 1px dotted #b1b1b1;
  cursor: help;
}
.wrapper-objektfit {
  position: relative;
  height: 100%;
  display: grid;
}
.img-objektfit {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vorteile {
  border: var(--outline-btn);
  border-radius: 15px;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.4);
}
.vorteile-icon {
  color: var(--color-border);
  font-size: 3.5rem;
}
.wrapper-service {
  display: inline-flex;
}
.wrapper-service-icon {
  width: 20%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.service-icon {
  color: var(--color-border);
  border: 2px solid var(--color-titel);
  border-radius: 50%;
  padding: 1.2rem;
  height: 4rem;
  width: 4rem;
}
.wrapinner-service {
  padding: 1.5rem;
}

/* -------------------- Margin -------------------- */

.margin-top {
  margin-top: 50px;
}
.margin-bottom {
  margin-bottom: 50px;
}
.margin-y {
  margin: 50px auto;
}
@media (min-width: 992px) {
  .margin-top {
    margin-top: 150px;
  }
  .margin-bottom {
    margin-bottom: 150px;
  }
  .margin-y {
    margin: 150px auto;
  }
}

/* -------------------- Background Image -------------------- */

.bg-content {
  background-image: var(--bg-content);
  background-blend-mode: overlay;
  background-color: rgba(255,255,255,0.5);
  background-color: var(--bg-blend-mode);
  background-blend-mode: var(--blend-mode);
}
.bg-blue {
  background-color: var(--color-akzent);
}
.bg-review {
  background-color: var(--bg-review);
}
.bg-footer {
  background-image: var(--bg-footer, #fff);
  background-position: right bottom;
  background-size: cover;
  background-color: var(--bg-blend-mode);
  background-blend-mode: var(--blend-mode);
}

/* -------------------- Button -------------------- */

.btn.btn-primary {
  border: none !important;
  outline: var(--outline-btn) !important;
  outline-offset: 5px;
  color: var(--color-btn) !important;
  background-color: var(--bg-btn) !important;
  border-radius: 5px;
  padding: 0.2rem;
}
.btn:hover.btn-primary {
  background-color: var(--bg-btn-hover) !important;
}

.btn-success {
  color: var(--color-btn);
  background-color: var(--bg-btn);
  border-color: var(--color-btn);
}
.btn-success:hover, .btn-success:focus {
  color: var(--color-btn-hover);
  background-color: var(--bg-btn-hover);
  border-color: var(--color-btn-hover);
}
.btn-check:active + .btn-success, .btn-check:checked + .btn-success, .btn-success.active, .btn-success:active, .show > .btn-success.dropdown-toggle {
  color: var(--color-btn-hover);
  background-color: var(--bg-btn-hover);
  border-color: var(--color-btn-hover);
}
.btn-check:active + .btn-success:focus, .btn-check:checked + .btn-success:focus, .btn-success.active:focus, .btn-success:active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .25rem rgba(176, 158, 128, 0.50);
}
.btn-success.disabled, .btn-success:disabled {
  color: var(--color-btn-hover);
  background-color: var(--bg-btn-hover);
  border-color: var(--color-btn-hover);
}

/* -------------------- Navbar Brand -------------------- */

@media (max-width: 1500px) {
  .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  nav .navbar-brand {
    opacity: 1 !important;
  }
  nav .navbar-brand img {
    max-width: 250px;
    width: 250px;
  }
}
@media (min-width: 1500px) {
  .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  nav .navbar-brand img {
    position: relative;
    max-width: 250px;
    width: 250px;
  }
  nav .navbar-brand {
    opacity: 1;
    padding: 0px;
    z-index: 9;
  }
}
@media (min-width: 1700px) {
  .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  nav .navbar-brand img {
    position: relative;
    max-width: 250px;
    width: 250px;
  }
  nav .navbar-brand {
    opacity: 1;
    padding: 0px;
    z-index: 9;
  }
}

/* -------------------- Navbar -------------------- */

#mainNav.navbar {
  background: var(--bg-navi);
  *box-shadow: 0px 15px 10px -15px #000;
  z-index: 999999;
}
#mainNav .nav-link {
  font-family: var(--font-navi);
  transition: none;
  text-transform: none;
  font-size: 1.3rem;
  font-weight: normal;
  padding: 0rem 0.75rem;
  color: var(--color-navi);
}
#mainNav .nav-link:hover, #mainNav .nav-link:focus, #mainNav .nav-item.active .nav-link {
  color: var(--color-navi-hover);
}
.sticky-top {
  position: static;
}
@media (min-width: 992px) {
  .sticky-top {
    position: sticky;
  }
}

/* ---- Navbar Toggle ---- */

.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
  width: 30px;
  height: 30px;
  position: relative;
  background-image: none;
}
.line {
  position: absolute;
  left: 0px;
  height: 3px;
  width: 100%;
  background-color: var(--color-navi);
  border-radius: 8px;
  transition: all cubic-bezier(0.26, 0.1, 0.27, 1.55) 0.45s;
}
.top {
  top: 18%;
}
.middle {
  top: 48%;
}
.bottom {
  top: 78%;
}
.navbar-toggler-icon.close .top {
  transform: rotate(45deg);
  top: 48%;
}
.navbar-toggler-icon.close .middle, .navbar-toggler-icon.close .bottom {
  transform: rotate(-45deg);
  top: 48%;
}

/* ---- Dropdown Animation ---- */

@media (min-width: 992px) {
  .dropdown-menu-end {
    position: absolute;
    margin-top: 0rem;
    left: auto;
    right: 0;
  }
  .dropdown-menu-start {
    position: absolute;
    margin-top: 0rem;
    left: auto;
    right: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* ---- Dropdown ---- */

.dropdown-menu {
  border: none;
  border-radius: 0px;
  background-image: none;
  box-shadow: inset 1px 1px rgb(255 255 255 / 20%), inset -1px -1px rgb(255 255 255 / 10%), 1px 3px 24px -1px rgb(0 0 0 / 15%);
  background: var(--bg-dropdown-menu);
  min-width: 16rem;
  padding: 0;
}
.dropdown-menu a {
  color: var(--color-dropdown);
  font-size: 1.2rem;
  position: relative;
  padding: 1rem 2rem;
  font-weight: normal;
  text-align: left;
}
.dropdown-menu > li:not(:last-child) {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.50);
}
.dropdown-menu a:hover, .dropdown-menu a:focus {
  color: var(--color-dropdown-hover);
  background: var(--bg-dropdown-hover) !important;
}
/*Dropdown Hover muss im Media min 992px stehen, damit sich die Navigation auf mobil durch klicken wieder schließen lässt!*/
@media (min-width: 992px) {
  li.dropdown:hover .dropdown-menu, li.dropdown:focus .dropdown-menu {
    opacity: 1;
  }
  li.dropdown:hover .dropdown-menu:not(.megasubmenu), li.dropdown:focus .dropdown-menu:not(.megasubmenu) {
    display: block;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}
#mainNav.fixed-top {
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* -------------------- Theme Switch -------------------- */

.checkbox {
  opacity: 0;
  position: absolute;
}
#colorModeLabel.switch {
  background: #212529;
  width: 70px;
  height: 40px;
  border: solid 2px var(--color-navigation, #000);
  border-radius: 50px;
  position: relative;
  padding: 9px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#language_switch.switch {
  background: var(--background-navi, #fff);
  width: 75px;
  height: 40px;
  border: solid 2px var(--color-navigation, #000);
  border-radius: 50px;
  position: relative;
  padding: 7px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fa-moon {
  color: #f1c40f;
}
.fa-sun {
  color: #f39c12;
}
.switch .ball {
  background: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  position: absolute;
  left: 2px;
  top: 3px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}
#language_switch.switch .ball {
  background: rgba(255, 255, 255, 0.8);
  width: 33px;
  height: 33px;
  position: absolute;
  left: 2px;
  top: 1px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}
.checkbox:checked + .switch .ball {
  transform: translateX(30px);
}
.checkbox:checked + #language_switch.switch .ball {
  transform: translateX(33px);
}

/* -------------------- Topinfo -------------------- */

.top-info {
  background: var(--bg-tinfo);
  border-radius: 15px;
}
.tinfo {
  display: flex;
  place-content: center space-around;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .tinfo {
    display: flex;
    flex-direction: row;
    place-content: center space-evenly;
    align-items: center;
    font-size: smaller;
  }
}
@media (min-width: 1200px) {
  .tinfo {
    display: flex;
    flex-direction: row;
    place-content: center space-evenly;
    align-items: center;
  }
}

/* ---- Topinfo Mobil ---- */

.wrappertinfo {
  display: inline-flex;
  margin: 0.5em 0em 0.5em 0em;
}
.wrapinner {
  display: inline-flex;
  font-size: 0.8em;
  text-align: start;
  color: var(--color-tinfo);
}
.wrapinner a {
  color: var(--color-tinfo-link);
}
.wrapinner a:hover {
  color: var(--color-tinfo-link-hover);
}
.wrapout {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0.5em;
}
.tinfoicon {
  display: inline-flex;
  align-items: center;
}
.icon {
  font-size: 2.7em;
  color: var(--color-tinfo);
  padding: 0.2em 0em;
  width: 1.2em;
}

/* ---- Topinfo Desktop ---- */

@media (min-width: 992px) {
  .wrappertinfo {
    display: inline-flex;
    margin: 0em;
  }
  .wrapinner {
    display: inline-flex;
    font-size: 1em;
  }
  .wrapout {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0.5em;
  }
  .tinfoicon {
    display: inline-flex;
    align-items: center;
  }
}

/* -------------------- Scroll Top -------------------- */

.scroll-top {
  display: none !important;
  color: #fff;
  font-weight: bold;
  background-color: rgba(43, 43, 43, 0.60);
  right: 140px;
  bottom: 4.5%;
  position: fixed;
  transition: all .35s;
  box-shadow: 1px 0px 2px #333;
  font-size: 0.7rem;
  z-index: 9;
}
.scroll-top:hover {
  color: #fff;
  text-decoration: none;
  background-color: var(--color-akzent);
}
@media (min-width: 992px) {
  .scroll-top {
    display: block !important;
  }
}

/* -------------------- Kontaktbox -------------------- */

#kontaktbox {
  background: var(--bg-kontaktbox);
  color: var(--color-kontaktbox);
  border-radius: 0.5em;
  margin-top: 2vh;
  position: relative;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.4);
  text-align: center;
}
@media (min-width: 992px) {
  #kontaktbox {
    margin-top: -7vh;
    text-align: left;
  }
}
#kontaktbox span {
  font-size: 1.0em;
}
#kontaktbox a {
  color: var(--color-kontaktbox-link);
}
#kontaktbox a:hover {
  color: var(--color-kontaktbox-link-hover);
}
#kontaktbox ul {
  list-style: none;
  padding: 0;
}
#kontaktbox ul li {
  padding: 0.2em 0em;
}
#kontaktbox ul svg {
  font-size: 1em;
  margin-right: 0.5em;
}
#kontaktbox a.button {
  background-color: var(--bg-button-kontaktbox);
  border: none;
  border-radius: 0.5em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-button-kontaktbox);
  width: 100%;
  padding: 0.5em 0em;
  transition: 0.2s;
  margin: 0.9em;
}
#kontaktbox a.button:hover {
  transition: 0.2s;
  color: var(--color-button-kontaktbox-hover);
  width: 100%;
}
@media (min-width: 992px) {
  #kontaktbox span {
    font-size: 1.0em;
  }
}
.serviceberaterin {
  display: flex;
  width: 50%;
  margin: auto;
}
@media (min-width: 992px) {
  .serviceberaterin {
    width: 100%;
  }
}

/* -------------------- Footer -------------------- */

.icon-footer {
  font-size: 2.7em;
  padding: 0.2em 0em;
  width: 1.2em;
}

/* ---- Copyright ---- */

.copyright {
  color: var(--color-footer);
  font-style: italic;
  text-align: center;
  margin: auto;
  display: block;
}
ul.copyright-list {
  color: var(--color-footer);
  list-style-type: none;
  padding: 2rem 0 0;
  text-align: center;
}
ul.copyright-list li {
  display: inline-block;
  text-align: center;
}
ul.copyright-list a {
  color: var(--color-footer-link);
  padding: 0 0.5rem;
  text-decoration: none;
}
ul.copyright-list a:hover {
  color: var(--color-footer-link-hover);
}
@media (min-width: 992px) {
  .copyright {
    text-align: left;
    margin: 0;
  }
  ul.copyright-list {
    text-align: left;
  }
}

/* ---- Quicklinks ---- */

.quicklinks-titel {
  font-family: var(--font-titel, "futura-pt", sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-titel-quicklinks);
  text-decoration: none;
  text-align: center;
}
.quicklinks-subline {
  font-family: var(--font-subline, "futura-pt", sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-subline-quicklinks);
  text-decoration: underline 5px solid var(--color-border);
  text-underline-offset: 7px;
  padding-bottom: 1rem;
  text-align: center;
}
.quicklinks-icon {
  justify-content: center;
}
ul.quicklinks-list {
  list-style-type: none;
  padding: 0;
  color: var(--color-footer);
  text-align: center;
}
.quicklinks-list a {
  color: var(--color-footer-links);
  font-weight: 400;
  text-decoration: none;
}
.quicklinks-list a:hover {
  color: var(--color-footer-link-hover);
}
@media (min-width: 992px) {
  .quicklinks-titel {
    text-align: left;
  }
  ul.quicklinks-list {
    text-align: left;
  }
  .quicklinks-subline {
    text-align: left;
  }
  .quicklinks-icon {
    justify-content: flex-start;
  }
}

/* -------------------- Social Media -------------------- */

.effect:nth-child(2) {
  margin-top: 50px;
}
.effect .buttons {
  display: flex;
  justify-content: center;
}
.effect a:last-child {
  margin-right: 0px;
}
.effect a {
  text-decoration: none !important;
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 20px;
  font-size: 25px;
  overflow: hidden;
  position: relative;
}
.effect a i {
  position: relative;
  z-index: 3;
}
.effect a.fb {
  background-color: var(--color-facebook);
}
.effect a.insta {
  background: var(--color-insta);
}
.effect a.tik {
  background-color: var(--color-tiktok);
  border: solid 2px var(--color-footer-text);
}
.effect a.twitter {
  background-color: var(--color-tiktok);
  border: solid 2px var(--color-footer-text);
}
.effect a.whatsapp {
  background-color: var(--color-whatsapp);
}
.effect.social-media a {
  transition: transform 0.2s linear 0s, border-radius 0.2s linear 0.2s;
}
.effect.social-media a i {
  transition: transform 0.2s linear 0s;
}
.effect.social-media a:hover {
  transform: rotate(-90deg);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  color: #fff;
}
.effect.social-media a:hover svg {
  transform: rotate(90deg) !important;
}
.effect .title-social-media {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  color: var(--color-footer-text);
}
.effect .title-social-media-kontakt {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  color: var(--color-footer-text);
}
.line-social {
  position: relative;
  width: 100%; /* Breite der Linie */
  height: 4px; /* Höhe der Linie */
  bottom: 13px;
  border-top: none;
  margin-top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 70%);
}
@media (min-width: 992px) {
  .effect:before {
    width: 80%;
  }
}
@media (prefers-reduced-motion) {
  .effect.social-media a {
    transition: transform 0.2s linear 0s, border-radius 0.2s linear 0.2s;
  }
  .effect.social-media a i {
    transition: transform 0.2s linear 0s;
  }
  .effect.social-media a:hover {
    transform: none;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    color: #fff;
  }
  .effect.social-media a:hover svg {
    transform: none !important;
  }
  @media (min-width: 992px) {
    .effect:before {
      width: 80%;
    }
  }
}

/* -------------------- Slidershow Multiple Items -------------------- */

.carousel-inner .carousel-item .card .card-img a {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
.carousel-inner .carousel-item.active, .carousel-inner .carousel-item-next, .carousel-inner .carousel-item-prev {
  display: flex;
}
/* medium and up screens */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-end.active, .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }
  .carousel-inner .carousel-item-start.active, .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}
.carousel-inner .carousel-item-end, .carousel-inner .carousel-item-start {
  transform: translateX(0);
}
.card {
  border: none !important;
}

/* -------------------- Öffnungszeiten Tabelle -------------------- */

.table {
  border-color: var(--border-open);
}
.table-success, .table-success > th, .table-success > td {
  background-color: var(--bg-open-success) !important;
  color: var(--color-open-success) !important;
}
.table-sm > :not(caption) > * > * {
  padding: 0.25rem 1rem;
  padding: .4rem .4rem;
  color: var(--color-open);
  background-color: var(--bg-open);
}

/* -------------------- Bildstapel -------------------- */

.bild02 {
  float: right;
  margin-top: -6em;
  position: relative;
}
.bild03 {
  margin-top: -6em;
}
@media (min-width: 768px) and (max-width: 991px) {
  .bild01 {
    position: relative;
    left: 15%;
  }
  .bild02 {
    float: right;
    margin-top: 7em;
    position: relative;
    right: 12%;
  }
  .bild03 {
    margin-top: 3em;
    position: relative;
    left: 4.5em;
  }
}

/* -------------------- Parallax -------------------- */

.parallax {
  background-attachment: fixed !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* -------------------- Inviewport Image -------------------- */

[data-inviewport] img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 1;
}
[data-inviewport="zoomout"] {
  transition: all 10s ease;
  transform: scale(1.3);
}
[data-inviewport="zoomout"].is-inViewport {
  transform: scale(1);
}
.container-inviewport {
  padding: 0;
  overflow: hidden;
  height: auto;
  position: relative;
}

/* -------------------- Image Grid BEGINN -------------------- */ 

.first-img {
  width: 90%;
  height: auto;
  float: right;
  object-fit: cover;
}
.second-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.third-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .first-img {
    width: 100%;
  }
  .third-img {
    width: 100%;
    height: auto;
  }
} 