<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footer {
  padding: 40px 0 20px 0;
  background: #111111;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  color: #ff6a56;
  font-size: 22px;
  font-weight: 600;
  line-height: 125%;
  transition: 0.3s;
}

.footer__logo:hover {
  opacity: .7;
}

.footer__logo span {
  color: #ff6a56;
}

.footer__text {
  margin-top: 35px;
  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;
  color: rgba(255, 255, 255, .25);
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
}

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

footer .nav__link {
  color: #afafaf;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  white-space: nowrap;
  transition: 0.3s;
}

footer .nav__link:hover {
  color: #ff6a56;
}

@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;
  }
}
</pre></body></html>