@charset "UTF-8";
:root {
  --primary-color: 1, 44, 53;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  font-size: 16px;
  background-color: #012c35;
  color: #fff;
  font-family: "kleine_sans";
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "kleine_titel";
  font-weight: 700;
  line-height: 1;
}

.breaker {
  display: block;
}
@media (max-width: 768px) {
  .breaker {
    display: none;
  }
}

.scrolltop-box {
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
  padding-bottom: 35px;
}
.scrolltop-box .scrolltotop-outer {
  position: relative;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  z-index: 1000;
  display: block;
  background: rgb(255, 255, 255);
  transform: rotate(45deg);
  border-radius: 5px;
  transition: all 300ms ease;
  color: #fff;
  text-decoration: none;
  opacity: 1;
}
.scrolltop-box .scrolltotop-outer span {
  display: block;
  width: 13px;
  height: 13px;
  position: relative;
  left: 15px;
  top: 15px;
  text-align: center;
  border-top: 3px solid #012c35;
  border-left: 3px solid #012c35;
  border-top-left-radius: 0px;
  transition: all 300ms ease;
}
.scrolltop-box .scrolltotop-outer:hover {
  background: rgba(255, 255, 255, 0.4);
}
.scrolltop-box .scrolltotop-outer:hover span {
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.top-section {
  height: 100vh;
  width: 100%;
  position: relative;
  display: none;
}

#snowCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Kein Einfluss auf Klicks */
  z-index: 1;
  opacity: 0.7;
}

section.vid {
  position: relative;
  height: 200vh; /* größer als 100vh für Scroll-Effekt */
  background: #000;
}
@media (max-width: 568px) {
  section.vid {
    display: none;
  }
}
section.vid .gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(1, 44, 53, 0) 0%, rgb(1, 44, 53) 100%);
  z-index: 1000;
}
@media (max-width: 768px) {
  section.vid .gradient-overlay {
    display: none;
  }
}

section.vid video {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

section.vid-sm {
  display: none;
}
@media (max-width: 568px) {
  section.vid-sm {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
  }
}
section.vid-sm .overlay-info {
  position: absolute;
  bottom: 75px;
  padding: 15px 10px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 70%;
  border-radius: 3rem;
  background-color: rgba(var(--primary-color), 0.9);
}
section.vid-sm .overlay-info a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
section.vid-sm .overlay-info p {
  display: block;
  text-align: center;
  margin-bottom: 0;
}
section.vid-sm .overlay-info span {
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  animation: 2s ease-in-out infinite arrowsm;
}
section.vid-sm .overlay-info span:after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  position: relative;
  top: 14px;
  margin: 0 auto;
  transform: rotate(225deg);
  text-align: center;
  border-top: 3px solid #012c35;
  border-left: 3px solid #012c35;
  border-top-left-radius: 0px;
  transition: all 300ms ease;
}
@keyframes arrowsm {
  0% {
    top: -30px;
  }
  50% {
    top: -25px;
  }
  100% {
    top: -30px;
  }
}

