.footer__container {
  font-size: 1.4rem;
  border-top: 1px solid #e9e9e9;
  padding: 4rem 4rem 8rem 4rem;
  column-gap: 4rem;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, fit-content(420px));
}

.footer__title {
  color: #1c1c1c;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.text_button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.phone_container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__column-content {
  list-style: none;
  color: #404040;
  display: grid;
  row-gap: 1.5rem;
}

.feather {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  stroke-width: 1;
}

.footer__links li > a:hover,
.footer__about div a:hover {
  color: #656eb2;
}

.icon_container {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.icon_container > a:hover {
  transform: scale(1.1);
  filter: saturate(100%);
}

.icon_container > a {
  filter: saturate(0%);
  transition: cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.social_network_icon {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 767px) {
  .footer__links {
    order: 1;
  }

  .footer__copy {
    order: 2;
  }

  .footer__about {
    order: 0;
  }

  .footer__container {
    padding: 4rem 2rem;
    row-gap: 5rem;
    grid-template-columns: 1fr;
  }
  .footer__column-content.links {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .footer__column-content.links {
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
  }
}
