/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.footer {
  height: 60px;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  border-top: 1px solid var(--bg-dark);
  padding-block: 1rem;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer__text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__text b {
  font-weight: 500;
}
@media (max-width: 1280px) {
  .footer {
    height: 150px;
  }
  .footer__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
    gap: 0;
  }
  .footer__separator {
    display: none;
  }
  .footer__icons {
    align-items: center;
  }
}
@media (max-width: 640px) {
  .footer {
    height: 190px;
  }
  .footer__text {
    align-items: center;
  }
  .footer__container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .footer__icons {
    order: -1;
  }
}
.footer__icons {
  display: flex;
  gap: 1rem;
}
.footer__icons a {
  color: var(--fg-light);
}
.footer a i {
  font-size: 20px;
}
.footer a:hover {
  color: var(--primary-dark);
}

/*# sourceMappingURL=footer.css.map */
