.site-footer {
  /* padding: 96px 0 64px; */
  /* min-height: 668px; */
  padding: 96px 0;
  border-top: 1px solid #353535;
  /* max-width: var(--container-width); */
  /* margin: 0 auto; */
  /* background-color: #3535352b; */
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  text-align: center;
}

.footer-brand {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.footer-brand__logo img {
  width: 200px;
  height: auto;
}

.footer-brand__name {
  margin: 0;
}

.footer-brand__address {
  font-style: normal;
  line-height: 1.5;
  font-size: 0.750rem;
}

.footer-brand__registered,
.footer-brand__copyright {
  font-size: 0.750rem;
  opacity: 0.85;
}

.footer-brand__registered {
    display: flex;
        justify-content: center;
    align-items: center;
}
.footer-brand__registered img {
    width: 20px;
    margin-left: 6px;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav__list a {
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
}

.footer-nav__list a:hover {
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  justify-content: center;
}

.footer-social__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social__link svg {
    fill: #fff;
    width: 22px;
}

.footer-social__link svg:hover {
  fill: var(--text-secondary);
}

.footer-legal {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-legal p {
  font-size: 0.750rem;
}

.footer-legal p a {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 72px 0 128px;
  }

  .footer-nav__list {
    gap: 18px;
  }
}


.icons-svg-site {
  display: none;
}