@charset "UTF-8";
/**** Animation des Intro-Bildes ****/
.introanimation {
  opacity: 1;
  width: 100%;
  height: 100%;
  animation: fadeOUT 0.5s 2.7s ease-in-out forwards;
  position: relative;
}

.rect {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  background-image: url("../images/tvflimmern2.gif");
  /*border: 1px #FFFFFF solid;*/
  animation: scaleH 0.25s 1s ease-in-out forwards, scaleV 0.25s 1.4s ease-in-out forwards;
}

.leftline, .rightline {
  width: 1px;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  animation: moveToMiddle 0.25s 1s ease-in-out forwards, scaleV 0.25s 1.4s ease-in-out forwards;
}

.leftline {
  top: 0;
  left: -1px;
}

.rightline {
  top: 0;
  right: -1px;
}

.lingua {
  width: 16px;
  height: 307px;
  background-color: #ffffff;
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 10px);
  border-radius: 10px;
  transform: scaleX(0.001) scaleY(0.001);
  animation: scaleLING 0.25s 2s ease-in-out forwards;
  z-index: 50;
  opacity: 1;
}

.rot {
  animation: rotRot 0.25s 2.25s ease-in-out forwards;
}

.gelb {
  animation: rotGELB 0.25s 2.5s ease-in-out forwards;
}

.intrologo {
  width: 300px;
  position: absolute;
  top: calc(50% - 175px);
  left: calc(50% - 107px);
  /*margin-left:500px;*/
  z-index: 55;
  opacity: 0;
  /* animation: NAME DAUER VERZÖGERUNG ANIMATIONSKURVE ITERATION; */
  /*transition: all 1s;*/
}

@media (max-width: 767px) {
  .intrologo {
    animation: scaleIntrologo 0.5s 2.7s ease-in-out forwards;
  }
}
@media (min-width: 768px) {
  .intrologo {
    animation: fadeIN 0.5s 2.7s ease-in-out forwards;
  }
}
/*@keyframes myAnim {
	0% {
		transform: scaleX(1);
	}

	100% {
		transform: scaleX(0.001), transform: scaleY(0.001);
	}
}*/
@keyframes scaleIntrologo {
  0% {
    opacity: 0;
    transform: scaleX(1) scaleY(1);
    left: calc(50% - 107px);
    top: calc(50% - 175px);
  }
  100% {
    opacity: 1;
    transform: scaleX(0.75) scaleY(0.75);
    left: calc(50% - 145px);
    top: calc(50% - 250px);
  }
}
@keyframes scaleH {
  to {
    transform: scaleX(0.001);
  }
}
@keyframes scaleV {
  to {
    transform: scaleX(0.001) scaleY(0.001);
  }
}
@keyframes moveToMiddle {
  to {
    right: 50%;
  }
}
@keyframes scaleLING {
  0% {
    transform: scaleX(0.001) scaleY(0.001);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}
@keyframes rotRot {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  100% {
    transform: scaleX(1) scaleY(1) rotate(173.5deg) translate(0px, -10px);
  }
}
@keyframes rotGELB {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  100% {
    transform: scaleX(1) scaleY(1) rotate(-173.5deg) translate(0px, 10px);
  }
}
@keyframes fadeIN {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOUT {
  to {
    opacity: 0;
  }
}
.typewriter {
  padding-left: 90px;
  /*text-align: center;
  background-color: rgb(126, 231, 34);*/
}

#claim {
  width: 100%;
  position: absolute;
  top: calc(50% + 220px);
  z-index: 56;
  /*background-color: aqua;*/
  display: flex;
  justify-content: center;
}

.typewriter h1 {
  color: var(--pale-cyan);
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid transparent; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.05em; /* Adjust as needed */
  font-size: 2.4em;
  line-height: 1.3;
  font-weight: 100;
  width: 0;
  /*width:300px;
  position: absolute; 
  top:calc(50% - 185px); left:calc(50% - 107px);
  z-index: 56;*/
  animation: typing 3s 4s steps(20, end) forwards, blink-caret 0.75s 4s step-end infinite;
}

.typewriter h1.firstline {
  animation: typing 3s 4s steps(20, end) forwards, blink-caret 0.75s 4s step-end;
}

.typewriter h1.secondline {
  animation: typing 3s 7s steps(20, end) forwards, blink-caret 0.75s 7s step-end infinite;
}

#scrollicon {
  width: 100%;
  position: absolute;
  bottom: 40px;
  /*top:calc(50% + 300px);*/
  z-index: 57;
  text-align: center;
  justify-content: center;
  opacity: 0;
  animation: scrolliconfadein 3s 6s ease-out forwards;
}

@media (max-width: 767px) {
  #claim {
    top: calc(50% + 100px);
  }
  .typewriter {
    padding-left: 10px;
    font-size: 0.8em;
    text-align: center;
  }
  /*  #scrollicon {
        top:calc(50% + 200px);
    }*/
}
/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}
/* scrollicon fadein */
@keyframes scrolliconfadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=intro.css.map */