.footer {
  padding: 60px 0;
  color: var(--color-white);
  background-color: var(--color-green);
}

.footer__content {
  display: flex;
  gap: 104px;
}

.footer__logo {
  min-width: 111px;
  max-height: 92px;
}

.footer__info {
  display: flex;
  gap: 91px;
  padding-top: 16px;
}

.footer__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  row-gap: 8px;
  column-gap: 67px;
}

.footer__title {
  grid-column: span 2;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__contacts-item {
  width: fit-content;
  text-wrap: nowrap;
}

.footer__contacts-phone {
  font-weight: 700;
}

.footer__brands {
  padding-left: 104px;
  border-left: 1px solid var(--color-white);
}

.footer__brands-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 8px;
  column-gap: 116px;
}

.footer__brands-title {
  grid-column: span 3;
}

.footer__brands-item {
  width: fit-content;
  text-wrap: nowrap;
}


@media(max-width: 1760px) {

}

@media(max-width: 1440px) {

  .footer__content {
    gap: 80px;
  }

  .footer__info {
    gap: 65px;
  }

  .footer__brands {
    padding-left: 74px;
  }

  .footer__brands-list {
    column-gap: 52px;
  }

}

@media(max-width: 1200px) {

  .footer {
    padding: 30px 0;
  }

  .footer__content {
    gap: 119px;
  }

  .footer__info {
    flex-direction: column;
    gap: 30px;
  }

  .footer__contacts {
    width: fit-content;
  }

  .footer__brands {
    padding-left: 0;
    border: unset;
  }

  .footer__brands-list {
    column-gap: 64px;
  }

}

@media(max-width: 840px) {
  .footer__content {
    gap: 80px;
  }
}

@media(max-width: 720px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
  }

  .footer__info {
    padding-top: 0;
  }
}

@media(max-width: 576px) {

  .footer__logo-link {
    width: fit-content;
  }

  .footer__logo {
    height: 62px;
    min-width: unset;
    max-height: unset;
    object-fit: contain;
  }

  .footer__contacts {
    column-gap: 20px;
  }

  .footer__brands-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__brands-title {
    grid-column: span 2;
  }

}

@media(max-width: 360px) {

  .footer__contacts {
    grid-template-columns: 1fr;
  }

  .footer__title {
    grid-column: span 1;
  }

  .footer__brands-title {
    grid-column: span 2;
  }
}
