footer {
  margin-top: auto;
  position: relative;
  z-index: 90;
}
footer a {
  display: inline-block;
}
footer a:after {
  background-color: var(--accent-2);
  transition: width 0.2s;
  content: "";
  display: block;
  margin: 0 auto 0;
  height: 0.125em;
  width: 0;
}
footer a:hover:after {
  width: 100%;
}
footer a:hover, footer a[aria-current] {
  color: var(--accent-2);
}

.find-me {
  position: relative;
}
.find-me .container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(6 * var(--space));
}
.find-me .container ul li dotlottie-player {
  width: 94px;
}

.footer {
  position: relative;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container ul {
  display: flex;
}
.footer .container ul > li + li {
  margin-left: calc(1 * var(--space));
}

@media (max-width: 900px) {
  .find-me .container {
    display: grid;
    gap: calc(2 * var(--space));
    justify-content: center;
    align-items: center;
  }
  .find-me .container ul {
    display: grid;
    gap: calc(3 * var(--space));
  }
  .find-me .container ul li dotlottie-player {
    width: 60px;
  }
  .footer .footer__shape {
    top: -25px;
  }
  .footer .footer__shape svg {
    height: 25px;
  }
  .footer .container {
    display: grid;
    gap: calc(2 * var(--space));
    justify-content: center;
    align-items: center;
  }
  .footer .container ul {
    display: grid;
  }
  .footer .container ul > li + li {
    margin-left: 0;
  }
}
