/*
Blau: #00305e
Rot: #DE0E2C
Dunkelrot: #780011

*/

@import "fonts.css";
@import "fonts/icofont/icofont.min.css";
@import "fonts/awesome/fontawesome.css";
@import "fonts/awesome/solid.css";
@import "fonts/awesome/regular.css";

body {
  margin: 0;
  color: #444;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.45;
  word-break: break-word;
}

body, html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}

.plyr__control--overlaid {
    background: rgb(222,14,44);
    background: linear-gradient(-90deg, rgba(222,14,44,1) 0%, rgba(120,0,17,1) 100%);
}
.logo {
    height: 45px;
    width: 45px;
    padding-top: 12px;
    float: left;
  }
  img {
    width: 100%;
    height: auto;
  }

/*------------- Layout ------------- */
.padding{
  width: auto;
  max-width: 900px;
  margin: auto;
  position: relative;
}
.header-bg{
  width: 100%;
  background: #DE0E2C;
  height: 70px;
}
.section-white{
  background: #f3eded;
  color: inherit;
}
.section-red{
    background: rgb(222,14,44);
    background: linear-gradient(-90deg, rgba(222,14,44,1) 0%, rgba(120,0,17,1) 100%);
  color: #fff;
}
.section-black{
    background: #444;
    color: #fff;
}
.show{
  display: block;
}
.hide{
  display: none;
}
.padding-vertical{
  padding: 70px 0;
}
.padding-vertical.first{
  padding: 40px 0;
}
.laufschrift  {
  position: relative;
  top: 0;
  margin: 20px 0 0 20%;
  max-width: 100%;
  display: block;
  float: left;
  z-index: 100;
  color: #fff;
  max-width: 375px;
}





/* -----Plan -------------*/
.plan{
  overflow: hidden;
}
.plan-item {
  max-width: 60%;
  margin-bottom: 100px;
}
.plan-item:nth-child(2n) {
  float: right;
  margin-top: -400px;
}
.plan-item:nth-child(2n+1) {
  float: left;
  margin-top: -400px;
}
.plan-item:nth-child(1) {
  float: left;
  margin-top: 0;
}
.linie {
  border-right: 4pt dotted #DE0E2C;
  height: 400px;
  margin-right: 100px;
  clear: both;
  position: relative;
  animation: moveLine 1s linear infinite;
}
.plan-item:nth-child(2n+1) .linie {
  border-left: 4pt dotted #DE0E2C;
  margin-left: 100px;
  border-right: 0;
  clear: both;
  animation: moveLine 1s linear infinite;
}
.linie::before {
  content: "";
  border-top: 4pt dotted #DE0E2C;
  width: 250px;
  height: 2px;
  display: block;
  float: right;
  animation: moveLine 1s linear infinite;
}
.plan-item:nth-child(2n+1) .linie::before {
  content: "";
  border-top: 4pt dotted #DE0E2C;
  width: 250px;
  height: 2px;
  display: block;
  float: left;
  animation: moveLine 1s linear infinite;
    }

    @keyframes moveLine {
        0% {
            border-color: #DE0E2C;
        }
        50% {
            border-color: #780011;
        }
        100% {
            border-color: #DE0E2C;
        }
    }






    /*------------- Kommentarfeld ------------- */


    .kommentarfeld {
      width: 100%;
      margin: 0;
      padding: 0;
      display: block;
      clear: both;
      position: relative;
       }

       .kommentarfeld textarea {
           width: 100%;
           height: 300px;
           resize: none;
           background-color: white;
           border-radius: 5px;
           color: #000;
           font-size: inherit;
           padding:20px;
           font-family: "Open Sans";
            border: none;
            border: 0;
            box-sizing: border-box;
       }

       .kommentarfeld textarea::placeholder {
         color: #DC0E2C;
font-family: "Open Sans";
       }

       .kommentarfeld button {
           width: 100%;
           max-width: 70%;
           cursor: pointer;
           font-size: 100%;
           margin-top: 20px;
    }








