.site-footer {
  position: relative;
  margin-top: auto;
  color: var(--color-white);
  padding: var(--space-8) 0 var(--space-6);
  background-color: var(--color-black);
  background-image: url("/assets/images/backgrounds/img_footer_background_1600x400.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.site-footer__brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--space-4);
}
.site-footer__logo {
  display: block;
  width: auto;
  max-height: 34px;
}
.site-footer__quality {
  display: block;
  width: auto;
  max-width: 220px;
}
.site-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}
.site-footer__title {
  margin-bottom: var(--space-4);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 500;
}
.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__list li + li {
  margin-top: 0;
}
.site-footer__list a,
.site-footer__social a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.site-footer__list a:hover,
.site-footer__social a:hover {
  color: var(--color-veci-green);
  text-decoration: none;
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}
.site-footer__social a:hover {
  border-color: var(--color-veci-green);
  background-color: rgba(103, 181, 0, 0.2);
}
@media (max-width: 767.98px) {
  .site-footer {
    padding: var(--space-7) 0 var(--space-5);
  }
  .site-footer__logo {
    max-height: 30px;
  }
  .site-footer__quality {
    max-width: 200px;
  }
}