section.vid-sm video {
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.counter-outer-box {
  height: 1200px;
  position: relative;
  background-color: rgba(var(--primary-color), 0.9);
  z-index: 20;
}
@media (max-width: 768px) {
  .counter-outer-box {
    height: auto !important;
  }
}
.counter-outer-box .inner-box {
  position: relative;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .counter-outer-box .inner-box {
    height: auto;
    padding: 100px 0;
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .counter-outer-box .inner-box {
    top: 0;
    transform: translateY(0);
  }
}
.counter-outer-box .inner-box h1 {
  margin-bottom: 25px;
  font-weight: 700;
}
.counter-outer-box .inner-box h1 strong {
  display: block;
  font-family: "kleine_sans";
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.counter-outer-box .inner-box h1 strong:after {
  content: "";
  display: block;
  margin: 10px auto;
  width: 1px;
  height: 50px;
  background: #fff;
}
.counter-outer-box .inner-box h1 span {
  display: block;
  font-size: 150%;
}
.counter-outer-box .inner-box p {
  font-size: 120%;
}
@media (max-width: 768px) {
  .counter-outer-box .inner-box p {
    font-size: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 568px) {
  .counter-outer-box .inner-box p {
    max-width: 86%;
  }
}
.counter-outer-box .count-box {
  text-align: center;
  justify-content: center;
  font-size: 500%;
  font-weight: 900 !important;
  border-top: 1px solid #fff;
  padding-top: 15px;
  margin-top: 50px;
  letter-spacing: 4px;
  color: #007946;
}
@media (min-width: 1600px) {
  .counter-outer-box .count-box {
    font-size: 700%;
  }
}
@media (max-width: 768px) {
  .counter-outer-box .count-box {
    font-size: 300%;
  }
}
.counter-outer-box .count-box .euro-zeichen {
  display: inline-block;
  margin-right: 5px;
}
.counter-outer-box .count-box .countup {
  display: inline-block;
}
.counter-outer-box .count-box .info-count {
  font-size: 12px;
}

.zitat-box {
  position: relative;
  background-color: rgba(var(--primary-color), 0.9);
  z-index: 20;
}
.zitat-box:before {
  content: "";
  display: block;
  width: 1px;
  height: 200px;
  background: #fff;
  margin: 0 auto 0 auto;
  padding-bottom: 35px;
  padding-top: 15px;
}
@media (max-width: 568px) {
  .zitat-box:before {
    height: 100px;
  }
}
.zitat-box:after {
  content: "";
  display: block;
  width: 1px;
  height: 200px;
  background: #fff;
  margin: 0 auto 0 auto;
  padding-bottom: 15px;
  padding-top: 35px;
}
@media (max-width: 568px) {
  .zitat-box:after {
    height: 100px;
  }
}
.zitat-box .inner-box {
  max-width: 800px;
  border: 1px solid #fff;
  margin: 0 auto;
  padding: 40px;
  position: relative;
}
@media (max-width: 568px) {
  .zitat-box .inner-box {
    max-width: 96%;
    margin-left: 2%;
  }
}
.zitat-box .inner-box p {
  font-size: 120%;
  text-align: center;
}
@media (max-width: 768px) {
  .zitat-box .inner-box p {
    font-size: 100%;
  }
}
.zitat-box .inner-box p strong {
  display: block;
  font-weight: 700;
}
.zitat-box .inner-box .zitat-symb {
  position: absolute;
  right: 30px;
  top: -40px;
  width: 80px;
  height: 80px;
  z-index: 2;
}
.zitat-box .inner-box .zitat-symb:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #012c35;
  display: block;
  position: relative;
  top: 39px;
  z-index: 5;
}
.zitat-box .inner-box .zitat-symb img {
  display: block;
  max-width: 80%;
  margin: 0 auto;
  opacity: 1;
  position: relative;
  top: 10px;
  z-index: 10;
}
.zitat-box .inner-box .blatt-symb {
  position: absolute;
  left: -30px;
  top: -90px;
  width: 100px;
  height: 100px;
  transform: rotate(-250deg);
  left: 30px;
  animation: 6s ease infinite wiggle;
  transform-origin: center center;
}
.zitat-box .inner-box .blatt-symb img {
  display: block;
  max-width: 100%;
}
@keyframes wiggle {
  0% {
    transform: rotate(-250deg);
  }
  50% {
    transform: rotate(-230deg);
  }
  100% {
    transform: rotate(-250deg);
  }
}
.zitat-box .inner-box .weihnachtsstern-symb {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  animation: 6s ease infinite wigglev2;
}
@media (max-width: 992px) {
  .zitat-box .inner-box .weihnachtsstern-symb {
    right: 20px;
    bottom: -60px;
    height: 100px;
    width: 100px;
  }
}
.zitat-box .inner-box .weihnachtsstern-symb img {
  display: block;
  max-width: 100%;
}
@keyframes wigglev2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.zitat-box .inner-box .andi-prueckler-box {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media (max-width: 568px) {
  .zitat-box .inner-box .andi-prueckler-box {
    display: block;
    text-align: center;
  }
}
.zitat-box .inner-box .andi-prueckler-box .img-box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: #f2f4ff;
  border: 1px solid #012c35;
}
@media (max-width: 568px) {
  .zitat-box .inner-box .andi-prueckler-box .img-box {
    margin: 0 auto;
  }
}
.zitat-box .inner-box .andi-prueckler-box .img-box img {
  position: absolute;
  width: 80%;
  height: auto;
  top: 0;
  left: 10%;
}
.zitat-box .inner-box .andi-prueckler-box .txt-box {
  align-self: center;
  margin-left: 30px;
}
@media (max-width: 568px) {
  .zitat-box .inner-box .andi-prueckler-box .txt-box {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.zitat-box .inner-box .andi-prueckler-box .txt-box img {
  filter: brightness(0) invert(1);
  display: block;
  max-width: 200px;
}
@media (max-width: 568px) {
  .zitat-box .inner-box .andi-prueckler-box .txt-box img {
    margin: 0 auto;
  }
}
.zitat-box .inner-box .andi-prueckler-box .txt-box .name {
  font-weight: 700;
}
/* Animation */
@keyframes snowing {
  from {
    background-position-y: 0px, 0px;
  }
  to {
    background-position-y: calc(var(--snowsize) * 2), var(--snowsize);
  }
}
.bg-dark-outer {
  background-color: rgba(var(--primary-color), 0.9);
  position: relative;
  z-index: 20;
}

.partner-logos-outer {
  background: #fff;
  border-radius: 50px;
  padding: 20px;
}
@media (max-width: 568px) {
  .partner-logos-outer {
    max-width: 95%;
    margin-left: 2.5%;
  }
}
@media (max-width: 768px) {
  .partner-logos-outer {
    border-radius: 15px;
  }
}
.partner-logos-outer [class*=col-] {
  padding: 0;
  margin: 0;
}
.partner-logos-outer h2 {
  text-align: center;
  letter-spacing: 2px;
  font-family: "kleine_sans";
  text-transform: uppercase;
  font-weight: 300;
}
.partner-logos-outer h2:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  margin: 15px auto;
  background: #fff;
}
.partner-logos-outer .logo-box {
  width: 100%;
  height: 300px;
  position: relative;
}
@media (max-width: 768px) {
  .partner-logos-outer .logo-box {
    width: 98%;
    height: 150px;
  }
}
@media (max-width: 568px) {
  .partner-logos-outer .logo-box {
    height: 110px;
  }
}
.partner-logos-outer .logo-box img {
  max-width: 70%;
  max-height: 100%;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
@media (max-width: 768px) {
  .partner-logos-outer .logo-box img {
    max-width: 80%;
  }
}

.partner-logos-outer-white {
  background: none;
}
.partner-logos-outer-white .logo-box img {
  filter: brightness(0) invert(1);
}

footer {
  padding: 0px 0px 50px 0px;
  position: relative;
  max-width: 1410px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 568px) {
  footer {
    margin-top: 50px;
  }
}
footer ul {
  list-style-type: none;
  text-align: center;
  margin-top: 35px;
}
@media (max-width: 992px) {
  footer ul {
    margin-top: 20px;
  }
}
footer ul li a {
  position: relative;
  display: inline-block;
  padding: 5px 5px 5px 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  font-size: 90%;
}
footer ul li a:hover {
  opacity: 0.7;
  color: #fff;
}
@media (max-width: 568px) {
  footer ul li {
    display: block;
    width: 100%;
    text-align: center;
  }
}
footer .footer-logos {
  text-align: center;
  position: relative;
}
footer .footer-logos img {
  margin: 0 15px;
}
@media (max-width: 768px) {
  footer .footer-logos img {
    display: block !important;
    margin: 30px auto;
  }
}
footer .footer-logos .klz-logo {
  max-width: 130px;
  display: inline-block;
}
footer .footer-logos .shs-logo {
  max-width: 200px;
  display: inline-block;
}

#infovideo {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 1000;
  display: none;
}
#infovideo span {
  display: block;
  background: #c50c0e;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-family: "kleine_titel";
  font-weight: 500;
}
#infovideo #infovideo-inner {
  max-width: 200px;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 20px;
  opacity: 0;
  transition: ease-in-out 300ms all;
  cursor: none;
}
#infovideo:hover #infovideo-inner {
  opacity: 1;
}

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