.footer {
  color: var(--text-color);
  padding: 28px 0 16px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__logo-img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 72px;
  object-fit: contain;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px 32px;
}
.footer__link {
  display: inline-flex;
  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__payments, .footer__providers {
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
}
.footer__payments-title, .footer__providers-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.85;
}
.footer__payments-list, .footer__providers-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  gap: 12px 16px;
}
.footer__payments-item, .footer__providers-item {
  flex: 0 0 auto;
  max-width: 100%;
}
.footer__payments-link, .footer__providers-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer__payments-link:hover, .footer__providers-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.footer__payments-img, .footer__providers-img {
  display: block;
  width: auto;
  max-width: min(88px, 100%);
  max-height: 32px;
  object-fit: contain;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.368627451);
}
.footer__images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  gap: 16px 20px;
}
.footer__image {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  max-width: 100%;
}
.footer__image-img {
  display: block;
  max-height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.footer__image:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3333333333);
  transform: translateY(-50%);
}
.footer__text {
  flex: 1 1 280px;
  min-width: 0;
  max-width: 100%;
  margin-right: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.76;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.footer__copyright {
  flex: 0 1 auto;
  margin-left: auto;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.7;
  text-align: right;
  white-space: normal;
}

@media screen and (max-width: 992px) {
  .footer__images {
    justify-content: center;
  }
  .footer__text {
    flex-basis: 100%;
    text-align: center;
  }
  .footer__copyright {
    flex-basis: 100%;
    margin-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 24px 0 14px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer__links {
    justify-content: center;
    gap: 12px 20px;
  }
  .footer__logo-img {
    max-width: 140px;
    max-height: 56px;
  }
  .footer__payments,
  .footer__providers {
    margin-top: 16px;
    text-align: center;
  }
  .footer__payments-list,
  .footer__providers-list {
    justify-content: center;
    gap: 10px 14px;
  }
  .footer__payments-img,
  .footer__providers-img {
    max-width: 72px;
    max-height: 28px;
  }
  .footer__bottom {
    margin-top: 16px;
    padding-top: 16px;
    gap: 12px;
  }
  .footer__image:not(:last-child)::after {
    display: none;
  }
  .footer__image-img {
    max-height: 30px;
  }
  .footer__text,
  .footer__copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 568px) {
  .footer__links {
    gap: 10px 16px;
  }
  .footer__link {
    font-size: 13px;
  }
}

/*# sourceMappingURL=footer.css.map */
