.footer-list {
  display: flex;
  flex-direction: column;
}

.footer-li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-item {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s linear;
}

.footer-item:hover {
  color: white;
}

@media (max-width: 575.98px) {
  .js-footer-wrapper {
    width: 100%;
  }
  .footer-title.js-footer-btn {
    align-items: center;
    cursor: pointer;
    display: flex;
  }
  .js-footer-btn:after {
    content: "\e916";
    font-family: icomoon;
    font-size: 12px;
    margin-top: 3px;
    position: absolute;
    right: 10px;
    transition: transform 0.5s linear;
    color: white;
  }
  .js-footer-btn.active:after {
    transform: rotate(90deg);
    transition: transform 0.5s linear;
  }
  .js-footer-data {
    display: none;
  }
  .footer-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-li {
    position: relative;
    margin: 0 !important;
  }
  .footer-li:not(:last-child) {
    padding-right: 10px;
  }
  .footer-li:not(:last-child):after {
    background: rgba(255, 255, 255, 0.15);
    content: "";
    height: calc(100% - 12px);
    position: absolute;
    right: 0;
    top: 9px;
    width: 2px;
  }
}
