.footer {
  background-color: var(--color-grey-2);
  padding: 40px 0 48px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}
.footer__nav-links-block {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .footer__socials {
    grid-column: 1 / span 4;
    grid-row: 3;
  }
}
@media screen and (min-width: 1024px) {
  .footer__socials {
    grid-column: 2 / span 4;
    grid-row: 3;
  }
}
.footer__logo {
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-bottom: 64px;
    grid-column: 1 / span 4;
  }
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    grid-column: 1;
  }
}
.footer__logo svg {
  width: 102px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .footer__logo svg {
    width: 119px;
    height: 56px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__logo svg {
    width: 136px;
    height: 64px;
  }
}
.footer__privacy-policy {
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}
.footer__privacy-policy-link {
  display: block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-grey-3);
  text-underline-offset: 3px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
@media screen and (min-width: 1024px) {
  .footer__privacy-policy-link:hover {
    border-bottom: 1px solid var(--color-orange);
    color: var(--color-orange);
    transition: all 0.2s;
  }
}
@media screen and (min-width: 768px) {
  .footer__socials {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer__social-networks {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .footer__social-networks {
    margin-bottom: 0;
  }
}
.footer__social-network-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
