.footer-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding: 16px 40px;
  opacity: 0.5;
}
.footer-nav__item {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 400;
  line-height: 1.5;
}
.footer-nav__item a {
  color: #000;
}
.footer-nav__item--events a:first-child::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon-home.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-nav__item--events a:first-child {
  display: flex;
  align-items: center;
}
.footer-nav__item--events span {
  display: inline-block;
  width: 11px;
  height: 12px;
  background-image: url("../images/icon-chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.footer-nav__item--events {
  display: flex;
  align-items: center;
  order: 1;
  justify-self: start;
  text-align: left;
}
.footer-nav__item--corp {
  order: 2;
  justify-self: center;
  text-align: center;
}
.footer-nav__item--terms {
  order: 3;
  justify-self: end;
  text-align: right;
}

@media screen and (max-width: 1300px) {
  .footer-nav {
    padding: 24px 16px;
  }
  .footer-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
  }
  .footer-nav__item--events {
    order: 1;
  }
  .footer-nav__item--corp {
    order: 3;
  }
  .footer-nav__item--terms {
    order: 2;
  }
}
