
footer {
  background: #070707;
  color: var(--bs-white);

  .footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    @media (max-width: 1199px) {
      flex-direction: column;
    }
  }

  .footer-content {
    max-width: 650px;
    flex-wrap: wrap;

    img {
      margin-bottom: 30px;
    }
  }

  .footer-links {
    display: flex;
    gap: 60px;

    @media (max-width: 576px) {
      flex-direction: column;
      gap: 30px;
    }

    .col-links .d-flex {
      flex-direction: column;
      gap: 10px;
    }
    .link-title {
      font-weight: 700;
      margin-bottom: 20px;
    }

    a {
      text-decoration: none;
      color: var(--bs-white);
      white-space: nowrap;
    }

    > .col-links:first-of-type a {
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s ease;
      width: fit-content;
    }

    > .col-links a:hover {
      border-color: var(--bs-white);
    }
  }

  .copyright {
    margin-top: 60px;
    text-align: center;

    a {
      text-decoration: none;
      color: var(--bs-white);
    }
  }
}