.header__logo,
.footer__logo {
  transition: opacity 220ms ease;
}

.ai-reels__nav,
.services-showcase__arrow {
  width: 55px;
  height: 55px;
  background: #3e8cb7;
  color: #ffffff;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.ai-reels__nav svg,
.ai-reels__nav img,
.services-showcase__arrow svg,
.services-showcase__arrow img {
  width: 22px;
  height: 22px;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.ai-reels__nav:hover,
.ai-reels__nav:focus-visible,
.services-showcase__arrow:hover,
.services-showcase__arrow:focus-visible {
  background: #3e8cb7;
  opacity: 0.84;
}

.services-showcase:not(.is-ready) [data-showcase-slider] {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.services-showcase:not(.is-ready) .services-showcase__slide {
  display: none;
}

.services-showcase:not(.is-ready) .services-showcase__slide:first-child {
  display: block;
}

.services-showcase:not(.is-ready) .services-showcase__footer {
  min-height: 55px;
}

.ai-reels__cta-arrow {
  width: 110px;
  height: 38px;
  flex: 0 0 auto;
  display: block;
  position: relative;
  max-width: none;
  animation: none;
  transform: none;
}

.ai-reels__cta-arrow .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  cursor: pointer;
}

.ai-reels__cta-arrow .arrow span {
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  min-width: 12px;
  min-height: 12px;
  max-width: 18px;
  max-height: 18px;
  border-bottom: 5px solid #791e39;
  border-right: 5px solid #791e39;
  transform: rotate(45deg);
  --arrow-scale: 1;
  margin: -10px;
  animation: animate 2s infinite;
}

.ai-reels__cta-arrow .arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.ai-reels__cta-arrow .arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

.ai-reels__cta-arrow .arrow span:nth-child(1) {
  --arrow-scale: 0.82;
}

.ai-reels__cta-arrow .arrow span:nth-child(2) {
  --arrow-scale: 1;
}

.ai-reels__cta-arrow .arrow span:nth-child(3) {
  --arrow-scale: 1.14;
}

.header__logo:hover,
.header__logo:focus-visible,
.footer__logo:hover,
.footer__logo:focus-visible {
  opacity: 0.7;
  text-decoration: none;
}

.header__logo:focus-visible,
.footer__logo:focus-visible {
  outline: none;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px) scale(var(--arrow-scale));
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translate(0, 0) scale(var(--arrow-scale));
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px) scale(var(--arrow-scale));
  }
}
