/* This is a workaround file to use the new module system in scss
Bootstrap 5.2.3 doesn't support the new @use feature but is's getting deprecated and will be removed
in October 2022 from the newest SCSS Release

*/
footer.footer {
  margin-top: 2rem;
  width: 100%;
  min-height: 3rem;
  background-color: rgb(35, 47, 62);
  position: relative;
  padding: 2rem 0;
  border-top: 5px solid rgb(42, 76, 117);
}
footer.footer ul.footer-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
}
footer.footer ul.footer-links li :is(a, a:visited) {
  color: white;
}
footer.footer ul.footer-links li a:hover {
  color: gray;
}
footer.footer ul.footer-links li a:active {
  color: black;
}
footer.footer .copyriright {
  color: black;
}

@media (max-width: 767.98px) {
  footer.footer ul.footer-links {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  footer.footer ul.footer-links li {
    font-size: 1.2rem;
    position: relative;
    transition: background-color 0.6s ease;
  }
  footer.footer ul.footer-links li a {
    display: block;
    padding: 1.5rem 0;
  }
  footer.footer ul.footer-links li a:hover {
    color: white;
  }
  footer.footer ul.footer-links li:hover {
    background-color: rgb(0, 0, 0);
  }
}/*# sourceMappingURL=footer.css.map */