/* =========================
   NAVBAR
========================= */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
    padding: 10px 0;
}

/* NAVBAR ON SCROLL */
.navbar.scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
}
/* LOGO */
.logo-img {
    width: 150px;
    height: auto;
}
/* MENU */
.navbar-item {
    color: white !important;
    font-weight: 600;
    font-size: 15px;
}
/* BOOK BUTTON */
.book-btn {
    background: #b39454 !important;
    color: white !important;
    border: none;
    padding: 13px 18px;
}
@media screen and (max-width: 1023px) {
    .navbar .navbar-menu {
        background-color: #000000;
    }
}
