.navbar {
  padding: 0;
  position: fixed;
  z-index: 9999;
  top: 15%;
  right: 0;
  color: #fff;
  /* Sticky */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s;
}
.navbar .navbar-Link {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.navbar .navbar-Link .btn {
  margin: 10px 0;
  background: #d0d521;
  font-size: 1.2rem;
  min-width: 90px;
  color: #060c25;
  padding: 10px 0 10px 10px;
  text-align: center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.navbar .navbar-Link .btn:hover, .navbar .navbar-Link .btn:active {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.7490196078);
  color: #060c25;
}
.navbar .navbar-Link .btn i {
  display: block;
  font-size: 2rem;
  margin-bottom: 5px;
}
.navbar .navbar-Link .btn span {
  display: block;
  font-size: 0.8rem;
}
.navbar.Sticky {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s;
}
@media (max-width: 1024px) {
  .navbar {
    top: auto;
    bottom: 0;
    width: 100%;
    background: #d0d521;
    border-top: 1px solid rgba(255, 255, 255, 0.198);
  }
  .navbar .navbar-Link {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  .navbar .navbar-Link .btn {
    flex: 1;
    min-width: auto;
    margin: 0;
    padding: 10px 20px;
    background: transparent;
    border-radius: 0px;
    border-left: 1px solid rgba(47, 46, 46, 0.198);
  }
  .navbar .navbar-Link .btn:first-child {
    border-left: 0;
  }
  .navbar .navbar-Link .btn i {
    font-size: 1.5rem;
  }
  .navbar .navbar-Link .btn span {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=nav.css.map */