footer {
  width: 100%;
  padding: 3.75rem 1rem 5rem;
  background: #22252F;
}
footer .footer {
  position: relative;
  overflow: hidden;
}
footer .footer-logo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-wrapper {
  width: 100%;
  max-width: 103.5rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
footer .footer-logo-item {
  display: block;
  max-width: 6.125rem;
}
footer .footer-logo-item > * {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer-contact-block .phone-mobile {
  color: var(--color-white);
  font-size: 1.125rem;
  line-height: 1.75rem;
}
footer .footer-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-size: 1.125rem;
  line-height: 150%;
  color: #FFFFFF;
}
footer .footer-contact-wrapper, footer .footer-contact-wrapper > * {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
}
footer .footer-contact-wrapper a {
  text-decoration: none;
  display: inline-block;
}
footer .footer-contact-wrapper a:not(:last-child),
footer .footer-contact-wrapper a span:not(:last-child) {
  margin-bottom: 1rem;
}
footer .footer-contact-wrapper span {
  display: block;
}
footer .footer-icons {
  display: flex;
  list-style: none;
  order: 1;
}
footer .footer-icons li {
  width: 2rem;
  height: 2rem;
  margin-right: 1.5rem;
}
footer .footer-icons li a {
  color: #22252F;
  font-size: 2rem;
  display: inline-block;
}
footer .footer-icons-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.75rem;
}
footer .footer-decor {
  position: absolute;
  bottom: 0;
  left: 0;
}
footer .policy-link {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #8E8F9E;
  text-decoration: underline;
  transition: color 0.3s;
}
footer .policy-link:hover {
  color: #FFFFFF;
}
@media screen and (min-width: 601px) {
  footer {
    padding: 5.625rem 2.875rem;
  }
  footer .footer-wrapper {
    gap: 5rem;
  }
  footer .footer-contact-wrapper {
    flex-direction: row;
    gap: 8rem;
  }
  footer .footer-icons {
    order: 0;
  }
  footer .footer-icons-list {
    flex-direction: row;
    align-items: center;
  }
  footer .footer-logo-item {
    max-width: 7.9375rem;
  }
  footer .footer .policy-link {
    text-decoration: none;
  }
}
