.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  flex: 1;
}
.footer-nav__list {
  overflow: hidden;
  will-change: max-height;
  transition: var(--df-anim);
}

.footer-nav__btn {
  margin-bottom: 20px;
}

.footer-nav__btn-text {
  font: 700 18px/20px var(--font);
  color: var(--gray-200);
  margin: 0;
  text-align: left;
}

.footer-nav__btn-line {
  display: none;
}

.footer-nav__list-item:not(:last-child) {
  margin-bottom: 6px;
}

@media (max-width: 1280px) {
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .footer-nav__list {
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0px 15px 7px;
  }
  .footer-nav__list._active {
    opacity: 1;
    visibility: visible;
  }
  .footer-nav__btn {
    display: flex;
    background-color: var(--main-bg-btn);
    padding: 7px 15px;
    height: 50px;
    border-radius: var(--radius);
    width: 300px;
    align-items: center;
    justify-content: space-between;
  }
  .footer-nav__btn-text {
    font-size: 15px;
    color: var(--gray-800);
  }
  .footer-nav__btn-line {
    width: 16px;
    height: 16px;
    display: block;
  }
  .footer-nav__btn-line::before, .footer-nav__btn-line::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--gray-800);
    display: block;
  }
  .footer-nav__btn-line::before {
    transform: rotate(90deg) translate(7px, 0px);
  }
  .footer-nav__btn-line::after {
    transform: translateY(5px);
  }
}

/*# sourceMappingURL=style.css.map */
