.navbar {
  padding: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  color: #000;
  display: flex;
  justify-content: space-between;
  background-image: url(../images/img/nav-bg.jpg);
  background-position: bottom;
  background-size: cover;
  /* Sticky */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s;
}
.navbar .navbar-brand {
  padding: 10px 2%;
}
.navbar .navbar-brand img {
  height: 3.2rem;
}
.navbar .navbar-Link {
  display: flex;
}
.navbar .navbar-Link .btn {
  flex: 1;
  font-size: 14px;
  min-width: 140px;
  color: #fff;
  padding: 14px 0;
  text-align: center;
  border: 0;
  font-family: "Noto Serif TC", serif;
}
.navbar .navbar-Link .btn::after {
  content: "";
  width: 1px;
  height: 40%;
  background: #fff;
  position: absolute;
  top: 18%;
  right: 0;
}
.navbar .navbar-Link .btn:last-child::after {
  width: 0;
}
.navbar .navbar-Link .btn i {
  color: #0d5f58;
  background: #fff;
  padding: 1px 8px 4.5px 8px;
  border-radius: 50%;
  font-size: 24px;
}
.navbar .navbar-Link .btn span {
  display: block;
  margin-top: 8px;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.758);
}
.navbar .navbar-Link .btn .fa-facebook-f {
  padding: 8px 28px 8px 14px;
}
.navbar .navbar-Link .btn:hover, .navbar .navbar-Link .btn:active {
  border-color: transparent;
  background-color: transparent;
}
.navbar .navbar-Link .btn:hover i, .navbar .navbar-Link .btn:active i {
  color: #fff;
  background: #0d5f58;
}
.navbar.Sticky {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .navbar {
    bottom: 0;
    top: auto;
    background-image: url(../images/img/nav-bg-m.jpg);
  }
  .navbar .navbar-brand {
    display: none;
  }
  .navbar .navbar-Link {
    width: 100%;
  }
  .navbar .navbar-Link .btn {
    min-width: auto;
    font-size: 12px;
    padding: 10px 0;
  }
  .navbar .navbar-Link .btn::after {
    height: 45%;
    top: 13%;
  }
  .navbar .navbar-Link .btn .fa-facebook-f {
    padding: 6.5px 26px 6.6px 12px;
  }
}/*# sourceMappingURL=nav.css.map */