.footer {
  background: #efefef;
  font-family: manrope, Arial, Helvetica, sans-serif;
  color: #21201f;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;

  max-width: 1510px;
  margin-inline: auto;
  padding: 64px 50px;
}
@media (width < 1200px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (width < 768px) {
  .footer__wrapper {
    padding: 16px;
  }
}

.footer__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.footer__col._mob {
  display: none;
}
@media (width < 1200px) {
  .footer__col._mob {
    display: flex;

    & .footer__copy {
      display: block;
    }
  }
}

.footer__logo {
  width: 100%;
  max-width: 222px;
  display: block;

  & img {
    height: 100%;
    width: 100%;
  }
}
@media (width < 1030px) {
  .footer__logo {
    max-width: 150px;
  }
}

.footer__copy {
  color: #a6a6a6;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  margin: 0;
}
@media (width < 1200px) {
  .footer__copy {
    display: none;
  }
}

.footer__contact-link {
  color: inherit;
  font-size: 24px;
  font-weight: 500;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
}
@media (width < 1200px) {
  .footer__contact-link {
    font-size: 18px;
  }
}

.footer__col-title {
  color: inherit;
  font-size: 20px;
  font-weight: 500;
  font-family: inherit;
  line-height: 1;
  margin: 0;
}
@media (width < 1200px) {
  .footer__col-title {
    font-size: 18px;
    font-weight: 700;
  }
}

.footer__soc {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 230px;
}

.footer__soc-link {
  width: 64px;
  aspect-ratio: 1;
  background: center/cover no-repeat;

  &._tg {
    background-image: url("../images/footer/tg.svg");
  }
  &._vk {
    background-image: url("../images/footer/vk.svg");
  }
  &._ru {
    background-image: url("../images/footer/ru.svg");
  }
}

.footer__naast {
  width: 100%;
  max-width: 136px;
  display: block;
  margin-bottom: 16px;
}
@media (width < 1200px) {
  .footer__naast {
    margin-bottom: 0;
  }
}
