@import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


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

.wrapper {

  width: 100rem;
  max-width: 95%;
  margin: 2rem auto;
}

html {
  scroll-behavior: smooth;
}

/* Desktop Navigation */

.navwrapper {

  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;


}

h2 {
  color: var(--darkorange);
}



/* Mobile Navigation */
.mobile-hebel {
  cursor: grab;
  position: fixed;
  right: 0;
  margin-top: -20px;
  margin-right: -20px;
  z-index: 20;
}

.mobile-hebel-input {
  display: none;
}

.burger-menu {
  position: fixed;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-end;
  translate: 0 -1200px;
  transition: all 1.5s ease-out;
  z-index: 19;
}

.color {
  background-color: var(--lightorange);
}

.burger-inlay {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  padding-top: 2em;
  padding-bottom: 2em;
}

.mobile-navigation {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  font-family: "Noto Sans"
}

.mobile-navigation a {
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
  font-size: 32px;
}

.mobile-navigation a:hover {
  color: var(--darkred);
}

.burger-background {
  height: 100vh;
  translate: 0 -100vh;
  transition: all 2s ease-in;
}

.welle {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 60px;
  padding: 15px;
  margin: 10px;
}

.mobile-logo img {
  width: 150px;
  height: 30px;
}

.kreuz {
  display: none;
}

.kreuz-striche {
  cursor: pointer;
  padding: 30px;
  padding-right: 15px;
}

.kreuz-striche span {
  display: block;
  width: 90px;
  height: 15px;
  background: var(--white);
  border-radius: 10px;
}

.kreuz-striche span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 35px;
  transition-duration: 1s;
  transition-delay: 1.5s;
}

.kreuz-striche span:nth-child(2) {
  transform: rotate(-45deg);
  transform-origin: 35px;
  transition-duration: 1s;
  transition-delay: 1.5s;
}

.modeswitch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 70px;
  margin-left: 20px;
}

.modeswitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--darkorange);
  -webkit-transition: .4s;
  transition: .4s;
  cursor: grab;
}

.switch.round {
  border-radius: 60px;
}

.switch:before {
  position: absolute;
  background-image: url("../images/katze_wach1.png");
  background-repeat: no-repeat;
  content: "";
  height: 26px;
  width: 36px;
  left: 4px;
  bottom: 4px;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.switch {
  background-color: var(--darkpurple);
}

input+.switch {
  outline: 3px solid black;
}

input:checked+.switch:before {
  background-image: url("../images/katze_schlafend1.png");
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateY(-35px);
  -ms-transform: translateY(-35px);
  transform: translateY(-35px);
}

body:has(.modeswitch-input:checked) .color {
  background-color: var(--lightpurple);
}

body:has(.modeswitch-input:checked) .mobile-navigation a:hover {
  color: var(--darkyellow);
}

body:has(.modeswitch-input:checked) .welle {
  fill: var(--lightpurple);
}

body:has(.modeswitch-input:checked) .mobile-hebel-kreis {
  fill: var(--lightpurple);
}

.burger-in {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-duration: 2s;
  animation-name: burger-in;
}

.burger-out {
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-duration: 2s;
  animation-name: burger-out;
}

.mobile-hebel-out {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-duration: 2s;
  animation-name: mobile-hebel-out;
}

.mobile-hebel-in {
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-duration: 2s;
  animation-name: mobile-hebel-in;
}

@keyframes burger-in {
  0% {
    translate: 0 -1200px;
  }

  100% {
    translate: 0 0;
  }
}

@keyframes burger-out {
  0% {
    translate: 0 0;
  }

  100% {
    translate: 0 -1200px;
  }
}

@keyframes mobile-hebel-out {
  0% {
    translate: 0 0;
  }

  100% {
    transform: rotate(-60deg);
    transform-origin: top right;
    transition-duration: 1s;
  }
}

@keyframes mobile-hebel-in {
  0% {
    transform: rotate(-60deg);
    transform-origin: top right;
    transition-duration: 1s;
  }

  100% {
    translate: 0 0;
  }
}


/* ############################################################################################ */

/* Darkmode*/
body:has(.modeswitch-input:checked) h2 {
  color: var(--darkyellow);
}

body:has(.modeswitch-input:checked) p {
  color: var(--darkyellow);
}

body:has(.modeswitch-input:checked) .button {
  color: var(--darkpurple);
  background-color: var(--darkyellow);
}

body:has(.modeswitch-input:checked) .rundgang-h2 {
  color: var(--black);
}

body:has(.modeswitch-input:checked) .rundgang-p2 {
  color: var(--black);
}

body:has(.modeswitch-input:checked) .merchotos-container:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--darkpurple));
}

