.footer{
    margin-top: auto;
}

.footer-container {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(73, 169, 255, 0.2) 0%,
    rgba(252, 124, 217, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-top: 60px;
}

.footer-nav {
  display: flex;
  width: 100%;
  margin-top: 40px;
  border-bottom: 1px solid #d3cbd9;
  padding: 0 16px 40px;
  justify-content: center;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(16px, 4vw, 60px);
  row-gap: clamp(12px, 2vw, 18px);
  justify-content: center;
}

.item-link {
  text-decoration: none;
  font-family: Ubuntu;
  font-weight: 400;
  color: #535755;
  line-height: 130%;
  padding: 6px 0;
  transition: color 0.2s;
}

.item-link:hover,
.item-link:focus-visible {
  background: linear-gradient(135deg, #49a9ff, #fc7cd9);
  background-clip: text;
  color: transparent;
}

.item-link:focus-visible {
  outline: 2px solid rgba(252, 124, 217, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-copyright {
  margin-top: 40px;
  padding-bottom: 40px;
  font-family: Ubuntu;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #858e8a;
  position: relative;
}

.footer-copyright::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/copyright.svg) no-repeat center / contain;
  left: -20px;
}