/* =================== BOTTOM NAVIGATION =================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(to right, #1e1e2f, #2e3a59);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #444;
  z-index: 999;
}
.bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.bottom-nav .nav-item span {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}
.bottom-nav .nav-item:hover {
  background: #333b55;
}
@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .bottom-nav {
    font-size: 13px;
  }
  .bottom-nav .nav-item span {
    font-size: 17px;
  }
}
