@charset "UTF-8";
/* ubuntu-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/ubuntu-v20-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ubuntu-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ubuntu-v20-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ubuntu-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Ubuntu";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/ubuntu-v20-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ubuntu-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ubuntu-v20-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* MASSE VARIABLEN */
/* FONT VARIABLEN */
pre code {
  white-space: pre-wrap;
  display: block;
}
/* ECKEN UNTEN */
.eckenunten {
  border-radius: 0 0 30px 30px;
}
.eckenunten-gold {
  box-shadow: 0 30px #C8AB7C;
}
.eckenunten-weiss {
  box-shadow: 0 30px #fff;
}
.eckenunten-beton {
  box-shadow: 0 30px #6C757D;
}
.eckenunten-lila {
  box-shadow: 0 30px #3E324E;
}
.eckenunten-grau {
  box-shadow: 0 30px #D1CCC7;
}
.eckenunten-flieder {
  box-shadow: 0 30px #F1EDED;
}
.eckenunten-lehm {
  box-shadow: 0 30px #AAA498;
}
.eckenunten-dunkel {
  box-shadow: 0 30px #212529;
}
.eckenunten-hell {
  box-shadow: 0 30px #F8F9FA;
}
/* HINTERGRUNDFARBEN UND -VERLÄUFE */
.beton-bg {
  background-color: #6C757D;
  color: #fff;
}
.lila-bg {
  background-color: #3E324E;
  color: #fff;
}
.lehm-bg {
  background-color: #AAA498;
  color: #fff;
}
.flieder-bg {
  background-color: #F1EDED;
}
.gold-bg {
  background-color: #C8AB7C;
  color: #fff;
}
.grau-bg {
  background-color: #D1CCC7;
}
.weiss-bg {
  background-color: #fff;
}
.trans-bg {
  background-color: rgba(255, 255, 255, 0.3);
}
/* FARBSYSTEM */
.palette {
  height: 500px;
}
.paletti:first-child {
  border-radius: 15px 15px 0 0;
}
.paletti:last-child {
  border-radius: 0 0 15px 15px;
}
.paletto:first-child {
  border-radius: 15px 0 0 15px;
}
.paletto:last-child {
  border-radius: 0 15px 15px 0;
}
.h-60 {
  height: 60% !important;
}
.h-30 {
  height: 30% !important;
}
.h-10 {
  height: 10% !important;
}
.ball {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: 0 auto;
}
/* BUTTON FIXED */
.btn-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.btn-fixed:hover, .btn-fixed:visited {
  background-color: #D1CCC7;
}
/* SOCIAL MEDIA FIXED */
.sm-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  border-radius: 10px;
}
.sm-fixed .btn {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
/* SLICK.JS */
.slick-list {
  margin: 0 -27px;
}
.slick-slide {
  margin: 0 27px;
}
/* SPONSOREN */
.semitransparent {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
/* VERTICAL JUSTIFY */
.spacebetween {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spacearound {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
/* BI ICONS ROUNDED CIRCLE */
.icon-flex, .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-wrapper {
  border-radius: 50%;
  overflow: hidden;
  font-size: 2.5rem;
  width: 5rem;
  height: 5rem;
}
.icon-wrapper .bi {
  color: #AAA498;
}
/* GENERELL */
body {
  font-family: "Ubuntu", sans-serif;
  color: #3E324E;
  background-color: #D1CCC7;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  display: none;
}
.rounded {
  border-radius: 10px;
}
.pagination > li > a, .pagination > li > span, .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #3E324E;
}
.back-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: #938b7c;
  color: #fff;
}
.thumbnail {
  border: 0;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px dotted #AAA498;
  clear: both;
}
a {
  color: #AAA498;
}
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}
#scrollanim {
  mix-blend-mode: multiply;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  bottom: 10pt;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.parallax-window {
  min-height: 400px;
  background: transparent;
}
.alert {
  margin-bottom: 0;
}
.hand {
  cursor: zoom-in;
}
.gray {
  filter: grayscale(100%);
  opacity: 1;
}
.back .bi {
  font-size: 2rem;
  color: #F1EDED;
}
.badge {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.badge a {
  color: #fff;
  text-decoration: none;
}
.textschatten {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.stars .bi {
  padding-left: 2px;
  padding-right: 2px;
}
.hilfe {
  font-size: 1.4rem;
  color: cornflowerblue;
}
.table tr td, .table tr th {
  background-color: rgba(255, 255, 255, 0) !important;
  border-color: #000;
}
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ecken-oben {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.hero-social {
  font-size: 2rem;
  margin-right: 1opx;
}
/* BILDER */
.img-dark {
  filter: brightness(80%);
}
.img-cover {
  object-fit: cover;
  object-position: center;
}
.aspect {
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.aspectoben {
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.einszueins {
  padding-bottom: 100%;
}
.goldenesrechteck {
  padding-bottom: 61.8%;
}
.dreizuzwei {
  padding-top: 66.66%;
}
.vierzudrei {
  padding-top: 75%;
}
.sechzehnzuneun {
  padding-top: 56.25%;
}
.einundzwanzigzuneun {
  padding-top: 42.85%;
}
.zweiunddreissigzuneun {
  padding-top: 28.12%;
}
.square {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
}
.kreis {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  position: relative;
}
.kreis span {
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.viereck {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  background-color: #F1EDED;
}
.viereck span {
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.text-background {
  font-size: 3vw;
  display: inline;
  color: #fff;
  line-height: 160%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-weight: 700;
  padding: 0 12px 6px;
}
/* NACHOBEN VERSETZEN */
.nachoben30 {
  margin-top: -30px !important;
}
.nachoben60 {
  margin-top: -60px !important;
}
.nachoben90 {
  margin-top: -90px !important;
}
.nachoben120 {
  margin-top: -120px !important;
}
.nachoben150 {
  margin-top: -150px !important;
}
.nachoben180 {
  margin-top: -180px !important;
}
.nachoben210 {
  margin-top: -210px !important;
}
.nachoben240 {
  margin-top: -240px !important;
}
.nachoben270 {
  margin-top: -270px !important;
}
/* HERO*/
.oldschool {
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  position: relative;
}
.oldschool h1 {
  font-size: 4rem;
}
.oldschool-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.abdunklung-2 {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}
.abdunklung-3 {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}
.abdunklung-4 {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.abdunklung-5 {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.abdunklung-6 {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
.aufhellung-2 {
  background-color: rgba(255, 255, 255, 0.2);
  color: #AAA498;
}
.aufhellung-3 {
  background-color: rgba(255, 255, 255, 0.3);
  color: #AAA498;
}
.aufhellung-4 {
  background-color: rgba(255, 255, 255, 0.4);
  color: #AAA498;
}
.aufhellung-5 {
  background-color: rgba(255, 255, 255, 0.5);
  color: #AAA498;
}
.aufhellung-6 {
  background-color: rgba(255, 255, 255, 0.6);
  color: #AAA498;
}
@media (max-width: 768px) {
  .oldschool {
    min-height: 40vh;
  }
  .oldschool h1 {
    font-size: 2rem;
  }
}
/* MASTHEAD*/
.masthead {
  background-size: cover;
  background-position: center;
  position: relative;
}
.mastheader {
  position: relative;
}
.color-overlay {
  position: relative;
}
/* CAROUSEL */
.carousel-caption {
  left: 0;
  max-width: 100%;
  width: 100%;
}
/* TYPE */
h1 {
  font-size: 3em;
  margin-bottom: 30px;
  font-weight: 500;
}
h2 {
  font-size: 1.2em;
  line-height: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 300;
}
h3 {
  font-size: 1.4em;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
h4 {
  font-size: 2em;
  line-height: 1.5em;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
h5 {
  font-size: 1.6em;
  letter-spacing: 0.1em;
  font-weight: 700;
}
p {
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 400;
}
/* TEXT SCHATTEN */
.text-shadow {
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}
/* NAVBAR */
.navbar {
  padding-top: 30px;
  padding-bottom: 30px;
  transition: all 0.5s;
  border-bottom: 1px solid #C8AB7C;
}
.navbar-nav .nav-link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.navbar.compressed {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #3E324E;
  border-bottom: 0;
}
.dropdown-menu {
  background-color: #3E324E;
}
/* MEGA NAVBAR */
.navbar .megamenu {
  padding: 1rem;
  border: 0;
  border-radius: 0;
}
@media (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
}
/* NAV-PILLS */
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #3E324E;
}
.nav-pills .nav-link {
  background-color: #3E324E;
}
/* BEREICHE */
.social {
  background-color: #D1CCC7;
  padding-top: 30px;
  padding-bottom: 30px;
}
.social .bi {
  color: #F1EDED;
  font-size: 2rem;
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.zitat {
  background-color: #3E324E;
  padding: 30px 0;
}
.spruchdesmonats {
  background-color: #3E324E;
  padding: 30px 0;
}
.viereroben .bi {
  color: #AAA498;
  font-size: 1.5rem;
}
.vierer {
  background-color: #AAA498;
  padding: 60px 0;
}
.vierer h3, .vierer p {
  color: #fff;
}
.viererunten .bi {
  color: rgba(255, 255, 255, 0.3);
  font-size: 2rem;
}
.dreier {
  background-color: #AAA498;
  padding: 90px 0;
}
.dreier h3 {
  color: #F1EDED;
  text-decoration: none;
}
.dreier p, .dreier a {
  color: #fff;
  text-decoration: none;
}
.testimonial {
  background-color: #AAA498;
  padding: 60px 0;
}
.testimonial .card {
  background-color: #fcfbfb;
}
.testimonial .card-header {
  background-color: #dbd0d0;
}
.testimonial .card-footer {
  background-color: #e6dfdf;
}
.testimonial h5, .testimonial p, .testimonial h4 {
  color: #fff;
}
.testimonial h5 {
  padding-bottom: 15px;
}
.testimonial .bi {
  padding-right: 5px;
  color: #F1EDED;
}
.testimonial strong, .testimonial small {
  color: #F1EDED;
}
.testimonial em {
  color: white;
}
footer {
  background-color: #F1EDED;
  padding: 60px 0;
}
.topthemen {
  background-color: #F1EDED;
  padding: 60px 0;
}
.leistungen .bi {
  color: #F1EDED;
  font-size: 3rem;
  margin-right: 0.3em;
}
/* BUTTONS */
.btn {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  font-weight: 400;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn-link {
  color: #AAA498;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-link:hover {
  color: #F1EDED;
}
.active.btn-link {
  color: #fff !important;
  font-weight: 700;
}
.btn-button {
  color: #fff;
  background-color: #6C757D;
  border-color: #6C757D;
}
.btn-button:hover {
  color: #fff;
  background-color: #AAA498;
  border-color: #AAA498;
}
.btn-lila {
  background-color: #3E324E;
  color: #fff;
}
.btn-lehm {
  background-color: #AAA498;
  color: #fff;
}
.btn-flieder {
  background-color: #F1EDED;
}
.btn-gold {
  background-color: #C8AB7C;
  color: #fff;
}
.btn-grau {
  background-color: #D1CCC7;
}
.btn-weiss {
  background-color: #fff;
}
.btn-outline-lila {
  border-color: #3E324E;
  color: #3E324E;
}
.btn-outline-lehm {
  border-color: #AAA498;
  color: #AAA498;
}
.btn-outline-flieder {
  border-color: #F1EDED;
  color: #F1EDED;
}
.btn-outline-gold {
  border-color: #C8AB7C;
  color: #C8AB7C;
}
.btn-outline-grau {
  border-color: #D1CCC7;
  color: #D1CCC7;
}
.btn-outline-weiss {
  border-color: #fff;
  color: #fff;
}
/* CARDS */
.card {
  border-radius: 10px;
}
.card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.card-header {
  border-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card-header:first-child {
  border-radius: 10px 10px 0 0;
}
.card-footer {
  border-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card-footer:last-child {
  border-radius: 0 0 10px 10px;
}
.card-blog {
  background-color: #fff;
}
.border-secondary {
  border-color: #DFE2E6 !important;
}
.vr {
  width: 1px;
  min-height: 1.7em;
  opacity: 1;
}
.card-counter .bi {
  font-size: 2.5rem;
  color: #F1EDED;
}
.card-body .bi {
  font-size: 2rem;
}
.card-img-overlay:hover {
  display: block;
  background: rgba(0, 0, 0, 0.4);
  transition: background 1s ease;
}
.card-img-overlay .btn {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card-img-overlay:hover .btn {
  opacity: 1;
}
.card-img-overlay .bi {
  font-size: 2.5rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card-img-overlay:hover .bi {
  opacity: 1;
}
/* ACCORDION */
.accordion-item {
  background-color: #fff !important;
  border: 0;
  color: #AAA498;
  border-radius: 10px !important;
}
.accordion-button {
  background-color: #fff;
  font-size: 1.2em;
  color: #AAA498;
}
.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #AAA498;
}
/* BILDER FÜR WYSIWYG */
.img-responsive-links {
  float: left !important;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  width: auto;
  border-radius: 6px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.img-responsive-rechts {
  float: right !important;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  width: auto;
  border-radius: 6px;
  margin-left: 15px;
  margin-bottom: 15px;
}
.img-50-links {
  float: left !important;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 50%;
  height: auto;
  width: auto;
  border-radius: 6px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.img-50-rechts {
  float: right !important;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 50%;
  height: auto;
  width: auto;
  border-radius: 6px;
  margin-left: 15px;
  margin-bottom: 15px;
}
.img-33-links {
  float: left !important;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 33%;
  height: auto;
  width: auto;
  border-radius: 6px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.img-33-rechts {
  float: right !important;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 33%;
  height: auto;
  width: auto;
  border-radius: 6px;
  margin-left: 15px;
  margin-bottom: 15px;
}
.img-25-links {
  float: left !important;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 25%;
  height: auto;
  width: auto;
  border-radius: 6px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.img-25-rechts {
  float: right !important;
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 25%;
  height: auto;
  width: auto;
  border-radius: 6px;
  margin-left: 15px;
  margin-bottom: 15px;
}
/* TIMELINE */
.timeline {
  border-left: 1px dashed #F1EDED;
  position: relative;
  list-style: none;
}
.timeline .timeline-item {
  position: relative;
}
.timeline .timeline-item:after {
  position: absolute;
  display: block;
  top: 4px;
}
.timeline .timeline-item:after {
  background-color: #AAA498;
  left: -38px;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
}
/* STOCK TICKER */
.stock-ticker {
  font-size: 15px;
  padding-block: 8px;
  border-block: 1px solid white;
  color: white;
  overflow: hidden;
  user-select: none;
  --gap: 20px;
  display: flex;
  gap: var(--gap);
}
.stock-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  animation: scroll 50s linear infinite;
  margin-top: 0;
  margin-bottom: 0;
}
.stock-ticker:hover ul {
  animation-play-state: paused;
}
@keyframes scroll {
  to {
    transform: translateX(calc(-100% - (5px)));
  }
}
.stock-ticker ul:first-child {
  /* background-color: yellow; */
}
.stock-ticker ul:last-child {
  /* background-color: pink; */
}
.stock-ticker .company, .stock-ticker .price {
  font-weight: bold;
}
.stock-ticker .price {
  margin-inline: 4px;
}
.stock-ticker .plus::before {
  content: "↑";
}
.stock-ticker .minus::before {
  content: "↓";
}
.stock-ticker .plus .change, .stock-ticker .plus::before {
  color: #089981;
}
.stock-ticker .minus .change, .stock-ticker .minus::before {
  color: #f23645;
}
