.footer {
  background-image: url("../../../public/images/footer-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 178px 0px 18px;
}

.footer-content {
  text-align: center;
}

.footer-content p {
  margin: 30px 0px;
  color: var(--white-color);
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  list-style-type: none;
  margin-bottom: 0;
}

.footer .footer-links li a {
  font-style: italic;
  background: linear-gradient(180deg, #f8c18b 36.11%, #f6d7b8 71.43%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.footer .footer-links li a:hover {
  color: var(--theme-color);
}

.footer .footer-social-links {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin: 30px 0px;
}

.footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #f8c18b 0%, #f6d7b8 100%);
  padding: 17px 0px;
  border-radius: 10px;
}

.footer .copyright p {
  font-style: normal;
  color: var(--black-color);
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.footer .copyright p a {
  text-decoration: none;
  color: var(--black-color);
}

@media (max-width: 1366px) {
  .footer {
    padding: 65px 0px 18px;
  }
}

@media (max-width: 428px) {
  .footer-content p {
    font-size: 12px;
  }

  .footer .footer-links {
    display: block;
    padding: 0;
  }

  .footer .footer-links li {
    margin-bottom: 10px;
  }

  .footer .copyright {
    display: block;
  }

  .footer .copyright p {
    margin-top: 10px;
    font-size: 14px;
  }

  .footer {
    padding: 25px 0px 18px;
  }

  .footer .footer-social-links {
    padding: 0;
  }
}
