@charset "utf-8";
#nav {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  height: 60px;
}
.nav-box {
  padding: 0 2rem;
  box-sizing: border-box;
  height: 100%;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 1rem;
  column-gap: 0;
  height: 100%;
}
.nav-logo img {
  width: 65px;
}
.nav-contact a {
  color: #fff;
  border: solid 1px #fff;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
}
.nav-contact a i {
  margin-left: 0.25rem;
}
@media screen and (max-width: 768px) {
  #nav {
    height: 55px;
  }
  .nav-box {
    padding: 0 1rem;
  }
  .nav-logo img {
    width: 55px;
  }
  .nav-contact a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}