/*------------- Schrift ------------- */
h1 {
  font-weight: 900;
  font-size: 320%;
  line-height: 1.3;
  font-family: "Roboto Slab", sans-serif;
  letter-spacing: 1px;
  margin-top: 0;
}
h2 {
  font-weight: bold;
  font-size: 200%;
  line-height: 1.3;
  font-family: "Roboto Slab", sans-serif;
}
h3 {
  font-weight: bold;
  font-size: 120%;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 10px;
}
h3.dachzeile {
  font-size: 190%;
}
.section-white h1{
    color: #444;
}
a {
    color: inherit;
    text-decoration: underline;
  }
.section-black{
    color: #9e9e9e;
}
p{
  margin-top: 0;
}
.small{
  font-size: 70%;
}


.number {
      transition: 1s;
    }
    .blink {
      animation: blink-animation 0.2s infinite alternate;
    }
    @keyframes blink-animation {
      0% {
        color: #fff;
      }
      100% {
        color: red;
      }
    }


/*------------- Buttons ------------- */

.btn {
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.btn:hover {
  transform: scale(1.1);
}

.zoom{
    transition: all 0.2s;
}
.zoom:hover {
    transform: scale(1.1);
  }
.white {
  background: transparent;
  border: 2px solid #DE0E2C;
  color: #DE0E2C;
}
.white:hover {
  background: #DE0E2C;
  color: #fff;
}
.red {
  background: #DE0E2C;
  border: 2px solid #DE0E2C;
  color: #fff;
}
.red:hover {
  background: #DE0E2C;
  color: #fff;
}
.section-red .white {
  border: 2px solid #fff;
  color: #fff;
}
.section-red .white:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #DE0E2C;
}


.btn .fa-regular {
  font-size: 300%;
  margin-bottom: 10px;
  margin-top: 5px;
}
.card-wrapper{
  display: flex;
  gap: 40px;
}
.card{
  flex-basis: 0;
  flex-grow: 1;
}




/* Videoloop Background */
/* Outer container - the padding will keep the container the correct proportions for the video */
.banner {
  position: relative;
  padding-bottom: 56.2%;
  width: 100%;
  overflow: hidden;
}
.videoembed {
  position: relative;
  top: 0;
  /*z-index: -99; */
  width: 100%;
  height: 100%;
  background: #333;
}






#DankeText {
  padding: 50px;
  background: #e32d2d;
  text-align: center;
  border-radius: 10px;
}






.top-button {
     position: fixed;
     right: 40px;
     bottom: 40px; /* Startposition außerhalb des sichtbaren Bereichs */
     width: 40px;
     height: 40px;
     background-color: #333;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #fff;
     font-size: 20px;
     cursor: pointer;
     z-index: 9999;
     transition: bottom 0.3s; /* Animationsübergangseffekt */
     text-decoration: none;
     transition: all 0.2s;
   }
    .top-button:hover {
          transform: scale(1.2);
        }

        .top-button.visible {
             bottom: 40px;
}




/*------  Animierte Zahlen -------- */

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}


#leftNumber {
}
#rightNumber {
}

.number {
  font-family: "Roboto Slab", sans-serif;
  font-size: 400%;
}
.fakten {
  padding: 20px 20px 40px 20px;
}
.fakten h3,
.fakten div {
  text-align: center;
}
.wrapper-zahlen {
  display: flex;
  gap: 40px;
}
.wrapper-zahlen h3{
  max-width: 500px;
  margin: auto;
}
.span2 {
  flex: 1;
    align-content: flex-start;
}





/* ----------Accordeon -----------*/
.accordeon {
  list-style: none;
  width: 100%;
  padding: 0;
  background: #DE0E2C;
  color: #fff;
}
.accordeon-item {
  border-top: 1px solid #fff;
}
.accordeon-item a:hover {
  background: #780011;
}
.accordeon-item:last-child {
    border-bottom: 1px solid #fff;
  }
.accordeon-title {
  color: #fff;
  font-weight: 700;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  font-size: 120%;
  padding-right: 40px;
  position: relative;
}
.accordeon-title:after {
    content: '+';
    transition: 0.3s ease-out;
    font-size: 170%;
    line-height: 53%;
    height: 20px;
    width: 20px;
    display: block;
    position: absolute;
    right: 10px;
    text-align: center;
    top: calc(50% - 10px);
  }
.accordeon-item.opened .accordeon-title:after {
    transform: rotate(45deg);
    }