body:has(.modeswitch-input:checked) .merchotos-container:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--darkpurple));
}

body:has(.modeswitch-input:checked) h5 {
  color: var(--darkyellow);
}

body:has(.modeswitch-input:checked) .rundgang-h2 {
  color: var(--darkorange);
}

body:has(.modeswitch-input:checked) .footer-links-items a {
  color: var(--darkyellow);
}

body:has(.modeswitch-input:checked) .bbw-form {
  background-color: var(--lightpurple);
}
body:has(.modeswitch-input:checked) .navliste-cta-button {
  background-color: var(--darkyellow);
  color: var(--black);
}
body:has(.modeswitch-input:checked) .navliste-cta-button:hover{
  background-color: transparent;
  border: 3px solid var(--darkyellow);
  color: var(--black);
}
body:has(.modeswitch-input:checked) .bbw-form form label{
  color: var(--yellow);
}
body:has(.modeswitch-input:checked) .bbw-form form .label-darkmode-white{
  color: var(--black);
}
/*###############################################################*/

.burger-menu,
.mobile-hebel {
  display: none;
}

/* Ausblenden der Desktop Navigation */

@media screen and (max-width: 900px) {

  .navwrapper {
    display: none;
  }

  .burger-menu,
  .mobile-hebel {
    display: block;
  }
}




@keyframes joint-out {
  0% {
    transform: rotate(-45deg);
  }

  100% {
    transform: rotate(90deg);
  }
}

@keyframes joint-in {
  0% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(-45deg);
  }
}

.nav-arm_out {
  animation-delay: 0.6s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: joint-out;
}

.nav-arm_in {
  animation-delay: 0.5s;
  animation-duration: .8s;
  animation-fill-mode: both;
  animation-name: joint-in;
}

.nav-beschraenker {
  width: 80%;
  max-width: 1900px;
  min-width: 900px;
  position: fixed;
}

.navigation {
  /*position: fixed;*/
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--lightorange);
  border-radius: 60px;
  color: var(--white);
  font-family: "Noto Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: 3px solid black;
  filter: drop-shadow(7px 7px 0px #000);
  margin-top: 30px;

  transform-origin: top right;
  animation-timing-function: cubic-bezier(1, 0.16, 1, 0.7);
  animation-delay: 0.5s;

}

.navigationarm {
  position: absolute;
  top: -100px;
  right: 0;
  /*###Das hier entfernen um Arm in Mitte der Navigationsbar zu positionieren, dient als Notfalllösung falls normale Animation nicht funktioniert###*/
  height: 66px;
  width: 250px;
  background-color: var(--darkorange);
  border-radius: 60px;
  border: 3px solid black;
  filter: drop-shadow(7px 7px 0px #000);
  transform: rotate(-45deg);
  z-index: -1;
  transform-origin: center right;
  animation-timing-function: cubic-bezier(1, 0.16, 1, 0.7);

}

.navigation a {

  color: var(--white);
  text-decoration: none;
  height: 66px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 66px;
  width: 226px;
  background-color: white;
  border-radius: 60px 0 0 60px;
  border-right: solid black 3px;
}

.logobbw {
  height: 31.57px;

}

.navliste {


  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 30px
}

.navliste  a:hover {
  color: var(--darkred);
}
.navliste-cta-button{
  background-color: var(--darkred);
  height: 100%;
  padding: .7rem 1.5rem;
  border-radius: var(--border-radius);
  transition: all .5s ease-in-out;
}
li .navliste-cta-button:hover{
 
  background-color: transparent;
  border: 3px solid  var(--darkred);
  padding: .7rem 1.7rem;
}


/*Hier Light-Darkmode Switch*/
body:has(.modeswitch-input:checked) {
  background-color: var(--darkpurple);
}

.navigation:has(.modeswitch-input:checked) {
  background-color: var(--lightpurple);
}

.navwrapper:has(.modeswitch-input:checked) .navigationarm {
  background-color: var(--darkpurple);
}

body:has(.modeswitch-input:checked) .hebelkreis {
  fill: var(--lightpurple);
}

/* .navliste a:hover:has(.modeswitch-input:checked) {
    color: var(--darkyellow);	
} */

body:has(.modeswitch-input:checked) .navigation a:hover {
  color: var(--darkyellow);
}

.modeswitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 30px;
}

.modeswitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--darkorange);
  -webkit-transition: .4s;
  transition: .4s;
  cursor: grab;
}

