.footer {
  background-color: var(--color-black);
}

.footer__inner {
  background-image: url('/images/back-dog.svg');
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  background-size: 305px;
  padding-top: 45px;
  padding-bottom: 65px;

  display: flex;
  gap: 20px 60px;
  color: var(--color-gray);
}

.footer__left {
  order: 2;
}
.footer__right {
  order: 3;
}

.footer__contacts {
  display: flex;
  gap: 2px 9px;
  order: 1;
}

.footer__subtitle {
  margin-top: 20px;
  order: 2;
}

.footer__text {  
  display: flex;
  flex-direction: column;
  order: 3;
}
.footer__text__wrap {
  display: flex;
}
.text-2 {
  margin-left: 30px;
}
.footer__nav {
  display: flex;
  column-gap: 9px;
  order: 1;
}

.footer__link {
  color: #fff;
}

/* Инверсия */
.footer._inverse {
  background-color: var(--color-gray-bg);
}
.footer._inverse .footer__link {
  color: var(--color-gray);
}
.footer._inverse .footer__inner {
  background-image: url('/images/back-dog-inverse.svg');
}

@media (max-width: 720px) {
  .footer__inner {
    background-size: 366px;
    flex-direction: column;
    padding-bottom: 45px;
    background-position: calc(100% + 40px) center;
  }
  .footer__contacts {
    font-size: 26px;
    line-height: 36px;
    flex-direction: column;
  }
  .footer__nav {
    display: none;
  }
  .footer__text__wrap {
  display: flex;
  flex-direction: column;
}
.text-2 {
    margin-left: 0;
}
.footer__text {
  flex-direction: column;
}
.footer__text.text-2 {
  flex-direction: column-reverse;
  margin-top: 15px;
}
}