@charset "UTF-8";
/* ==========================================================================
   Aufbau
   ========================================================================== */
/* ==========================================================================
   Farben
   ========================================================================== */
/* ==========================================================================
   Typo
   ========================================================================== */
/* ==========================================================================
   Grid
   Bsp.:
   <div class="grid col-2">
   		<div class="item"></div>
   		<div class="item"></div>
   </div>
   ========================================================================== */
.grid {
  display: flex;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row;
  justify-content: flex-start;
}
.grid div.item {
  flex: 1 1 300px;
  flex-wrap: wrap;
}

.grid.col-text {
  align-items: flex-start;
}
.grid.col-text div.item {
  width: 100%;
  max-width: 900px;
  margin-right: 100px;
}

.grid.col-1 {
  align-items: flex-start;
  width: 100%;
}
.grid.col-1 div.item {
  width: 100%;
}

.grid.col-2 {
  align-items: flex-start;
}
.grid.col-2 div.item {
  flex-basis: calc(50% - 50px);
  min-width: 292px;
}

div.grid.col-2 .item div.col-2 div.item {
  min-width: 0 !important;
}

.grid.col-3 {
  align-items: flex-start;
}
.grid.col-3 div.item {
  flex-basis: calc(33.33% - 50px);
  max-width: 436.6666666667px;
}

.grid.col-4 {
  align-items: flex-start;
}
.grid.col-4 div.item {
  flex-basis: calc(25% - 50px);
  max-width: calc(25% - 50px);
}

.grid.col-5 {
  align-items: flex-start;
}
.grid.col-5 div.item {
  flex-basis: calc(20% - 50px);
  max-width: 292px;
}

.grid.col-1-2 {
  align-items: flex-start;
}
.grid.col-1-2 div.item {
  width: 100%;
}

div.item-1-3 {
  flex-basis: 30%;
}

div.item-2-3 {
  flex-basis: 55%;
}

/* ==========================================================================
   Ausrichtung
   ========================================================================== */
.grid.align-top {
  align-items: flex-start;
}

.grid.align-middle {
  align-items: stretch;
}

.grid.align-right {
  justify-content: flex-end;
}

.grid.direction-column {
  flex-direction: column !important;
}
.grid.direction-column div.item {
  flex: 1 1 0;
}

/* ==========================================================================
   Abstände zwischen den Spalten
   ========================================================================== */
.nogap, .grid.gap-0 {
  gap: 0;
}

.gap-xs {
  gap: 5px;
}

.gap-s {
  gap: 15px;
}

.gap-m {
  gap: 35px;
}

.gap-l {
  gap: 50px;
}

.gap-xl {
  gap: 75px;
}

.gap-xxl {
  gap: 100px;
}

/* ==========================================================================
   Abstände nach/vor einer Row
   ========================================================================== */
.bottom-0 {
  margin-bottom: 0;
}

.bottom-xs {
  margin-bottom: 5px;
}

.bottom-s {
  margin-bottom: 15px;
}

.bottom-m {
  margin-bottom: 35px;
}

.bottom-l {
  margin-bottom: 50px;
}

.bottom-xl {
  margin-bottom: 75px;
}

.bottom-xxl {
  margin-bottom: 100px;
}

.bottom-xxxl {
  margin-bottom: 150px;
}

.top-xs {
  margin-top: 5px;
}

.top-s {
  margin-top: 15px;
}

.top-m {
  margin-top: 35px;
}

.top-l {
  margin-top: 50px;
}

.top-xl {
  margin-top: 75px;
}

.top-xxl {
  margin-top: 100px;
}

.top-xxxl {
  margin-top: 150px;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
/*
@media (max-width: cfg.$breakDesktop) {
	.grid.break-desktop {
	   flex-wrap: wrap;
	   flex-direction: column;
	   div.item, div.card { flex: none }
	   .card.content { margin-bottom: cfg.$gap35; }
   }
}
*/
@media (max-width: 768px) {
  .grid.col-text div.item {
    margin-right: 75px;
  }
  .grid.break-small,
  .grid.break-tablet {
    flex-wrap: wrap;
  }
  .grid.break-small div.item,
  .grid.break-small div.card,
  .grid.break-tablet div.item,
  .grid.break-tablet div.card {
    flex: 1 1 250px;
  }
  .grid.break-small .card.content,
  .grid.break-tablet .card.content {
    margin-bottom: 35px;
  }
  .grid.break-early {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .grid.break-early div.item, .grid.break-early div.card {
    flex: none;
  }
  .grid.break-early .card.content {
    margin-bottom: 35px;
  }
  .mobile-bottom-s {
    margin-bottom: 5px;
  }
  .mobile-bottom-m {
    margin-bottom: 10px;
  }
  .mobile-bottom-l {
    margin-bottom: 15px;
  }
  .mobile-bottom-xl {
    margin-bottom: 25px;
  }
  .mobile-bottom-xxl {
    margin-bottom: 50px;
  }
  .mobile-bottom-xxxl {
    margin-bottom: 100px;
  }
  .top-l {
    margin-top: 15px;
  }
  .top-xl {
    margin-top: 25px;
  }
  .top-xxl {
    margin-top: 50px;
  }
  .top-xxxl {
    margin-top: 100px;
  }
  .grid.col-4 div.item {
    flex-basis: calc(50% - 50px);
    max-width: calc(50% - 50px);
  }
}
@media (max-width: 580px) {
  .grid.break-tablet,
  .grid.break-small {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .grid.break-tablet .card.content,
  .grid.break-small .card.content {
    margin-bottom: 35px;
  }
  .grid.break-tablet div.item, .grid.break-tablet div.card,
  .grid.break-small div.item,
  .grid.break-small div.card {
    flex: none;
  }
  .grid.col-text div.item {
    margin-right: 0;
  }
  div.item-1-3,
  div.item-2-3 {
    flex-basis: 100%;
  }
}
/* ==========================================================================
   Schwebender Navigationsbalken mit C2A
   ========================================================================== */
.navbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  max-width: 1360px;
  width: calc(100% - 100px);
  border-radius: 50px;
  opacity: 1;
  z-index: 1000;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.nav-inner, .nav-button {
  border-radius: 50px;
  height: 50px;
  width: 100%;
  box-shadow: 0 8px 26px rgba(10, 20, 40, 0.12);
}

.nav-inner {
  display: flex;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  margin: 5px 35px 0 40px;
}
.nav-logo img {
  height: 42px;
}

.nav-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 35px;
}

.nav-links {
  display: flex;
  gap: 15px;
  margin-right: 32px;
  color: #1B3074;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
  user-select: none;
}
.nav-links a, .nav-links a:link, .nav-links a:visited {
  color: #1B3074;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a:active {
  color: #E40521;
}
.nav-links a.active {
  color: #E40521;
}

/* "Termin vereinbaren"-Button */
a.nav-button,
a.nav-button:link,
a.nav-button:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1B3074;
  outline: 1px solid rgba(255, 255, 255, 0.5333333333);
  width: 225px;
  padding: 0 50px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
  user-select: none;
}

a.nav-button:hover {
  background-color: #E40521;
}

/* ==========================================================================
   Hamburger
   ========================================================================== */
/* Hamburger-Wrapper zum exakten Positionieren des Dropdowns */
.hamburger-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 30px;
  height: 5px;
  background: #1B3074;
  border-radius: 3px;
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.18s linear;
  transform-origin: center;
}