.switch:before {
  position: absolute;
  background-image: url("../img/icon/katze_wach1.png");
  background-repeat: no-repeat;
  content: "";
  height: 26px;
  width: 36px;
  left: 4px;
  bottom: 4px;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.switch {
  background-color: var(--darkpurple);
}

input+.switch {
  outline: 3px solid black;
}

input:checked+.switch:before {
  background-image: url("../img/icon/katze_schlafend1.png");
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.switch.round {
  border-radius: 60px;
}

/*ENDE*/

/*hebel*/

.hebel {
  position: fixed;
  right: 0;
  top: 100px;
  border: none;
  background-color: transparent;
  cursor: grab;
}

#hebel-checkbox {
  display: none;

}

.move-in {
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-name: slidein;
}

.move-out {
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-name: slideout;
}

/* Keyframe Animationen */
@keyframes slidein {
  0% {
    translate: -120px -120px;
  }

  100% {
    translate: 0 0px;

  }
}

@keyframes slideout {
  0% {
    translate: 0 0;
  }

  100% {
    translate: -120px -120px;

  }
}


/*hebel*/


.original-seite-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red);
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--boxshadow);
  padding: 2rem 1.4rem;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  z-index: 1;
  position: fixed;
  right: 50px;
  bottom: 50px;
  transition: all .3s ease-in-out;


}

.original-seite-button:hover {
  background: var(--hover-darkorange);

}

/* ################ Header Video ####################### */

.header-video-container {
  width: 100%;
  position: relative;
  min-height: 720px;
  max-height: 720px;
  overflow: hidden;
}

.custom_video {
  width: 100%;
  height: 720px;
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: -2;
}

.header-welle {
  position: absolute;
  left: 0;
  bottom: -5px;
  z-index: -1;
}

.welle-cls-1 {
  fill: #25ffff;
}

.welle-cls-2 {
  fill: #f29d35;
}

.welle-cls-2,
.welle-cls-3 {
  stroke: #000;
  stroke-width: 2.1px;
}

.welle-cls-3 {
  fill: #14a697;
}

#background {
  fill: white;
}

body:has(.modeswitch-input:checked) #background {
  fill: var(--darkpurple);
}

/* header video end */



/*main*/






/* ######################### Wiederverwendbar */





p,
a,
label,
input {
  font-family: var(--fliesstext);
  color: var(--darkpurple);
}

h2 {
  font-family: var(--mainheadings);
  font-size: var(--heading-h2);
  padding-bottom: var(--margin-b);
}


.allimg {
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--boxshadow);
}


.button {
  display: inline-block;
  text-align: center;
  padding: 1.5rem 2rem;
  margin-top: var(--margin-t);

  text-decoration: none;
  background-color: var(--darkorange);
  border-radius: var(--border-radius);
  color: var(--white);
  box-shadow: var(--boxshadow);
  transition: all .3s ease-in-out;
  border: var(--border);
}

.button:hover {
  background-color: var(--hover-darkorange);
  transform: scale(1.01);
}





/* #################### section BBW- Volmarstein */
#BBW-Volmarstein {
  margin-bottom: 5rem;
  position: relative;
}

#BBW-Volmarstein::after {
  content: "";
  position: absolute;
  bottom: -7rem;
  background: url("../img/icon/Punkte.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 15rem;
  z-index: -1;
}

.section-container {
  margin: var(--margin) 0;
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.info {
  max-width: 30rem;
  padding: 2rem;
}


.BBW-Volmarstein-info p {
  padding-bottom: var(--padding-b);
}

.main-section-img {

  width: 500px;
  height: 300px;
  object-fit: cover;
}

/* #################### section BBW- Ausbildung */


/* #################### section BBW- Lernen */

.lernen-container {
  flex-direction: row-reverse;
}

/* #################### section BBW- Internat */
#BBW-internat {
  margin-bottom: var(--margin-sc);
}

/* ################## media query img */
@media screen and (max-width: 900px) {
  .main-section {
    justify-content: left;
  }
}


@media screen and (max-width: 600px) {
  .main-section-img {

    width: 400px;
    height: 300px;

  }
}

@media screen and (max-width: 480px) {
  .main-section-img {

    width: 300px;
    height: 200px;

  }
}

/* ########## Section BBW-Video ###### */
#BBW-Video {
  position: relative;
}






.heading-h1 {
  color: var(--darkorange);
  font-size: 3rem;
  text-align: center;
  padding-bottom: 2rem;
  font-family: var(--mainheadings);
}

/* .wrapper{
    max-width: 96%;
    margin: 0 auto;
} */

#BBW-Rundgang {
  margin-bottom: 6rem;
}

