footer .footer-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-inner ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}

footer .footer-inner ul a {
  color: #0b41cd;
  font-family: var(--body);
  text-decoration: none;
}

footer .footer-inner .social {
  display: block;
  width: 25px;
}

footer .footer-inner .social svg {
  display: block;
  width: 100%;
  height: auto;
}

footer .footer-inner p {
  padding-bottom: 0;
  margin: 0;
  color: #0c1326;
  opacity: 0.6;
}

@media screen and (max-width: 850px) {
  footer .footer-inner p {
    font-size: 14px;
  }

  footer .footer-inner {
    display: block;
    height: auto;
    padding: 20px 0;
  }

  footer .footer-inner ul {
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 5px 15px;
    padding: 15px 0;
  }

  footer .footer-inner ul li a {
    font-size: 12px;
  }
}
