
  /* Footer Links */
  [data-underline-link] {
    text-decoration: none;
    position: relative;
  }

  [data-underline-link]::before {
    content: '';
    position: absolute;
    bottom: -0.0625em;
    left: 0;
    width: 100%;
    height: 0.0375em;
    background-color: currentColor;
    transition: transform 0.45s cubic-bezier(0.21, 1, 0.34, 1);
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
  }

  @media (hover: hover) and (pointer: fine) {
    [data-underline-link]:hover::before {
      transform-origin: left;
      transform: scaleX(1) rotate(0.001deg);
    }
  }

  /* Footer Lottie */
  .footer_image svg {
    overflow: visible !important;
  }

  .footer_image svg g {
    clip-path: none !important;
  }

  @media screen and (max-width: 767px) {
    .footer_image svg {
      width: auto !important;
    }
  }
