.footer {
  background: var(--bg-secondary);
}

.footer__container {
  padding: 40px 0 40px 0;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}

.footer__text {
  margin-top: 25px;
  color: #afafaf;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  text-align: right;
}

.footer__text-left {
  margin-right: 10px;
  text-align: left;
}

.footer__dark-text {
  margin-top: 25px;
}

.footer__dark-text p  {
  margin-top: 25px;
  color: #b3b3b3;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 50px;
}

footer .nav__link {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  white-space: nowrap;
  transition: 0.3s;
}

footer .nav__link:hover {
  color: var(--color-primary);
}

.footer__nav {
  padding-top: 14px;
}

.footer-copyright {
  background: var(--color-primary);
  padding: 5px;
  text-align: center;
}

.footer-copyright p {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1075px) {
  .footer__wrapper {
    flex-direction: column;
  }

  .footer__start {
    text-align: center;
  }

  .footer__end {
    margin-top: 20px;
  }

  .footer__nav-list {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .footer__text {
    text-align: center;
  }
}

@media(max-width: 991px) {
  .footer__container {
    padding: 2rem;
  }

  .footer__start .logotype {
    justify-content: center;
  }
}