/* Hover Animation Box/Button */

.box-container:has(.box-button:hover) .box-cta {
    border: black solid 2px;
  }


/* Slide Animation Footer */

.slider-animation {
  animation: slide 30s linear infinite;
}

@keyframes slide {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-2038px);
  }
}

/* Vertikaler Text Detailseiten */

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}