.accordeon-content {
  overflow: hidden;
  padding: 0 20px 0 20px;
  transition: 0.3s ease-out;
}
.accordeon-content p{
  margin-top: 10px;
}
.accordeon-item:not(.opened) .accordeon-content {
    max-height: 0 !important;
  }
  .accordeon-item.opened {
    background: #bd021c;
  }




/*------------- MENU ------------- */

.menu.fs {
  position: fixed;
  z-index: 100;
  width: 100%;
  margin: auto;
  max-width: 900px;
}

.menu-burger, .menu-bg {
  position: absolute;
  width: 50px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  border-radius: 100%;
  right: -14px;
  top: 10px;
}

.menu-bg {
  background:#DE0E2C;
  pointer-events: none;
  transition: 0.3s;
  right: 11px;
  top: 35px;
  transform: translate3d(50%, -50%, 0);
  transform-origin: center center;
    z-index: 100;
}
.menu-bg.fs {
  transform: translate3d(50%, -50%, 0);
  width: 300vw;
  height: 300vw;
}

.menu-burger {
  color: white;
  padding-top: 3px;
  -webkit-user-select: none;
  cursor: pointer;
  transition: 0.4s;
  transform-origin: center;
    z-index: 100;
}
.menu-burger.fs {
  transform: rotate(-180deg) translateY(2px);
}

.menu-items {
  position: absolute;
  font-weight: bold;
  font-size: 190%;
  color: white;
  width: calc(100% - 50px);
  text-align: center;
  opacity: 0;
  transition: 0.4s;
  margin-top: 30vh;
  transform: translateY(-200%);
  pointer-events: none;
  z-index: 100;
}
.menu-items div {
  transition: 1s;
  opacity: 0;
  margin-top: 0px;
}
.menu-items.fs {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}
.menu-items.fs div {
  opacity: 1;
  margin-top: 50px;
}
.menu-items a {
  color: inherit;
  text-decoration: none;
}
.menu-items a div{
  transition: all 0.1s;
}
.menu-items a:hover div {
  transform: scale(1.2);
}


.plyr__menu{
  display: none;
}


@media only screen and (max-width: 900px) {
  body{
    font-size: 95%;
  }
  .show{
    display: none;
  }
  .hide{
    display: block;
  }
  .padding{
    padding: 0 24px;
  }
  .menu-burger, .menu-bg {
    right: 11px;
  }

  .menu-bg {
    right: 36px;
  }
  .padding-vertical{
    padding: 20px 0;
  }

  h1 {
    font-size: 220%;
  }
  h2 {
    font-size: 190%;
  }
  h3 {
    font-size: 120%;
  }
  h3.dachzeile {
    font-size: 150%;
  }
  .card-wrapper {
  display: block;
  gap: 00;
  margin: auto;
  max-width: 400px;
}
.wrapper-zahlen {
  display: block;
}
.laufschrift {
  position: relative;
  top: 0;
  margin: 20px 0 0 0%;
  max-width: 100%;
  display: block;
  float: left;
  z-index: 100;
  color: #de0e2c;
  max-width: 100%;
}


}



@media only screen and (max-width: 450px) {
  body{
    font-size: 85%;
  }
  body, h1, h2, h3, p{
    hyphens: auto;
    -webkit-hyphens:auto;
  }
  h1 {
    font-size: 180%;
  }
  h2 {
    font-size: 140%;
  }
  h3 {
    font-size: 100%;
  }
  h3.dachzeile {
    font-size: 130%;
  }
  .btn {
    max-width: 100%;
    padding: 10px 10px;
  }
/*  .plyr__progress__container,*/
  .plyr__time,
.plyr__volume
  {
    display: none;
  }

  .top-button {
       position: fixed;
       right: 15px;
       bottom: 15px; /* Startposition außerhalb des sichtbaren Bereichs */
       width: 30px;
       height: 30px;
}
#container div{
  width: auto;
  max-width: 200px;
}
.menu-items {
    font-size: 160%;
    margin-top: 50px;
  }
.menu-items.fs div {
    margin-top: 40px;
  }


}


  /* Stile für den Responsive-Breakpoint */
  @media screen and (max-width: 600px) {
    .js-player {
      width: 100%;
      height: auto;
    }
  }



  @supports (-webkit-hyphens:none){
          @content
  }
