/* ===============================
   HEADER
================================ */
.site-header {
    background: #2C3748;
    position: relative;
    z-index: 1000;
}

.logo-desktop {
    max-height: 48px;
}

.logo-mobile {
    max-height: 40px;
    display: none;
}

/* ===============================
   DESKTOP MENU
================================ */
.desktop-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
}
.nav-container {
    margin-right: 32px;
    display: none;
}
/* ===============================
   MOBILE MENU
================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #2C3748;
    z-index: 9999;
}

.mobile-menu:not(.show) {
   /* display: none;*/
}
.mobile-menu {
    padding: 16px;
}
header a.navbar-brand img.mobile-logo {
    width: 40px;
}
.mobile-menu__inner {
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

/* TOP */
.mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu__close {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 24px;
}

/* NAV */
.mobile-menu__nav {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 48px;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu__list li {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.mobile-menu__list a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

/* BOTTOM */
.mobile-menu__bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu__bottom {
    position: absolute;
    bottom: 16px;
    width: calc(100% - 32px);
}
.mobile-menu__phone {
    height: 48px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.mobile-menu__cta {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}
header .navbar-nav li.current-menu-item a:not([href*="#"]) {
    background: #FFFFFF26;
    color: #e5e5e5;
}
	
	

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Show burger earlier */
@media (max-width: 1199px) {
    .logo-mobile { display: block; }
    .logo-desktop { display: none; }
}

/* Desktop only on very wide screens */
@media (min-width: 1200px) {
    .mobile-menu { display: none !important; }
}
