footer {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  font-size: 1rem;
  margin-top: 5rem;
  margin-bottom: 1rem;
  padding: 0 13vw;
  .footer-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    img {
      width: 7.5rem;
    }
  }

  .footer-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5rem;
    width: auto;
  }

  .footer-info-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;

    h3 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--color-cream);
      margin: 0;
    }

    p {
      font-size: 0.95rem;
      font-weight: 100;
      color: var(--color-cream);
      margin: 0;

      a {
        text-decoration: none;
        transition: color 0.2s ease;
      }
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;

      li {
        padding: 0;
        margin: 0;
        font-size: 0.95rem;
        a {
          color: var(--color-cream);
          text-decoration: none;
          font-weight: 300;
          transition: color 0.2s ease;
        }
      }
    }
  }

  hr {
    width: 100%;
    height: 0.2px;
    border: none;
    background-color: var(--color-cream);
    opacity: 0.5;
    margin: 2.5rem 0 1.2rem;
  }

  .footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    font-size: 0.85rem;
    color: var(--color-cream);
  }

  .footer-copyright {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-cream);
  }

  .footer-socials {
    display: flex;
    align-items: center;
    gap: 0.3rem;

    a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.5rem;
      height: 1.5rem;
      color: var(--color-blue-muted);
      transition: color 0.2s ease;
      svg {
        fill: var(--color-blue-muted);
      }
    }
  }

  .footer-socials-handle {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-cream);
  }
}
