@media (min-width: 768px) {
  #TopLinks {
    height: 100%;
  }
  #TopLinks .navbar-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* Style for the floating button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #25d366;
  /* WhatsApp green */
  color: white;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.whatsapp-button:hover {
  -webkit-box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
/* Style for the WhatsApp icon */
.whatsapp-button img {
  width: 35px;
  height: 35px;
}
