.footer-site-links {
  padding-top: 40px;
  padding-bottom: 40px;
  color: var(--dusty-rose);
}

.footer-site-links__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

p.footer-site-links__link a {
  color: var(--black-color);
}

.footer-site-links p {
  margin-bottom: 0;
}

.footer-site-links {
  z-index: 2;
  position: relative;
}

footer::before {
  content: "";
  background: linear-gradient(180deg, #e8e2d9 0%, #fff 100%);
  height: 430px;
  width: 100vw;
  left: calc((-100vw + 100%) / 2);
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  footer::before {
    height: 272px;
  }
}

@media screen and (max-width: 600px) {
  .footer-site-links__items {
    text-align: center;
    column-gap: 20px;
    row-gap: 10px;
    justify-content: center;
  }

  .footer-site-links__item:first-child {
    flex-basis: 100%;
  }

  .footer-site-links {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