.panorama-container {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  background-color: var(--blue);
  box-shadow: var(--boxshadow);
  padding: 2rem;
  border-radius: var(--border-radius)
}

@media screen and (max-width: 500px) {
  .panorama-container {
    padding: 1rem;
    hyphens: auto;
  }
}

.iframe-container {
  width: 100%;
  height: 77vh;

}

#mainview {

  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  border: var(--border);
  box-shadow: var(--dropshadow);
}

.panorama-container .playlist {
  margin-top: var(--margin-t);

  border-radius: var(--border-radius);
  overflow-y: scroll;
  height: 30rem;
}

.playlist::-webkit-scrollbar {
  width: 7px;
}

.playlist::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 50px;
}

.playlist::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 50px;
}

.item {
  display: flex;
  align-items: center;
  min-height: 10rem;
  gap: 3rem;
  flex-wrap: wrap;
  background-color: var(--hell-blue);
  border-radius: var(--border-radius);
  margin: 10px;
  padding: 2rem;
  border: var(--border);
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.item:hover {
  scale: 1.01;
  background-color: var(--hover-blue);
}

.item-textbox {
  width: 30rem;

}

.panorama-img {
  box-shadow: var(--dropshadow);
  border-radius: var(--border-radius);
  width: 200px;
  height: auto;
}

.button-img-p {
  width: 60px;
}

/*################################## button panorama ############################*/
.button-container {

  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.button-panorama {

  display: flex;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  padding: 1.3rem 2.5rem;
  height: 4.5rem;
  background-color: var(--darkorange);
  border-radius: var(--border-radius);
  color: var(--white);
  box-shadow: var(--boxshadow);
  text-decoration: none;
  transition: all .3s ease-in-out;
  border: var(--border);
}

/* .button-play:focus{
    color: #000;
    background-color: var(--darkyellow);
    transform: translateX(-10px);
    box-shadow: 4px 4px 0px 0 #000;
}
button-play:focus .item{
    background-color: #391556;
} */
.button-img {
  width: 30px;
  height: auto;
  object-fit: cover;
}

.panorama-active {
  color: #000;
  background-color: var(--darkyellow);
  transform: translateX(-10px);
  box-shadow: var(--dropshadow);
  scale: 1.01;
}


/*###################### Video ##########################*/
#video {
  transform: translate(0, 10rem);
  position: relative;
}

.video-container {
  margin-top: var(--margin-sc);
  background-color: var(--video-player);
  box-shadow: var(--boxshadow);
  border-radius: var(--border-radius);
  padding: 3rem;
}

.video-interview {
  width: 100%;
  border-radius: var(--border-radius);
}

.video-container::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 0;
  background: url("../img/icon/pukte-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 30rem;
  z-index: -1;

}

/*###################### Media Queries Video ##########################*/

@media screen and (max-width: 700px) {
  #video {
    transform: translate(0, 10rem);

  }

  .video-container {
    margin-top: 0;
    padding: 1.5rem;
  }

  .video-container::before {
    top: -9.5rem;
    height: 20rem;
    z-index: -1;

  }
}


/*###################### Contact Form ##########################*/

.bbw-form {
  border-radius: var(--border-radius);
  background-color: var(--lightblue);
  padding: 2rem;
}
.bbw-form form{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr); 

}
.form-name {
  grid-column: 1 / 2;
}
.form-adress {
  grid-column: 2 / 3; 
}

.form-mail {
  grid-column: 2 / 3; 
}

.bestaetigung-container{
 grid-row: 2 / 3;
}
.submit-button{
  max-width: 15rem;
  font-size: clamp(1rem, 0.375rem + 3.125vw, 1.5rem);
}

@media (max-width: 768px) {
  .bbw-form form {
    grid-template-columns: repeat(1, 1fr);
  }
  .form-name, .form-institution, .form-adress, .form-mail {
    grid-column: 1 / 2; 
  }
  
  .bestaetigung-container{
    grid-row: 4 / 5;
   }
   .submit-button{
    max-width: 100%;
  }
}


.form-input {
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--boxshadow);
  padding: 1rem;
}

.form-input:focus-visible {
  border: var(--border-input);
  box-shadow: var(--boxshadow-input);
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  margin-bottom: 1.5rem;
}

.form-text {
  display: block;
}
.sc-kontakt{
  display: block;
}
.field-group {
  padding: 1rem;
  border-radius: calc(var(--border-radius)/2);
}

.highlight-group {
  background-color: var(--lightyellow);
}

.field-group,
group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  
}

.subgroup {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
}

.plz-group {
  width: 50%;
}