.hamburger .bar + .bar {
  margin-top: 5px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Dropdown Menu
   ========================================================================== */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -15px;
  min-width: 200px;
  padding: 20px 0;
  background: #fff !important;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(10, 20, 40, 0.14);
  overflow: hidden;
  transform-origin: top right;
  transform: scaleY(0);
  transition: transform 0.36s cubic-bezier(0.2, 0.95, 0.25, 1), opacity 0.2s ease;
  pointer-events: none; /* verhindert Klicks wenn geschlossen */
  will-change: transform, opacity;
  z-index: 1300;
}

.dropdown.open {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.dropdown a,
.dropdown a:link,
.dropdown a:visited {
  display: block;
  padding: 10px 25px;
  color: #1B3074;
  text-decoration: none;
  user-select: none;
}

.dropdown a.active {
  color: #E40521;
}

.dropdown .menu-separator {
  background-color: #C0CFF6;
  height: 1px;
  overflow: hidden;
  margin: 5px 0;
}

.dropdown .nav-group {
  background-color: #F0F0F0;
}

.dropdown .em {
  font-weight: bold;
}

.dropdown a:last-child {
  border-bottom: 0;
}

.dropdown a:hover {
  background-color: #DCE4F9;
}

/* ==========================================================================
   Schnellkontakt-Buttons (Telefon/ E-Mail) am rechten Rand
   ========================================================================== */
a.navShortcut {
  position: fixed;
  display: flex;
  align-items: center;
  top: 125px;
  right: 0;
  outline: 1px solid rgba(255, 255, 255, 0.5333333333);
  background: #1B3074;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 8px 26px rgba(10, 20, 40, 0.12);
  -webkit-transition: width 0.3s ease-in-out, background-color 0.4s ease-in;
  -moz-transition: width 0.3s ease-in-out, background-color 0.4s ease-in;
  transition: width 0.3s ease-in-out, background-color 0.4s ease-in;
}
a.navShortcut span {
  margin-left: 45px;
  opacity: 0;
  width: auto;
  white-space: nowrap;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

a.navShortcut::before {
  content: "";
  position: absolute;
  inset: 0; /* top: 0; left: 0; right: 0; bottom: 0; */
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 15px center;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s linear;
}

a.navShortcut:hover {
  background-color: #E40521;
  width: 250px;
}
a.navShortcut:hover span {
  display: block;
  opacity: 1;
}

a.navShortcut:hover::before {
  opacity: 0.5;
}

#phone_shortcut {
  font-size: 1.2em;
  top: 90px;
}

#phone_shortcut::before {
  background-image: url(../img/sys/icon-phone-w.png);
}

#email_shortcut {
  top: 150px;
}

#email_shortcut::before {
  background-image: url(../img/sys/icon-email-w.png);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1015px) {
  .navLinkMobile {
    display: block;
  }
  .navLinkDesktop {
    display: none !important;
  }
}
@media (min-width: 1016px) {
  .navLinkMobile {
    display: none !important;
  }
  .navLinkDesktop {
    display: block;
  }
}
@media (max-width: 768px) {
  #termin-btn {
    display: none;
  }
  .nav-logo {
    margin-left: 15px;
  }
  .navbar {
    width: calc(100% - 20px);
    gap: 0;
  }
  .dropdown {
    left: auto;
    right: -30px; /* an der rechten Kante des Wrappers ausrichten */
  }
}
@media (max-width: 580px) {
  .nav-links, a.nav-button {
    display: none;
  }
  .navbar {
    width: calc(100% - 20px);
    gap: 0;
    top: 5px;
  }
  .nav-controls {
    margin-right: 30px;
  }
  .nav-logo {
    margin: 5px 0 0 33px;
  }
  .nav-logo img {
    height: 38px;
  }
  a.navShortcut {
    right: 0;
  }
  #phone_shortcut {
    top: calc(100vh - 100px - 15px - 100px) !important;
  }
  #email_shortcut {
    top: calc(100vh - 100px - 50px) !important;
  }
}
@media ((min-width: 581px) and (max-width: 1159px)) {
  .navbar {
    max-width: 1410px;
    width: calc(100% - 50px);
  }
  .nav-logo {
    margin-left: 35px;
  }
}
@media (min-width: 1160px) {
  .navbar {
    max-width: 1360px;
    width: calc(100% - 100px);
  }
}
/* ==========================================================================
   Container
   ========================================================================== */
.container {
  display: flex;
  width: 100%;
  display: flex;
  gap: 25px;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-grow: 1;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  flex: 1;
  border-radius: 25px;
  line-height: 1.4em;
}
.card .image {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 0;
}
.card .image img {
  width: 100%;
  height: 100%;
  height: auto;
  border: none;
  display: block;
  object-fit: cover;
}
.card .inset {
  padding: 50px 50px;
}
.card h3 {
  margin: 10px 0;
}
.card em {
  font-size: 26px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4em;
}

.profile-cards {
  width: 100%;
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}
.profile-cards .card {
  padding: 50px;
  display: flex;
  align-items: center;
}
.profile-cards .icon {
  width: 60px !important;
  min-width: 60px !important;
  text-align: center;
  margin-right: 40px;
}
.profile-cards .icon img {
  max-width: 60px;
}
.profile-cards .content {
  color: #000;
  line-height: 25px;
}
.profile-cards .content em {
  line-height: 25px;
}

