footer {
  padding: 50px 0;
  background-color: var(--web-bg-dark-color);
}

.logo.footer {
  margin-bottom: 25px;
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer-wrapper > p {
  font-size: 14pt;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--web-contrast-text-color);
}

.footer-wrapper > p > span {
  color: var(--primary-color);
}

.footer-wrapper > div {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-wrapper > div > a {
  padding-bottom: 4px;
  text-decoration: none !important;
  font-size: 14pt;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--nav-contrast-text-color);
}

.footer-wrapper > div > a:hover {
  color: var(--primary-color);
}


@media screen and (max-width: 1500px) {
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media screen and (max-width: 850px) {
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}