.footer {
  color: var(--text-color);
  padding: 48px 0 24px;
  background: #000;
  border-top: 1px solid #3b3b3b;
}
.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: 30px;
}
.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;
  flex-direction: column;
  padding-top: 30px;
}
.footer__images {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}
.footer__image {
  position: relative;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}
.footer__image:hover {
  filter: grayscale(0);
}
.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 {
  margin: 30px 0 20px;
  max-width: 900px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.8;
  display: flex;
}
.footer__text > * {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.footer__text > * img {
  margin-right: 20px;
}
.footer__text > * a {
  color: var(--additional-c-elements);
}
.footer__text p:last-child {
  margin-bottom: 0;
}
.footer__copyright {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.5;
}

@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: 768px) {
  .footer__top {
    align-items: flex-start;
  }
  .footer__logo {
    justify-content: flex-start;
  }
  .footer__links,
  .footer__images {
    justify-content: flex-start;
  }
  .footer__text {
    text-align: left;
  }
  .footer__text > * {
    justify-content: flex-start;
    text-align: left;
  }
  .footer__copyright {
    margin: 40px 0 0;
    text-align: left;
  }
}
@media screen and (max-width: 568px) {
  .footer__top {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .footer__links {
    margin-top: 40px;
    justify-content: flex-start;
  }
  .footer__text > * {
    display: block;
  }
  .footer__text > * img {
    float: left;
  }
}/*# sourceMappingURL=footer.css.map */