.footer {
  color: var(--footer_text_color);
  background-color: var(--footer_bg_color);
  margin-top: auto;
}
.footer.--back-button {
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  .footer.--back-button {
    padding-bottom: 30px;
  }
}
@media (min-width: 1575px) {
  .footer.--back-button {
    padding-bottom: unset;
  }
}
.footer__wrapper--left .footer__logo,
.footer__wrapper--left .footer__companies-title,
.footer__wrapper--left .footer__copyright {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.footer__wrapper--left .footer__companies-list {
  display: grid;
  row-gap: 20px;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  grid-template-columns: repeat(1, auto);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  justify-items: start;
}
@media (min-width: 768px) {
  .footer__wrapper--left .footer__companies-list {
    grid-template-columns: repeat(3, auto);
  }
}
@media (min-width: 992px) {
  .footer__wrapper--left .footer__companies-list {
    grid-template-columns: repeat(4, auto);
  }
}
.footer__wrapper--center .footer__logo,
.footer__wrapper--center .footer__companies-title,
.footer__wrapper--center .footer__copyright {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.footer__wrapper--center .footer__companies-list {
  display: grid;
  row-gap: 20px;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
}
@media (min-width: 768px) {
  .footer__wrapper--center .footer__companies-list {
    grid-template-columns: repeat(3, auto);
  }
}
@media (min-width: 992px) {
  .footer__wrapper--center .footer__companies-list {
    grid-template-columns: repeat(4, auto);
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0;
}
.footer__logo img {
  max-height: 35px;
}
@media (min-width: 768px) {
  .footer__logo img {
    max-height: 50px;
  }
}
.footer__logo img[data-click-under-link], .footer__logo img[data-popunder-link] {
  cursor: pointer;
}
.footer__companies {
  padding-bottom: 32px;
}
.footer__companies-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
}
@media (min-width: 768px) {
  .footer__companies-title {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .footer__companies-title {
    font-size: 24px;
  }
}
.footer__companies-list {
  -webkit-columns: 4;
     -moz-columns: 4;
          columns: 4;
}
.footer__company {
  color: inherit;
}
.footer__company-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
}
.footer__company span {
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  opacity: 0.7;
}
.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0;
  border-top: 1px solid #383838;
}
.footer__copyright-text a {
  color: inherit;
}