/* Footer */
.eddy-container {
  max-width: 100%;
  margin: 0 auto;
}

.eddy-footer {
  background-color: #1a1a1a;
  padding: 100px 0 40px 0;
  color: #fff;
  text-align: center;
}

.eddy-footer .eddy-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.eddy-footer__nav {
  display: flex;
  gap: 44px;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  letter-spacing: 0.2px;
}

.eddy-footer__nav a {
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.eddy-footer__nav a:hover {
  text-decoration: underline;
}

.eddy-footer__socials {
  display: flex;
  gap: 14px;
  padding-top: 32px;
  padding-bottom: 22px;
}

.eddy-footer__socials a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  border-radius: 50%;
  background: #1a1a1a;
}

.eddy-footer__socials img {
  width: 48px;
  height: 48px;
  max-width: none;
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.eddy-footer__logo img {
  max-width: 120px;
  height: auto;
}

.eddy-footer__copy {
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.5px;
  letter-spacing: 1px;
}

.eddy-footer__copy p {
  margin: 0 0 4px 0;
}

.eddy-footer__copy a {
  display: block;
  margin-top: 4px;
  color: #888;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.5px;
  letter-spacing: 1.5px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: under;
  transition: color 0.3s ease;
}

.eddy-footer__copy a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .eddy-footer {
    padding-top: 100px;
  }

  .eddy-footer__nav {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 14px;
  }

  .eddy-footer__nav li:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .eddy-footer__nav li:last-child {
    grid-column: 1 / 3;
  }

  .eddy-footer__nav li:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-self: end;
    transform: translateX(51px);
  }

  .eddy-footer__nav li:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-self: start;
    transform: translateX(51px);
  }

  .eddy-footer__nav li:nth-child(4) {
    justify-self: end;
    transform: translateX(-36px);
  }

  .eddy-footer__nav li:nth-child(5) {
    justify-self: start;
    transform: translateX(-36px);
  }

  .eddy-footer__socials {
    margin-top: 35px;
    margin-bottom: 20px;
    padding: 0;
  }

  .eddy-footer__logo {
    margin-top: 8px;
  }

  .eddy-footer__copy {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .eddy-footer .eddy-container {
    padding: 0 16px;
  }

  .eddy-footer__nav {
    gap: 20px;
  }
}