a.image-cards,
.image-cards {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
a.image-cards a.card,
a.image-cards .card,
.image-cards a.card,
.image-cards .card {
  padding: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none !important;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
  flex-basis: 200px;
}
a.image-cards a.card .image,
a.image-cards .card .image,
.image-cards a.card .image,
.image-cards .card .image {
  max-width: 300px;
  max-height: 600px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
  overflow: auto;
}
a.image-cards a.card .content,
a.image-cards .card .content,
.image-cards a.card .content,
.image-cards .card .content {
  color: #000;
}
a.image-cards a.card:hover,
.image-cards a.card:hover {
  position: relative;
  transform: translate(-1px, -3px);
}
a.image-cards a.card:hover .image,
.image-cards a.card:hover .image {
  position: relative;
  transform: scale(1.07);
}
a.image-cards a.card:hover .content,
.image-cards a.card:hover .content {
  color: #2551CB;
}

.card.darkblue {
  background: #1B3074;
  color: #fff;
}
.card.darkblue h1, .card.darkblue h2, .card.darkblue h3 {
  color: #C0CFF6;
}
.card.darkblue .content {
  color: #fff;
}

.card.red {
  background: #E40521;
  color: #fff;
}
.card.red h1, .card.red h2, .card.red h3 {
  color: #C0CFF6;
}

.card.center {
  text-align: center;
}

.card.white {
  color: #000;
  background: #fff;
}

.section .darkblue {
  background: #1B3074;
}

.card.card-bold {
  padding: 75px 50px;
  background-image: url(../img/sys/triangle-red.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
}

a.image-cards.mid a.card .image,
a.image-cards.mid .card .image,
.image-cards.mid a.card .image,
.image-cards.mid .card .image {
  max-width: 150px;
}

/* ==========================================================================
   Bewertungen
   ========================================================================== */
.reviews {
  width: 100%;
  min-height: 250px;
}
.reviews div.tile-inner {
  background-image: linear-gradient(270deg, #424857 0%, #565E71 100%);
  height: 100%;
  padding: 25px 25px;
  overflow: hidden;
  border-radius: 25px;
}
.reviews div.tile {
  position: relative;
  margin-right: 10px;
  width: 600px;
  height: 250px;
  overflow: hidden;
  border-radius: 25px;
  padding: 0 10px 0 0;
}
.reviews div.tile .stars {
  position: relative;
  top: -5px;
  width: 100%;
  height: 21px;
  background-image: url(../img/sys/icon-star@2x.png);
  background-size: auto 21px;
  background-repeat: repeat-x;
  margin-bottom: 10px;
}
.reviews div.tile .stars.one {
  clip-path: rect(0 21px 21px 0);
}
.reviews div.tile .stars.two {
  clip-path: rect(0 43px 21px 0);
}
.reviews div.tile .stars.three {
  clip-path: rect(0 65px 21px 0);
}
.reviews div.tile .stars.four {
  clip-path: rect(0 87px 21px 0);
}
.reviews div.tile .stars.five {
  clip-path: rect(0 109px 21px 0);
}
.reviews div.tile .recension {
  width: auto;
  height: 145px;
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
}
.reviews div.tile a, .reviews div.tile a:link, .reviews div.tile a:visited {
  color: #C0CFF6;
  text-decoration: none;
}
.reviews div.tile a:hover, .reviews div.tile a:active {
  color: #fff;
  text-decoration: underline;
}
.reviews div.tile .author {
  position: absolute;
  bottom: 25px;
  color: #A8AEBD;
  white-space: nowrap;
  overflow: hidden;
  width: 390px;
}

.review-popup {
  display: none;
  max-width: 800px;
}

/* ==========================================================================
   Masonry
   ========================================================================== */
.masonry .large {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2em;
  color: #2551CB;
}
.masonry .medium {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
.masonry p {
   text-align: left;
  margin: 0;
}
.masonry .masonry-indent {
  margin-left: 110px;
  text-align: left;
}
.masonry .masonry-icon {
  max-width: 90px;
  width: 100%;
  float: left;
}

.masonry-static {
  display: block;
  position: relative;
  width: 100%;
  height: 580px;
}

.masonry-static .masonry-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 25px;
  overflow: hidden;
  padding: 15px 20px;
  text-align: center;
}
.masonry-static .t1 {
  left: 0;
  top: 0;
  width: 446px;
  height: 215px;
}
.masonry-static .t2 {
  left: 457px;
  top: 0;
  width: 562px;
  height: 353px;
}
.masonry-static .t3 {
  left: 1030px;
  top: 0;
  width: 326px;
  height: 353px;
}
.masonry-static .t4 {
  left: 0;
  top: 226px;
  width: 446px;
  height: 353px;
}
.masonry-static .t5 {
  left: 457px;
  top: 363px;
  width: 446px;
  height: 215px;
}
.masonry-static .t6 {
  left: 914px;
  top: 363px;
  width: 444px;
  height: 215px;
}

.masonry-responsive {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  gap: 15px;
  align-item: stretch;
}
.masonry-responsive .masonry-tile {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 225px;
  border-radius: 25px;
  overflow: hidden;
  padding: 15px 20px;
  text-align: center;
}

.masonry-tile.white {
  background: #fff;
}

.masonry-tile.blue {
  background: linear-gradient(90deg, #2551CB 0%, rgb(29.92375, 65.50875, 164.17625) 100%);
}
.masonry-tile.blue .large {
  color: #fff;
}
.masonry-tile.blue .medium {
  color: #C0CFF6;
}

.masonry-tile.red {
  background: linear-gradient(90deg, #E40521 0%, rgb(193.0660944206, 4.2339055794, 27.943776824) 100%);
}
.masonry-tile.red .medium {
  color: #fff;
}

/*
.t1 { left: 0;  		top: 0;  	width: 33.3333vw; max-width: 446px; height: 215px; }
.t2 { left: 34.1554%;	top: 0;  	width: 42.0029vw; max-width: 562px; height: 353px; }
.t3 { left: 76.9805%; 	top: 0;  	width: 24.6636vw; max-width: 330px; height: 353px; }
.t4 { left: 0;  		top: 226px; width: 33.3333vw; max-width: 446px; height: 353px; }
.t5 { left: 34.1554%; 	top: 363px; width: 33.3333vw; max-width: 446px; height: 215px; }
.t6 { left: 68.3109%;	top: 363px; width: 33.3333vw; max-width: 446px; height: 215px; }
*/
.masonry-tile.blue, .tile.red {
  color: #fff;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .profile-cards {
    gap: 15px;
    margin-bottom: 15px;
  }
  .profile-cards .card {
    padding: 35px;
  }
  .profile-cards .icon {
    width: 60px !important;
    min-width: 60px !important;
    text-align: center;
    margin-right: 25px;
  }
  .profile-cards .icon img {
    max-width: 60px;
  }
  .card.card-bold {
    padding: 50px 25px;
  }
}
/*
@media (max-width: cfg.$breakTablet) {
}
*/
@media (max-width: 580px) {
  a.image-cards, .image-cards {
    flex-direction: column;
  }
  .profile-cards {
    gap: 15px;
    margin-bottom: 15px;
    flex-direction: column;
  }
  .profile-cards .card {
    padding: 15px;
  }
  .profile-cards .icon {
    width: 60px !important;
    min-width: 60px !important;
    text-align: center;
    margin-right: 10px;
  }
  .card em {
    font-size: 20px;
  }
  .card.card-bold {
    padding: 35px 15px;
  }
  .bigStar {
    height: 22px;
  }
}
.show-on-mobile {
  display: none !important;
}

.show-on-desktop {
  display: block;
}

.show-on-max-desktop {
  display: none !important;
}

.hide-on-mobile {
  display: block;
}

.hide-on-desktop {
  display: none !important;
}

.hide-on-max-desktop {
  display: block;
}

.display-show {
  display: block;
}

.display-hide {
  display: none;
}

.align-right {
  text-align: right;
}

.margin-top-xs {
  margin-top: 10px;
}

.margin-top-s {
  margin-top: 25px;
}

.margin-top-0 {
  margin-top: 0;
}

.margin-bottom-xs {
  margin-bottom: 10px;
}

.margin-bottom-s {
  margin-bottom: 25px;
}

.margin-bottom-m {
  margin-bottom: 50px;
}

.margin-bottom-l {
  margin-bottom: 100px;
}

.wrap {
  hyphens: auto;
  -webkit-hyphens: auto;
  -webkit-locale: "de";
  -webkit-hyphenate-character: "-";
  -moz-hyphens: auto;
}

.nowrap {
  white-space: nowrap;
  word-wrap: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: manual;
}

.margin0 {
  margin: 0 !important;
}

.spacer {
  margin-bottom: 100px;
}

.clear {
  clear: both;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.transition {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

@media (max-width: 580px) {
  .show-on-desktop,
  .hide-on-mobile,
  .show-on-max-desktop {
    display: none !important;
  }
  .show-on-mobile,
  .hide-on-max-desktop,
  .hide-on-desktop {
    display: block !important;
  }
  .margin-bottom-l {
    margin-bottom: 50px;
  }
}
@media (min-width: 581px) {
  .show-on-mobile,
  .hide-on-desktop,
  .show-on-max-desktop {
    display: none !important;
  }
  .show-on-desktop,
  .hide-on-mobile,
  .hide-on-max-desktop {
    display: block !important;
  }
}
@media (min-width: 1460px) {
  .show-on-max-desktop {
    display: block !important;
  }
  .hide-on-max-desktop {
    display: none !important;
  }
}
/* ==========================================================================
   Buttons
   ========================================================================== */
a.btn,
a.btn:link,
a.btn:visited,
.btn {
  text-decoration: none;
  background-color: #1B3074;
  font-weight: 500;
  color: #fff;
  padding: 0.75em 1.5em;
  padding: 0.85em 1.75em;
  border: none;
  border-radius: 100px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  user-select: none;
  font-size: 16px;
  font-weight: bold;
}

a.btn:hover,
.btn:hover {
  background-color: #E40521;
}

a.btn:active,
.btn:active {
  position: relative;
  background-color: #E40521;
  top: 1px;
  left: 2px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

a.btn.black {
  background: #000;
}

a.btn.black:hover, .btn.black:hover {
  background-color: #1B3074;
}

a.btn.hero,
a.btn.hero:link,
a.btn.hero:visited,
.btn.hero {
  padding: 0.68em 1.75em;
  font-size: clamp(1em, 2vw, 1.25em);
  color: #fff;
  background-color: #E40521;
}

a.btn.hero:hover,
.btn.hero:hover {
  padding: 0.9em 2em;
  color: #fff;
}

/* ==========================================================================
   Fonts
   ========================================================================== */
@font-face {
  font-family: "mainFont";
  font-style: normal;
  font-weight: 300;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url("../fonts/ubuntu-300.woff2") format("woff2"), url("../fonts/ubuntu-300.woff") format("woff");
}
@font-face {
  font-family: "mainFont";
  font-style: normal;
  font-weight: 400;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url("../fonts/ubuntu-400.woff2") format("woff2"), url("../fonts/ubuntu-400.woff") format("woff");
}
@font-face {
  font-family: "mainFont";
  font-style: normal;
  font-weight: 500;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url("../fonts/ubuntu-500.woff2") format("woff2"), url("../fonts/ubuntu-500.woff") format("woff");
}
@font-face {
  font-family: "mainFont";
  font-style: normal;
  font-weight: 700;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url("../fonts/ubuntu-700.woff2") format("woff2"), url("../fonts/ubuntu-700.woff") format("woff");
}
/* ==========================================================================
   Typo
   ========================================================================== */
p {
  margin: 0 0 1em 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.2em;
}

h1 {
  font-size: clamp(28px, 4vw, 3em);
  line-height: 1.25em;
  margin-bottom: 100px;
}

h1.normal,
h2.normal {
  margin-bottom: 0.5em;
}

.hero h1 {
  font-size: clamp(30px, 4vw, 3.5em);
  line-height: 1.1em;
  margin-bottom: 15px;
}

h2 {
  font-size: clamp(23px, 3.5vw, 3em);
  line-height: 1.25em;
  margin-bottom: 50px;
}

h3 {
  font-size: clamp(20px, 2vw, 1.625em);
  font-weight: 500;
  margin: 2em 0 0.5em 0;
}

h3.normal {
  margin: 0 0 0.5em 0;
}

h4 {
  font-size: clamp(18px, 1.5vw, 1.25em);
  font-weight: bold;
  margin-bottom: 0.35em;
}

h3.light {
  color: #DEF0F7;
}

h3:first-child {
  margin-top: 0;
}

.hero-subline {
  font-size: clamp(1em, 2vw, 1.25em);
}

p.large {
  font-size: clamp(23px, 3.5vw, 3em);
  line-height: 1.2em;
}

p.enlarge {
  font-size: 1.3rem;
  line-height: 1.3em;
}

p.white {
  color: #fff;
}

.prolog {
  font-size: clamp(20px, 2vw, 1.625em);
  line-height: 1.4em;
}

/* ==========================================================================
   Links
   ========================================================================== */
a:link, a:visited {
  color: #2551CB;
}

a:active, a:hover {
  color: #1B3074;
}

a.white:link, a.white:visited, a.white:active, a.white:hover {
  color: #fff;
}

a.plain:link, a.plain:visited {
  text-decoration: none;
}

a.plain:active, a.plain:hover {
  text-decoration: underline;
}

a.hiddenlink:link, a.hiddenlink:visited {
  text-decoration: none;
  color: inherit;
}

a.hiddenlink:active, a.hiddenlink:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Listen
   ========================================================================== */
ul, ol {
   margin: 0;
  padding: 0;
}

li {
  margin-left: 1em;
}

ul.space li, ol.space li {
  margin-bottom: 0.5em;
}

ul.space-l li, ol.space-l li {
  margin-bottom: 1em;
}

ul.no-bullet {
  list-style-type: none;
}
ul.no-bullet li {
  margin-left: 0;
}

/* ==========================================================================
   Tables
   ========================================================================== */
table.simple {
  width: auto;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}
table.simple td {
  border-bottom: 1px solid #A8AEBD;
  vertical-align: top;
  padding: 2px 5px;
}

/* ==========================================================================
   Tools
   ========================================================================== */
.limited-text {
  width: 75%;
  max-width: 900px;
}

.limited-text_abs {
  max-width: 900px;
}

.normal-space {
  margin-bottom: 15px;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 580px) {
  h1 {
    margin-bottom: 35px;
  }
  h2 {
    margin-bottom: 15px;
  }
  .limited-text {
    width: 100%;
    max-width: 100%;
  }
  .masonry .large {
    font-size: 28px;
  }
  .masonry .medium {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  h1 {
    margin-bottom: 50px;
  }
}
/* ==========================================================================
   Utils
   ========================================================================== */
.topmost_margin {
  margin-top: 200px;
}

.vertical-margin {
  margin-top: 150px;
}

/* ==========================================================================
   Akkordeon
   ========================================================================== */
.accordion {
  /* Verstecke standard Pfeil */
  /* + / - Icon mit pseudo Element */
  /* Wenn geöffnet, - Icon zeigen */
  /* Container für Content für Animation */
  /* Offen: Slide-In */
}
.accordion details {
  margin: 0 0 10px 0;
  padding: 0;
  user-select: none;
}
.accordion summary {
  list-style: none;
  font-size: 20px;
  font-weight: 500;
  color: #1B3074;
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  outline: none;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::before {
  content: "";
  display: inline-block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-image: url("../img/sys/icon-plus.svg"); /* Pfad zum Plus-Icon */
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
.accordion details[open] summary::before {
  background-image: url("../img/sys/icon-minus.svg"); /* Pfad zum Minus-Icon */
}
.accordion .acc-content {
  overflow: hidden;
  max-height: 0;
  padding-left: 50px;
  padding-top: 0;
  padding-bottom: 0;
  transform-origin: top;
  transform: translateY(-20px);
  opacity: 0;
  transition: max-height 0.8s ease, transform 0.8s ease, opacity 0.8s ease, padding 0.8s ease;
}
.accordion details[open] .acc-content {
  max-height: 3000px; /* groß genug für Inhalt */
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Slideshow/ Gallery
   ========================================================================== */
.slideshow img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  border: none;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
  .topmost_margin {
    margin-top: 150px;
  }
}
@media (max-width: 580px) {
  .topmost_margin {
    margin-top: 100px;
  }
}
a.ani-scale-font:hover, a.ani-scale-font:active {
  font-size: 48px;
}

/* ==========================================================================
   Ein Objekt gleichmäßig hoch und runter bewegen
   ========================================================================== */
.bounceUpDn {
  animation: bounceUpDn 1s infinite ease-in-out;
}

@keyframes bounceUpDn {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ==========================================================================
   Ein Objekt einblenden und von links nach rechts einschieben
   ========================================================================== */
.fade-in-left {
  opacity: 0;
  transform: translateX(-100px);
  animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ==========================================================================
   Ein Objekt einblenden und von unten nach oben einschieben
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(80px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================================
   Ein Objekt einblenden und von oben nach unten einschieben
   ========================================================================== */
.fade-in-down {
  opacity: 0;
  transform: translateY(-80px);
  animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================================
   Ein Objekt einblenden und kurz größer skalieren
   ========================================================================== */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  transform: scale(1);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  40% {
    opacity: 0.3;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.footer {
  padding: 1px 50px 50px 50px;
  background-image: -webkit-gradient(linear, left top, right top, from(#122863), to(#0F2152));
  background-image: -webkit-linear-gradient(45deg, #122863, #0F2152);
  background-image: linear-gradient(90deg, #122863, #0F2152);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.footer .footer-inner {
  margin: 0 auto;
  padding: 0 50px;
  max-width: 1460px;
}
.footer .footer-inner .footer-span {
  width: 100%;
  margin: 50px 0 40px 0;
}
.footer .footer-inner #footer-hegewisch {
  position: relative;
  left: -50px;
  filter: brightness(0) invert(1);
  width: 100%;
  max-width: 200px;
}
.footer .footer-inner .footer-col {
  float: left;
  margin-right: 50px;
}
.footer .footer-inner .footer-col strong {
  color: #fff;
}
.footer .footer-inner .footer-col p {
  color: #ccc;
}
.footer .footer-inner .footer-col a:link, .footer .footer-inner .footer-col a:visited {
  color: #C0CFF6;
  text-decoration: none;
}
.footer .footer-inner .footer-col a:hover, .footer .footer-inner .footer-col a:active {
  color: #fff;
}
.footer .footer-inner .footer-col a.active {
  font-weight: bold;
  color: #fb556b;
}
.footer .footer-inner .footer-col p.footer-links {
  line-height: 1.9em;
}
.footer .footer-inner .footer-logos {
  margin-top: 25px;
  text-align: right;
  float: right;
  position: relative;
  width: auto;
  /*
  div#shkinnung { width: 310px; }
  div#gewaesserschutz { width: 310px; }
  #fachbetrieb-waermepumpe-logo { width: 70px; }
  #kompetenzpartner-logo { position: relative; width: 165px; }
  #systemprofi-logo { position: relative; width: 175px; }
  #shk-innung-logo { position: relative; width: 290px; }
  */
}
.footer .footer-inner .footer-logos div {
  width: 180px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
}
.footer .footer-inner .footer-logos div img {
  max-width: calc(100% - 20px);
  max-height: 150px;
}
.footer .footer-inner .footer-logos div.longLogo {
  width: 290px;
}
.footer .footer-inner .madewith {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5em;
  color: #ccc;
}
.footer .footer-inner .madewith #love {
  height: 28px;
}
.footer .footer-inner .madewith #berlin {
  height: 34px;
}
.footer a.hiddenlink:link, .footer a.hiddenlink:visited {
  color: #ccc !important;
}
.footer strong a.hiddenlink:link, .footer strong a.hiddenlink:visited {
  color: #fff !important;
}
.footer a.hiddenlink:active, .footer a.hiddenlink:hover {
  color: #fff !important;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1250px) {
  .footer-logos {
    float: none !important;
    width: 100%;
    max-width: 1000px !important;
    clear: both;
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 1px 25px 25px 25px;
  }
  .footer .footer-inner {
    padding: 0;
  }
  .footer .footer-inner #footer-hegewisch {
    left: 0;
  }
  /*
  .footer-logos {
  	div {
  		width: 160px;
  		height: 150px;
  	}
  	div#shkinnung { width: 210px !important;}
  	#fachbetrieb-waermepumpe-logo { width: 50px; }
  	#kompetenzpartner-logo { width: 145px; }
  	#systemprofi-logo { width: 155px; }
  	#shk-innung-logo { width: 200px !important; }
  }
  */
}
@media (max-width: 580px) {
  .footer {
    padding: 1px 10px 5px 15px;
  }
  .footer .footer-inner .footer-logos div {
    width: 50%;
    height: 120px;
  }
  .footer .footer-inner .footer-logos div img {
    max-width: calc(100% - 5px);
    max-height: 120px;
  }
  .footer .footer-inner .footer-logos div.longLogo {
    width: 50%;
  }
}
/* ==========================================================================
   Key Visuals
   ========================================================================== */
.key-stellenangebote {
  background-image: url(../img/key/key-m-jugend-im-handwerk.webp);
}

.key-bad {
  background-image: url(../img/key/key-bad-1.webp);
}

.key-energiesparen {
  background-image: url(../img/key/key-m-energie-sparen.webp);
}

.key-rohrreinigung {
  background-image: url(../img/key/key-m-rohrreinigung.webp);
}

.key-kundendienst {
  background-image: url(../img/key/key-m-kundendienst.webp);
}

.key-downloads {
  background-image: url(../img/key/key-m-downloads.webp);
}

.key-foerderberatung {
  background-image: url(../img/key/key-empfang.webp);
}

.key-waermepumpe {
  background-image: url(../img/key/key-vitocal200.webp);
}

.key-heizsysteme {
  background-image: url(../img/key/key-heizsysteme.webp);
}

div.keyVisual {
  position: relative;
}
div.keyVisual img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}
div.keyVisual .keyText {
  position: absolute;
  top: 160px;
  left: 100px;
}

div.keyVisualBg {
  position: relative;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 2560px;
  padding: 0 50px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
div.keyVisualBg .keyInner {
  margin: 0 auto;
  padding: 200px 100px 0 0;
  max-width: 1410px;
}

div.keyVisualBg.rounded {
  border-radius: 25px;
}

div.keyVisualBg.fixed {
  background-attachment: fixed;
  background-size: auto 100%;
  width: 100vw;
}

div.keyVisualBg.small {
  height: 170px;
}

div.keyVisualBg.mid {
  height: 350px;
  background-position: center center;
}

div.keyVisualBg.large {
  height: 650px;
}

.key-top img {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

div.legend {
  text-align: right;
  font-size: 13px;
  padding: 3px 20px;
}

div.legend.left {
  text-align: left;
}

/* ==========================================================================
   Bilder allgemein
   ========================================================================== */
.image-small {
  max-width: 175px;
}

.image-medium {
  max-width: 300px;
}

.image-height-medium {
  max-width: 300px;
}

.no-border-radius {
  border-radius: 0 !important;
}

div.picture {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 25px;
}
div.picture img {
  width: 100%;
  border-radius: 25px;
}

div.picture.vertical {
  width: auto;
}
div.picture.vertical img {
  width: auto !important;
}

div.picture.blog {
  max-height: 300px;
  margin-bottom: 15px;
}

div.picture.white-box {
  padding: 25px;
  text-align: center;
  background: #fff;
}
div.picture.white-box img {
  width: auto !important;
  border-radius: 0;
}

/* ==========================================================================
   Galerie
   ========================================================================== */
.gallery .logo:hover {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
  position: relative;
  transform: translate(-1px, -3px);
  -moz-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
  div.keyVisualBg {
    dispaly: none;
    height: 200px;
    background-size: cover;
  }
}
@media (max-width: 1160px) {
  div.keyVisualBg {
    padding-left: 25px;
  }
  div.keyVisualBg {
    height: 350px;
  }
}
@media (max-width: 768px) {
  div.keyVisualBg.small {
    height: 140px;
  }
  div.keyVisualBg,
  div.keyVisualBg.mid {
    height: 200px;
  }
  div.keyVisualBg.large {
    height: 350px;
  }
}
@media (max-width: 580px) {
  div.keyVisualBg {
    padding-left: 10px;
  }
  div.keyVisualBg.small {
    height: 120px;
  }
  div.keyVisualBg,
  div.keyVisualBg.mid {
    height: 180px;
  }
  div.keyVisualBg.large {
    height: 350px;
  }
}
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 100%;
}

body {
  margin: 0;
  color: #000;
  font-family: mainFont, system-ui, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4em;
  hyphens: auto;
  -webkit-hyphens: auto;
  -webkit-locale: "de";
  -webkit-hyphenate-character: "-";
  -moz-hyphens: auto;
}

section {
  display: block;
  margin: 0;
  padding: 0;
}

body.wallpaper-top {
  background-image: url("../img/sys/wp-gitter.svg"), url("../img/sys/wp-gitter.svg"), linear-gradient(90deg, #e3f1fb, #bedef7);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 42vw 10vh, -60vw 300vh, 0 0;
  background-size: 120vw auto, 120vw auto, cover; /* Verlauf: gesamte Fläche */
}

body.wallpaper-margin {
  background-image: url("../img/sys/wp-gitter.svg"), url("../img/sys/wp-gitter.svg"), linear-gradient(90deg, #e3f1fb, #bedef7);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 42vw 30vh, -60vw 190vh, 0 0;
  background-size: 120vw auto, 120vw auto, cover; /* Verlauf: gesamte Fläche */
}

body.wallpaper-simple {
  background-position: 0 0;
  background-image: linear-gradient(90deg, #e3f1fb, #bedef7);
  background-repeat: no-repeat;
}

body.wallpaper-247 {
  background-position: 0 0;
  background-image: linear-gradient(90deg, #e3f1fb, #bedef7);
  background-repeat: no-repeat;
  background-image: url("../img/sys/24-7.svg"), linear-gradient(90deg, #e3f1fb, #bedef7);
  background-position: 18vw -20vh, 0 0;
  background-size: 90vw auto, cover;
}

.section-margin-bottom {
  margin-bottom: 100px;
}

.section-margin-bottom-m {
  margin-bottom: 75px;
}

.section-margin-bottom-l {
  margin-bottom: 50px;
}

.section-margin-bottom-xl {
  margin-bottom: 100px;
}

.wrapper {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 50px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.wrapper.max {
  max-width: 2560px;
  padding: 0;
}

.indent {
  padding: 0 50px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
section.hero {
  max-width: 2560px;
  margin: 0 auto;
  height: calc(100vh + 15px);
  min-height: 700px;
  background-image: url("../img/key/vaillant-waermepumpe-xl.webp");
  background-repeat: none;
  background-size: cover;
  background-position: center bottom;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 110px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-bottom: 100px;
}

.hero-teaser {
  padding: 50px 50px 0 50px;
}
.hero-teaser .hero-subline {
  margin-top: 0.3em;
  color: #1B3074;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 50px;
}
.hero-awards {
  margin-top: calc(10px + 7vh);
  display: flex;
  align-items: flex-start;
  gap: 35px;
}
.hero-awards img#hero-fbwp {
  width: 64px;
  position: relative;
  top: -7px;
}
.hero-awards img#hero-vkp {
  width: 120px;
}
.hero-awards img#hero-vsp {
  width: 140px;
}

#scrollhint {
  position: absolute;
  bottom: 15px;
  font-size: 16px;
  background-color: rgba(187, 187, 187, 0.5333333333);
  color: #1B3074;
  border: 2px solid #1B3074;
  outline: 1px solid rgba(255, 255, 255, 0.5333333333);
  border-radius: 100px;
  cursor: pointer;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* ==========================================================================
   GoToTop
   ========================================================================== */
#scrollTopBtn {
  position: fixed;
  visibility: hidden;
  bottom: 50px;
  right: 50px;
  font-size: 16px;
  background-color: #1B3074;
  color: white;
  outline: 2px solid #C0CFF6;
  border-radius: 100px;
  cursor: pointer;
  opacity: 0;
  z-index: 1000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  -moz-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  -webkit-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

#scrollTopBtn:hover {
  background-color: #E40521;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   FancyBox Overwrites
   ========================================================================== */
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.6666666667) !important;
}

/* ==========================================================================
   21grad Blog
   ========================================================================== */
div.vai21grad_content img.alignright {
  float: right;
  margin: 0 0 15px 15px;
}
div.vai21grad_content img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}
div.vai21grad_content .wp-caption.alignright {
  float: right;
  margin: 0 0 25px 35px;
}
div.vai21grad_content .wp-caption.alignleft {
  float: left;
  margin: 0 35px 25px 0;
}
div.vai21grad_content img {
  border-radius: 25px !important;
  overflow: hidden;
}
div.vai21grad_content h1, div.vai21grad_content h2, div.vai21grad_content h3 {
  margin: 2em 0 1em 0;
}
div.vai21grad_content h2 {
  font-size: 23px;
}
div.vai21grad_content h3 {
  font-size: 20px;
}
div.vai21grad_content ul li {
  margin-bottom: 0.5em;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 580px) {
  .hero-awards,
  #scrollhint,
  #scrollTopBtn {
    display: none;
  }
  .wrapper {
    padding: 0 10px;
  }
  .section-margin-bottom {
    margin-bottom: 50px;
  }
  .section-margin-bottom-m {
    margin-bottom: 25px;
  }
  .hero-teaser {
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-teaser .hero-subline {
    margin-bottom: 25px;
  }
}
@media (max-width: 580px) and (orientation: portrait) {
  section.hero {
    background-image: url("../img/key/vaillant-waermepumpe-sp.webp");
  }
  body {
    background-position: 20vw 60vh, -80vw 640vh, 0 0;
    background-size: 160vw auto, 160vw auto, cover; /* Verlauf: gesamte Fläche */
  }
}
@media (max-height: 580px) and (orientation: landscape) {
  .hero-teaser .hero-subline {
    max-width: 480px;
  }
  section.hero {
    background-image: url("../img/key/vaillant-waermepumpe-sl.webp");
  }
  #scrollhint, #scrollTopBtn {
    display: none;
  }
  body {
    background-position: 49vw 60vh, -49vw 280vh, 0 0;
    background-size: 100vw auto, 100vw auto, cover; /* Verlauf: gesamte Fläche */
  }
}
@media (max-width: 768px) {
  #headline-faq {
    margin-bottom: 0;
  }
  .slick-prev, .slick-next {
    display: none;
  }
}
@media (min-width: 581px) and (max-width: 1159px) {
  .wrapper {
    padding: 0 25px;
  }
  .hero-teaser {
    padding-left: 25px;
    padding-right: 25px;
  }
  #scrollTopBtn {
    right: 25px;
  }
  .section-margin-bottom {
    margin-bottom: 50px;
  }
  body {
    background-position: 49vw 0, -49vw 280vh, 0 0;
    background-size: 100vw auto, 100vw auto, cover; /* Verlauf: gesamte Fläche */
  }
}
@media (min-width: 1160px) {
  .wrapper {
    padding: 0 50px;
  }
  #scrollTopBtn {
    right: 35px;
  }
  body {
    background-position: 49vw 60vh, -49vw 280vh, 0 0;
    background-size: 100vw auto, 100vw auto, cover; /* Verlauf: gesamte Fläche */
  }
}
@media (min-width: 1460px) {
  #scrollTopBtn {
    right: 50px;
  }
  body {
    background-position: 49vw 0, -49vw 280vh, 0 0;
    background-size: 100vw auto, 100vw auto, cover; /* Verlauf: gesamte Fläche */
  }
}
.specfield {
  display: none;
}

.required {
  color: #E40521;
}

label {
  color: #000;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
textarea {
  color: #000;
  font-size: 16px;
  font-family: mainFont, system-ui, Arial, sans-serif;
  background: #fff;
  border: 1px solid #1B3074;
  padding: 10px;
  border-radius: 5px;
}

input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: #E40521 !important;
}

textarea.textarea-large {
  width: 100%;
  height: 15em;
}

.formFields {
  margin-bottom: 10px;
}
.formFields label {
  display: block;
}
.formFields input[type=text],
.formFields input[type=number],
.formFields input[type=email],
.formFields input[type=tel] {
  width: 100%;
  max-width: 450px;
}

/* ==========================================================================
   Meldungen
   ========================================================================== */
.alert {
  background-color: #fff;
  padding: 35px 50px;
  border-radius: 25px;
  margin: 25px 0;
  border: 5px solid #C0CFF6;
  -moz-box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.3);
}
.alert h1, .alert h2 {
  font-size: 26px;
  margin: 0 0 0.5em 0 !important;
}

.alert.error {
  background-color: #E40521;
  color: #fff;
  border-color: #b70015;
}

.alert.warning {
  background-color: #fff;
  border-color: #FF6C1D;
}

/* ==========================================================================
   Abschnitte hervorheben
   ========================================================================== */
.section-em {
  margin-left: 50px;
  position: relative;
}

.section-em:before {
  position: absolute;
  left: -50px;
  top: 28px;
  display: inline-block;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/sys/finger-right.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.badge-xl {
  font-size: 26px;
  letter-spacing: -1px;
  color: #fff;
  display: flex;
  padding: 10px;
  float: left;
  width: 50px;
  height: 50px;
  margin: -10px 15px 10px 0;
  justify-content: center;
  align-items: center;
  background-color: #2551CB;
  border-radius: 200px;
}

/**
 * Default-Styles fuer die Vaillant Produktpalette
 * v3.0 (04/2021)
 */
h2.prodSubCatHeadline {
  font-size: 48px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 20px !important;
}

#prodList h1.prodName {
  font-size: 2.166em;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0.5em;
  padding: 0;
}

#prodList #productimage {
  float: left;
  width: 250px;
  height: 400px;
  position: absolute;
  top: 15px;
  text-align: center;
  left: 0;
}

#prodList #productdescription {
  float: left;
  width: 500px;
  padding-left: 250px;
}

#prodList p,
#prodList .maintext {
  margin: 0 0 1em 0;
}

#prodList nobr {
  white-space: normal;
}

a.catImageLink,
a.catImageLink:link,
a.catImageLink:visited,
a.catImageLink:hover,
a.catImageLink:active {
  text-decoration: none;
  color: #000;
}

h3.product-card-title {
  font-size: 20px;
  margin: 0.5em 0 0 0;
}

.prodListItem img {
  width: 100%;
}
.prodListItem p {
  line-height: 1.3em;
  margin: 0;
}

/****************************************************
	Submenu
*****************************************************/
ul.prodSubmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.prodSubmenu h2 {
  margin: 0;
}

ul.prodSubmenu li {
  margin: 0 0 0.2rem 0;
}

ul.prodSubmenu a.active {
  font-weight: bold;
  text-decoration: none;
}

a.prodSubmenuLink {
  text-decoration: none;
  margin: 0;
}

/****************************************************
	Produkte
*****************************************************/
#prodDetail h1 {
  padding-left: 250px;
}

#prodCategorieList {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
}

#prodCategorieList li {
  display: inline-block;
  vertical-align: top;
  margin: 0 25px 40px 0;
  width: 205px;
}

#prodCategorieList li.firstItem {
  margin-left: 0px;
}

#prodCategorieList li p {
  margin: 0;
}

#prodCategorieList .imageBox {
  width: 203px;
  height: 68px;
  overflow: hidden;
  border: solid 1px #DDDDDD;
  background-position: center;
}

