.footer {
  color: var(--text-color);
  padding: 48px 0 24px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__logo-img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.footer__link {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer__link:hover {
  color: var(--additional-c-elements);
  opacity: 1;
}
.footer__bottom {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.368627451);
}
.footer__images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.footer__image {
  position: relative;
}
.footer__image:first-child:after {
  content: "";
  position: absolute;
  right: -17px;
  top: 2px;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3333333333);
}
.footer__text {
  max-width: 470px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.7;
  margin-left: 20px;
}
.footer__text {
  max-width: 900px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.76;
}
.footer__text p:last-child {
  margin-bottom: 0;
}
.footer__copyright {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.7;
  margin-left: auto;
  max-width: 270px;
}

@media screen and (max-width: 992px) {
  .footer__bottom {
    flex-wrap: wrap;
  }
  .footer__images {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__text {
    margin: 0;
    text-align: center;
  }
  .footer__copyright {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 568px) {
  .footer__top {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .footer__links {
    margin-top: 40px;
  }
}/*# sourceMappingURL=footer.css.map */