header {
    height: 80px;
    background-color: rgba(0,0,0,.75);
}

header nav {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}


.nav_logo {
    display: inline-block;
    width: 120px;
    height: 50px;
    margin-left: 300px;
}

.nav_logo img {
    width: 100%;
    height: 100%;
}

header nav ul {
    width: 1123px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header nav ul li {
    color: #fff;
    margin: 0 28.5px;
    text-align: center;
    color: #b7ae8f;
    cursor: pointer;
    position: relative;
}

header nav ul li a {
    text-decoration: none !important;
    color: #b7ae8f;
}

header nav ul li a p {
    font-size: 8px;
    letter-spacing: -1px;
}

header nav ul li.nav_active a {
    color: #fff9d8;
}

header nav ul li.nav_active .nav_active_icon {
    position: absolute;
    display: inline-block;
    width: calc(100% + 40px);
    height: 12px;
    background: url('../images/indexapp/nav_active.png') no-repeat;
    background-size: 100% 100%;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

header nav ul li:hover a {
    color: #fff9d8;
}

.loginBtn {
  border-radius: 5px;
  background-color: rgb(255, 197, 73);
  width: 150px;
  height: 46px;
  margin-left: 77px;
  color: #343023;
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  text-decoration: none !important;
}

@media screen and (max-width: 767px) {
    header.fixed-top {
        display: none;
    }
}