footer {}
footer .footer-logo {
  margin: 4rem 0;
  position: relative;
  z-index: 1;
}
footer .footer-logo:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50%);
  width: 100%;
  height: 1px;
  background: #E9E5E7;
  z-index: -1;
}
body.dark footer > .container,
body.dark footer > .captcha {
  color: #A0A0A0;
}
body.dark footer .footer-logo:before  {
  background: #2B2B2B;
}
footer .footer-logo a,
footer .footer-logo span {
  display: block;
  width: 179px;
  height: 90px;
  margin: 0 auto;
  padding: 0 24px;
  text-decoration: none;
  background: #fff url(/images/footer-logo.png) no-repeat;
  background-size: contain;
  background-position: center;
}
body.dark footer .footer-logo a,
body.dark footer .footer-logo span {
  width: 167px;
  height: 125px;
  background: var(--dark-color-background) url(/images/footer-logo-alt.png) no-repeat;
  background-size: contain;
  background-position: center;
}
/*footer .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}*/
footer .inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 -32px;
}
footer .inner .footer-menu-left {
  width: 100%;
  max-width: 16rem;
}
footer .inner .footer-menu-right,
footer .inner .footer-contacts {
  flex: 1;
}
footer .inner .footer-menu-left,
footer .inner .footer-menu-right,
footer .inner .footer-contacts {
  margin: 0 32px;
}
footer .inner .footer-menu-left .title,
footer .inner .footer-menu-right .title,
footer .inner .footer-contacts .title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 2rem;
}
footer .inner .footer-menu ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .inner .footer-menu ul li {
  display: block;
  margin: 0 0 1rem;
}
footer .inner .footer-menu ul li:last-of-type {
  margin: 0;
}
footer .inner .footer-menu ul li a {
  color: var(--color-text-primary);
  text-decoration: none;
  opacity: .8;
  transition: var(--transition);
}
footer .inner .footer-menu ul li a:hover {
  opacity: 1;
}
body.dark footer .inner .footer-menu ul li a {
  color: #A0A0A0;
  opacity: 1;
}
body.dark footer .inner .footer-menu ul li a:hover {
  color: #FFD3A2;
}
footer .footer-contacts .phone,
footer .footer-contacts .email {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.5em;
}
footer .footer-contacts .phone a,
footer .footer-contacts .email a {
  font-size: 16px;
  line-height: 1.5em;
  color: var(--color-text-primary);
  text-decoration: none;
}
body.dark footer .footer-contacts .phone a,
body.dark footer .footer-contacts .email a {
  color: #C8C8C8;
}
body.dark footer .footer-contacts .phone a:hover,
body.dark footer .footer-contacts .email a:hover {
  color: #FFD3A2;
}
footer .footer-contacts .phone a {
  font-weight: 500;
  letter-spacing: 1px
}
footer .footer-contacts .worktime {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.5em;
}
footer .footer-contacts .warning {
  margin: 2rem 0 0;
  font-size: 14px;
}
footer .footer-contacts .warning * {
  font-size: 14px;
  line-height: 1.3em;
}
footer .footer-contacts .warning p:last-of-type {
  margin: 0;
}

footer .socials-items {
  margin-top: 2rem;
  justify-content: flex-end;
}

footer .copyright {
  margin: 4rem 0;
  font-size: 14px;
  font-weight: 300;
}
footer .captcha {
  margin: 2rem 0;
}
footer .captcha,
footer .captcha * {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-color-primary);
}

@media screen and ( max-width: 991px ) {
  footer .inner {
/*    margin: -1rem;*/
		margin: 0;
    flex-wrap: wrap;
  }
  footer .inner .footer-menu-left,
  footer .inner .footer-menu-right,
  footer .inner .footer-contacts {
    margin: 1rem 1rem;
  }
  footer .inner .footer-menu-left,
  footer .inner .footer-menu-right {
    flex: 0 0 calc(50% - 2rem);
  }
  footer .inner .footer-contacts {
    flex: 0 0 calc(100 - 2rem);
  }
}

@media screen and ( max-width: 575px ) {
  footer .inner {
    margin: 0;
  }
  footer .inner .footer-menu-left,
  footer .inner .footer-menu-right,
  footer .inner .footer-contacts {
    flex: 0 0 100% !important;
    margin: 1rem 0;
  }
  footer .socials-items {
    justify-self: flex-start;
  }
}