.form-inline-input {
  min-width: 2ch;
  max-width: 6ch;
  border-bottom: 1px dotted black;
}



/*###################### Merchfotos Slider ##########################*/

#merchotos {
  position: relative;
  transform: translate(0, 18rem);
  overflow: hidden;
  padding-bottom: var(--margin-sc);
}

#merchotos::before {
  content: "";
  width: 100%;
  height: .2rem;
  background-color: #000;
  position: absolute;
  top: 9rem;
}

.merchotos-heading {
  text-align: center;
  padding-bottom: 10rem;
  color: var(--green);
}

.merchotos-container {
  display: flex;
  gap: 2rem;

}

.merchotos-container:before,
.merchotos-container:after {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  content: "";
  z-index: 2;
}

.merchotos-container:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.merchotos-container:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.fotoslider {
  display: flex;
  gap: 2rem;
  animation: merch 40s infinite linear;
  position: relative;
}

.merchotos-container:hover .fotoslider {
  animation-play-state: paused;
}

.fotoslider-item {
  position: relative;
  width: 30rem;
  height: 35rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: var(--border);
  transition: all .3s ease-in-out;

}

.fotoslider-item::before {
  content: "";
  width: 2rem;
  height: 87px;
  position: absolute;
  top: -90px;
  left: 50%;
  background-color: #000;
  z-index: -2;
}

.fotoslider-item:hover {
  transform: scale(1.04);
  box-shadow: var(--boxshadow);
}

.fotoslider-item:hover::before {
  z-index: -2;
}

.fotoslider-img {
  width: 25rem;
  height: 25rem;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: var(--border);
}


.farbered {
  background-color: var(--red);
}

.farbeorange {
  background-color: var(--lightorange);
}

.farbegreen {
  background-color: var(--green);
}

.farbeblue {
  background-color: var(--blue);
}

@keyframes merch {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/*###################### Media Queries Merch-Fotos ##########################*/
@media screen and (max-width: 900px) {
  .fotoslider-item {
    display: flex;
    justify-content: center;
    width: 15rem;
    height: 20rem;

  }


  .fotoslider-img {
    width: 12rem;
    height: 12rem;

  }

  .merchotos-container:before,
  .merchotos-container:after {

    width: 70px;

  }
}


/* ################## Footer ######################### */
/* ############################## svg */

.cls-1 {
  fill: #4287f5;
}

.cls-1,
.cls-2,
.cls-3 {
  stroke-width: 0px;
}

.cls-3 {
  fill: #14a797;
}

/* ############################################ */
#footer {

  width: 100%;
  transform: translate(0, 17rem);
  position: relative;

  /* background-image: url("../img/bilder/Unbenannt-3.svg");
    padding-top: 22rem;
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain; */


}

/* img punkte im footer */
/* .footer-bg-punkte{
    width: 30vw;
    object-fit: cover;
    display: flex;
    height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
} */

.footer-container {
  position: relative;
}

.punkte-vertikal-f {
  height: 30rem;
  position: absolute;
  top: 35%;
  left: 0;
  z-index: -20;
}

.footer-button {
  max-width: 20rem;
  border-radius: var(--border-radius);
  box-shadow: var(--boxshadow);
  border: var(--border);
  background-color: var(--white);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
}

.footer-button:hover {
  background-color: var(--video-player);
}

.bbw-logo-footer {
  width: 200px;
  object-fit: cover;

}

.foonter-links {
  padding-top: var(--padding);

}

.foonter-links h5 {
  font-family: var(--fliesstext);
  padding-bottom: var(--padding);
  font-size: 1.5rem;
}

.footer-links-items {

  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links-items li {
  list-style: none;
}

.footer-links-items a {
  color: #000;
}

.footer-links-items a:hover {
  color: #000000c5;
}


.footer-kostentaeger {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 5rem;
}

.footer-kostentaeger p {
  padding-top: var(--padding-t);
  max-width: 43ch;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  background-color: var(--white);
  padding: var(--padding);
  border-radius: var(--border-radius);
  border: var(--border);
  box-shadow: var(--boxshadow);
}

.footer-logos img {
  width: 100px;

  object-fit: cover;
}

.copyright-container {
  width: 100%;
  padding: 3rem 0;
  background-color: var(--darkorange);
  color: white;
  margin-top: 7rem;
}

@media screen and (max-width: 900px) {

  .punkte-vertikal-f {
    display: none;
  }

  .footer-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 19rem;
    bottom: -16rem;
    left: 0;
    background-image: url("../img/icon/Punkte.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -10;
  }

  .copyright-container {

    margin-top: 15rem;
  }
}