.footer {
  background: #0b0b0b;
  color: white;
  padding: 4rem 0 2rem;
}

.footer__container {
  max-width: 1300px;
  width: min(90%, 1300px);

  margin-inline: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__logo {
  width: 100px;
  height: auto;
}

.footer__title {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.footer__text {
  color: rgba(255, 255, 255, .8);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__nav a {
  display: flex;
  align-items: center;
  gap: .5rem;

  color: rgba(255, 255, 255, .85);
  transition: .3s;
}

.footer__nav i {
  font-size: 1.3rem;
}

.footer__nav a:hover {
  color: var(--primary);
}

.footer__bottom {
  grid-column: 1 / -1;

  margin-top: 2rem;
  padding-top: 2rem;

  border-top: 1px solid rgba(255, 255, 255, .15);

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  gap: 1rem;
}

.footer__bottom p {
  color: rgba(255, 255, 255, .7);
}

.footer__bottom a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }

  .footer__nav {
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

}
