.menu--footer ul {
  margin: 0;
  padding: 0;
}
.menu--footer ul li {
  margin: 0;
  margin-top: 16px;
  padding: 0;
}
.menu--footer ul li:first-child {
  margin-top: 0;
}
.menu--footer ul li a {
  position: relative;
  margin: 0;
  padding: 0;
  color: #1E2643;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .menu--footer ul li a {
    display: block;
  }
}
.menu--footer ul li a:hover:after {
  transform: translateX(calc(100% + 5px)) translateY(-50%);
}
.menu--footer ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../../images/icons/icon-arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 8px;
  transform: translateX(100%) translateY(-50%);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
}
@media screen and (max-width: 640px) {
  .menu--footer ul li a:after {
    right: 0;
    margin: 0;
    transform: translateX(0) translateY(-50%);
  }
}
.menu--footer ul li a.is-active {
  color: #1E2643;
}