#prodCategorieList li h3 {
  position: relative;
  padding: 0.5em 5px;
  line-height: 1em;
  background: #fff;
  display: inline-block;
  top: -1.5em;
  left: -5px;
  margin: 0;
}

#prodCategorieList .textBox {
  margin-top: -1.5em;
}

#prodCategorieList .moreLinkBox {
  padding-top: 5px;
}

.prodList {
  padding: 0;
}

a.prodNameLink {
  text-decoration: none;
}

.prodSubCategorie h2 {
  padding: 0;
  color: #666666;
  font-size: 1.166em;
  line-height: 30px;
  margin: 0;
}

.prodSubCategorie h2.openHide {
  cursor: pointer;
  padding-left: 25px;
  background: transparent url(../images/openHideArrows.png) no-repeat 10px 0;
}

.prodSubCategorie h2.openHide.open {
  background-position: 10px -100px;
}

.prodSubCategorie h3 {
  font-size: 1em;
  font-weight: bold;
  margin: 0;
}

.prodSubCategorie p {
  margin: 0;
}

.subCategorieTeaserBox {
  overflow: auto;
  background: #565E71;
  color: #fff;
  padding: 2px 15px;
}

.subCategorieTeaserBox img {
  float: left;
  margin-right: 15px;
}

.subCategorieTeaserBox p {
  padding: 15px;
}

