.footer-container {
  padding-top: clamp(1.25rem, 1.0518rem + 0.8130vw, 1.875rem);
  padding-bottom: clamp(1.25rem, 1.0518rem + 0.8130vw, 1.875rem);
  color: #fff;
}

footer#colophon {
  background-color: var(--Black);
}

footer#colophon a {
  color: var(--White);
  transition: 0.3s;
  font-size: clamp(0.875rem, 0.8354rem + 0.1626vw, 1rem);
  font-weight: 400;
  line-height: normal;
}

footer#colophon a:hover {
  color: var(--Accent);
  transition: 0.3s;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-r {
  display: flex;
  align-items: center;
  gap: 20px 40px;
}

.footer-top {
  border-bottom: 1px solid #536794;
  padding-bottom: 26px;
  margin-bottom: clamp(1.86rem, 1.7760rem + 0.3447vw, 2.125rem);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-contacts {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

a.footer-contacts__link {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

a.brand,
a.soc-link {
  display: flex;
}

.f-social {
  display: flex;
  column-gap: 20px;
}



@media (max-width: 768px) {
  a.footer_logo {
    width: 94px;
    height: 50px;
  }
  .footer-contacts {
    flex-direction: column;
    row-gap: 24px;
    align-items: flex-start;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    row-gap: 20px;
  }

  .footer-bottom-r {
    flex-direction: column;
  }

  span.copyright {
    text-align: center;
    font-size: 12px;
  }

  .footer-brand {
    width: 100%;
    display: flex;
    justify-content: center;
  }


}