.footer {
  background: var(--footer-background, var(--block-bg));
  color: var(--text-color);
  padding: 56px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  align-items: start;
}
.footer__column {
  min-width: 0;
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 18px;
}
.footer__logo-img {
  display: block;
  width: auto;
  max-width: 170px;
  height: auto;
}
.footer__text {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.8;
}
.footer__text p:last-child {
  margin-bottom: 0;
}
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: none;
}
.footer__social-icon {
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__title {
  margin: 0 0 25px;
  color: var(--color-for-h3-titles);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.footer__contacts {
  padding-left: 40px;
}
.footer__menu, .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link, .footer__contact {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  opacity: 0.78;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer__link:hover:before, .footer__contact:hover:before {
  opacity: 1;
}
.footer__link {
  gap: 12px;
}
.footer__link:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--text-color);
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
  flex: 0 0 auto;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__link:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.8;
  flex: 0 0 auto;
}
.footer__contact--address {
  position: relative;
}
.footer__contact--address:after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  display: flex;
  background: url(../../img/icons/map.svg) no-repeat center/cover;
}
.footer-mail {
  position: relative;
}
.footer-mail::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  display: flex;
  background: url(../../img/icons/email.svg) no-repeat center/cover;
}
.footer-mob {
  position: relative;
}
.footer-mob:after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  display: flex;
  background: url(../../img/icons/telephone.svg) no-repeat center/cover;
}
.footer__contact--address {
  display: block;
  max-width: 260px;
}
.footer__contact--address p:last-child {
  margin-bottom: 0;
}
.footer__bottom {
  padding-top: 20px;
  padding-left: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__copyright {
  font-size: 16px;
  opacity: 0.68;
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0 22px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom {
    margin-top: 30px;
  }
}/*# sourceMappingURL=footer.css.map */