.navbar {
  padding: 0;
  position: fixed;
  z-index: 9999;
  top: 25%;
  right: 1%;
  color: #000;
  box-shadow: 0 0 0;
  display: flex;
  justify-content: end;
  /* Sticky */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s;
}
.navbar .navbar-brand {
  padding: 10px 2%;
}
.navbar .navbar-brand img {
  height: 3rem;
}
.navbar .navbar-Link {
  display: flex;
  flex-direction: column;
}
.navbar .navbar-Link .btn {
  flex: 1;
  font-size: 1.5rem;
  min-width: 60px;
  color: #fff;
  background: #628fa2;
  padding: 10px 14px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 5px 0;
}
.navbar .navbar-Link .btn:hover, .navbar .navbar-Link .btn:active {
  background: #fff;
  color: #628fa2;
  border: 1px solid #628fa2;
}
.navbar.Sticky {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .navbar {
    box-shadow: 0px -6px 20px rgba(0, 0, 0, 0.1);
    bottom: 0;
    top: auto;
    width: 100%;
    right: 0;
    background-color: rgba(252, 252, 252, 0.571);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
  .navbar .navbar-brand {
    display: none;
  }
  .navbar .navbar-Link {
    width: 100%;
    flex-direction: row;
  }
  .navbar .navbar-Link .btn {
    min-width: auto;
    font-size: 1.3rem;
    padding: 10px 0;
    background: transparent;
    color: #628fa2;
    border-radius: 0;
    margin: 0;
    border: 0;
    border-left: 1px solid rgba(117, 168, 190, 0.3058823529);
  }
  .navbar .navbar-Link .btn:first-child {
    border-left: 0;
  }
  .navbar .navbar-Link .btn:hover, .navbar .navbar-Link .btn:active {
    background: #628fa2;
    color: #fff;
  }
}/*# sourceMappingURL=nav.css.map */