

.footer__wrapper:nth-child(1) {
  background-color: var(--primary-color-2);
}

.footer__wrapper:nth-child(2) {
  background-color: var(--primary-color-4);
}

.footer .footer__wrapper:nth-child(1) .container,
.footer .footer__wrapper:nth-child(2) .container {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 12px));
  color: var(--primary-color-1);
  padding: 24px 0;
  gap: 24px;
}

@media (max-width: 1024px) {
  .footer .footer__wrapper:nth-child(1) .container,
  .footer .footer__wrapper:nth-child(2) .container {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.footer__about-title,
.footer__legal-title {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer__about-content,
.footer__details {
  font-weight: 300;
  font-size: 14px;
}

.footer__details {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer__links {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer__links {
    justify-content: center;
  }
}

.footer__copyright,
.footer__link-item {
  font-weight: 300;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}

.footer__link-item:not(:last-child)::after {
  content: '|';
  margin: 0 5px;
}

.footer__link {
  color: inherit;
}