@charset "UTF-8";
.nav-tabs .nav-link {
  background: transparent !important;
  border-color: transparent !important;
  text-transform: uppercase;
  color: gray;
  font-weight: 300;
}
.nav-tabs .nav-link.active {
  color: #333333;
}

.tab-content {
  position: relative;
}
.tab-content .tab-pane {
  transition: all 0.2s;
  width: 100%;
  display: block;
}
.tab-content .tab-pane:not(.active) {
  visibility: hidden;
  position: absolute;
  top: 0;
  animation: fadeOutBottom 0.25s ease forwards;
  -webkit-animation: fadeOutBottom 0.25s ease forwards;
}
.tab-content .tab-pane.active {
  top: 0;
  position: relative;
  z-index: 90;
  animation: fadeInTop 0.5s ease forwards;
  -webkit-animation: fadeInTop 0.5s ease forwards;
}

@keyframes fadeOutBottom {
  from {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(0, 10%) scale(0.8);
    -webkit-font-smoothing: antialiased;
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translate(0, 10%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-font-smoothing: antialiased;
  }
}
.image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.equal {
  position: relative;
}
.equal:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.equal > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.equal-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
}
.equal-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 0;
}

.boxed {
  padding: 0;
}
.lavalamp__object {
  position: absolute;
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: #ff0000;
}

.circle-batch {
  display: block;
  position: absolute;
  right: 10%;
  top: 10%;
  width: 8rem;
  height: 8rem;
  background: #ff0000;
  border: 4px solid #ffffff;
  border-radius: 50% 50%;
  transform: rotate(-15deg);
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  line-height: 100%;
  color: #ffffff;
}
.circle-batch span {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.circle-batch.large {
  right: auto;
  left: -10%;
  top: -10%;
  width: 12rem;
  height: 12rem;
  font-size: 0.75rem;
  font-weight: 300;
  text-align: left;
}

.circle-batch-2 {
  display: block;
  position: absolute;
  left: -33%;
  top: 0;
  width: 14rem;
  height: 14rem;
  background: #ff0000;
  border: 4px solid #ffffff;
  border-radius: 50% 50%;
  transform: rotate(-15deg);
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  line-height: 120%;
  color: #ffffff;
}
.circle-batch-2 span {
  display: block;
  padding: 3rem 2rem;
}

.btn:not(.dropdown-toggle):not(.btn-link) {
  padding: 12px 36px !important;
}
@media (min-width: 1440px) {
  .btn:not(.dropdown-toggle):not(.btn-link) {
    padding: 18px 48px !important;
  }
}

h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.blury {
  position: relative;
  z-index: 2;
}
.blury:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Volle Breite */
  height: 100%;
  /* Volle Höhe */
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  /* Stärke des Blur-Effekts */
  z-index: -1;
  /* Das Before-Element wird hinter den Text gelegt */
  border-radius: 10px;
  /* Abgerundete Ecken, um einen weicheren Übergang zu erzeugen */
}
