/* Masquer/afficher les footers selon la taille de l'écran */

.footer-mobile {
  display: none;
}

.footer-desktop {
  display: block;
}

@media (max-width: 768px) {
  .footer-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 9999;
  }

  .footer-desktop {
    display: none;
  }

  .app-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
  }

  .app-nav-item {
    text-align: center;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    flex: 1;
  }

  .app-icon {
    display: block;
    font-size: 20px;
  }
  .hp-page__sidebar:first-child {
        display: block;
    }
}
