footer {
  background-color: var(--innerBg);
}
.footer__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  margin-bottom: 29px;
}
.footer__top > div:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.footer__top > div > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.footer__top > div > ul a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: var(--innerBlackBg);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__top > div > ul img {
  height: 45%;
  object-fit: contain;
}

.footer__top > nav {
}
.footer__top > nav ul {
  margin-left: auto;
  max-width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 39px;
  row-gap: 12px;
  justify-content: right;
}
.footer__top > nav li a {
  width: max-content;
}

.footer__bottom {
  padding: 8px 0;
  text-align: left;
  background-color: var(--innerBlackBg);
}
.footer__bottom p {
  color: #75767f !important;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column-reverse;
    align-items: start;
    gap: 24px;
  }
  .footer__top > div:first-child > a {
    max-width: 153px;
  }
  .footer__top > div > ul {
    display: none;
  }
  .footer__top > nav ul {
    margin-left: initial;
    max-width: 80%;
    align-items: start;
    gap: 24px;
    row-gap: 12px;
    justify-content: left;
  }
}
