body {
    background-color: #F3F3F3;
    overflow-x: hidden;
}

video {
  /* override other styles to make responsive */
  width: 100%    !important;
  height: auto   !important;
}

.video-background video:not(:paused) {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

iframe {
    width: 100vh;
    height: 75vh;
    position: relative;
}

section {
    display: grid;
    place-items: center;
    align-content: center;
    padding-top: 4rem;
}

.line {
    border-left: solid orange;
    margin-left: 10%;
}

.line_b {
    border-bottom: solid orange;
}


.hidden {
    opacity: 0.8;
    transform: translateX(-1%);
    transition: all 1s;
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

.show {
    opacity: 1;
    transform: translateX(0);
}
/*-------------------------------------------*\
- kann mit nth-child(anzahl) die position ausmachen zb text 2,3 etc
\*-------------------------------------------*/

.text:nth-child {
    transition-delay: 100ms;
}

.kw-svg svg{
  margin: -28px 0px;
  height: 100px;
}

.kw-pt {
  padding-top: 6rem;
}


/*-------------------------------------------*\
- FLIP CARD
\*-------------------------------------------*/

.card-flip > div {
  backface-visibility: hidden;
  transition: transform 300ms;
  transition-timing-function: linear;
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  transform: rotateY(180deg);
  position: absolute;
  top: 0;
}

.card-flip:hover .card-front {
  transform: rotateY(-180deg);
}
  
.card-flip:hover .card-back {
  transform: rotateY(0deg);
}

.grecaptcha-badge {
  position: fixed !important;  /* sicherstellen, dass es fixiert bleibt */
  right: 4px !important;
  bottom: 20px !important;     /* Abstand von unten */
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  z-index: 9999 !important;    /* falls es hinter dem Footer verschwindet */
}

.grecaptcha-badge:hover {
  width: 256px !important;
}
