.headline-container[data-v-9321800d] {
  display: inline-block;
  perspective: 300px;
}
.headline[data-v-9321800d] {
  display: inline-block;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateX(180deg);
  transform-origin: 50% 100%;
}
.headline.visible.initial[data-v-9321800d] {
  opacity: 1;
  position: relative;
  transform: rotateX(1turn);
}
.headline.visible[data-v-9321800d]:not(.initial) {
  animation: rotate-in-9321800d 0.6s forwards;
  opacity: 0;
  position: relative;
  transform: rotateX(0);
}
.headline.hiding[data-v-9321800d]:not(.initial) {
  animation: rotate-out-9321800d 0.6s;
  transform: rotateX(180deg);
}
@keyframes rotate-in-9321800d {
  0% {
    opacity: 0;
    transform: rotateX(180deg);
  }
  35% {
    opacity: 0;
    transform: rotateX(120deg);
  }
  65% {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: rotateX(1turn);
  }
}
@keyframes rotate-out-9321800d {
  0% {
    opacity: 1;
    transform: rotateX(0);
  }
  35% {
    opacity: 1;
    transform: rotateX(-40deg);
  }
  65% {
    opacity: 0;
  }
  to {
    opacity: 0;
    transform: rotateX(180deg);
  }
}
