@charset "utf-8";
/* CSS Document */

.footer-navbar {
  display: flex;
  background-color: #009999;
  padding: 1em 0;
  font-family: 'Montserrat', sans-serif;  /* Ajout de la police Montserrat */
}

.footer-section {
  flex-grow: 1;
  text-align: center;
  position: relative;
  color: white;
}

.footer-section img {
  max-width: 50px;
  filter: invert(100%);
}

.footer-section small {
  display: block;
  color: white;
}

.popup-content {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  z-index: 1;
}

.footer-navbar {
  transition: bottom 0.3s ease-in-out;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
