.footer {
  margin-top: 34px;
}
.footer__links {
  display: flex;
  justify-content: start;
  max-width: 980px;
  margin: 0 auto;
}
.footer__link-block {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.footer__link-block__title {
  font-family: Oswald;
  color: rgb(69, 69, 69);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: -0.9px;
}
.footer__link-block__link {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  text-decoration: none;
}
.footer__link-block__link--active,
.footer__link-block__link:hover {
  color: #fff;
}
.footer__bottom {
  max-width: 1000px;
  padding: 20px 0px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copyright {
  font-size: 12px;
  color: rgb(87, 87, 87);
  font-weight: 700;
}
.footer__icons {
  display: flex;
  gap: 10px;
  height: 44px;
}
.footer__icons > * {
  width: 40px;
  height: 40px;
}

@media (max-width: 1180px) {
  .footer__links {
    max-width: 83%;
  }
  .footer__bottom {
    max-width: 85%;
  }
}

@media (max-width: 1000px) {
  .footer__link-block {
    flex: 0 0 33%;
  }
}

@media (max-width: 800px) {
  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer__link-block {
    width: 100%;
    text-align: center;
  }

  .footer__link-block__title {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
  }

  .footer__link-block__link {
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
  }
}