.footer-nav {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  padding: 15px;
  z-index: 1000;
  bottom: 0px;
}

/* Show only on mobile & tablet */


.footer-nav a {
  text-align: center;
  flex: 1;
  color: #333;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-nav a:hover {
  color: #007bff; /* Blue hover effect */
}

.footer-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #555;
  stroke-width: 2;
  transition: stroke 0.3s ease-in-out;
}

.footer-nav a:hover svg {
  stroke: #007bff; /* Blue hover effect */
}
.h-25 {
    height: 13% !important;
}

   @media only screen and (min-width: 600px) {
    .footer-nav {
      display: none;
    }
    .h-25 {
      display: none;
    }
  }