.prodSubCategorie ul {
  margin: 0;
  list-style: none;
}

.prodSubCategorie ul li {
  padding: 10px 15px 10px 67px;
  background: #fff;
  margin: 1px 0;
}

.prodSubCategorie {
  width: 100%;
}

@media (max-width: 768px) {
  h3.product-card-title {
    font-size: 18px;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  max-height: 940px;
  border-radius: 25px;
  overflow: hidden;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../vendor/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/*
@if $slick-font-family == "slick" {
    @font-face {
        font-family: "slick";
        src: slick-font-url("slick.eot");
        src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
        font-weight: normal;
        font-style: normal;
    }
}
*/
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  top: calc(50% - 10px);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 1000;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 10px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "◄";
  text-shadow: 0 0 5px #000;
  font-size: 35px;
}
[dir=rtl] .slick-prev:before {
  content: "►";
}

.reviews .slick-prev {
  left: -43px;
}
.reviews .slick-prev:before {
  color: #1B3074;
  text-shadow: none;
}

.reviews .slick-next {
  right: -30px;
}
.reviews .slick-next:before {
  color: #1B3074;
  text-shadow: none;
}

.slick-next {
  right: 25px;
}
[dir=rtl] .slick-next {
  left: -27px;
  right: auto;
}
.slick-next:before {
  content: "►";
  text-shadow: 0 0 5px #000;
  font-size: 35px;
}
[dir=rtl] .slick-next:before {
  content: "◄";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 200;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 35px;
  line-height: 20px;
  text-align: center;
  color: #A8AEBD;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #1B3074;
  opacity: 1;
}

@media (max-width: 1160px) {
  .reviews .slick-prev {
    left: -15px;
  }
  .reviews .slick-prev:before {
    color: #fff;
    text-shadow: 0 0 5px #444;
  }
  .reviews .slick-next {
    right: 0;
  }
  .reviews .slick-next:before {
    color: #fff;
    text-shadow: 0 0 5px #444;
  }
}
@media (max-width: 639px) {
  .reviews .slick-prev, .reviews .slick-next {
    display: none !important;
  }
}
