.login-menu {
  position: relative;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* optional: spacing */
.login-menu .menu-link {
  cursor: pointer;
  font-size: 16px;
  color: #4BABE0;
  font-weight: bold;
}
.site-header {
  position: relative;
  width: 100%;
  z-index: 999;
  transition: 0.3s;
}

.site-header .container-header {
  box-shadow: 0px 0px 30px 0px rgb(75 171 224 / 12%);
  border-radius: 80px;
/*   margin-top: 25px;
  margin-bottom: 25px; */
  max-width: 1200px;
  margin: 25px auto 25px; 
  background-color: #fff;
}

.site-header a {
  text-decoration: none;
  font-family: inherit;
}

.site-header a:hover {
  color: inherit;
}

.site-header .logo {
  margin-bottom: 0;
}

.site-header .logo img {
  height: 30px;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.site-header.default {
  background: transparent;
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
/*   background: #fff !important; */
  
}

/* Layout */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
}

/* LOGO SWITCH */
.logo-light { display: none; }

.site-header.transparent .logo-dark { display: none; }
.site-header.transparent .logo-light { display: block; }

.site-header.scrolled .logo-dark { display: block; }
.site-header.scrolled .logo-light { display: none; }

/* NAV */
.main-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
}

.menu-item {
  position: relative;
}

.nav a {
  text-decoration: none;
  font-size: 16px;
  color: #132543;
}

/* WHITE MENU */
.site-header.transparent .nav a,
.site-header.transparent .login {
  color: #fff;
}

/* SCROLL BACK */
.site-header.scrolled .nav a,
.site-header.scrolled .login {
  color: #1a2a44;
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 10px 15px;
  list-style: none;
}

.dropdown li {
  margin-bottom: 5px;
}

.menu-item:hover > .dropdown {
  display: block;
}

.level-3 {
  left: 100%;
  top: 0;
}

/* CTA */
.cta-header {
    background: #AB9151;
    border-radius: 20px;
    color: #fff;
    padding: 10px 25px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: inherit;
}

/* HAMBURGER */
.hamburger {
  display: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #000;
}

.site-header.transparent .hamburger span {
  background: #fff;
}

.mobile-menu:not(.active) {
  right: -100% !important;
}
.mobile-menu {
  display: none !important;
}
/* MOBILE */
@media (max-width: 992px) {

  .nav,
  .header-right {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 80%;
    height: 100%;
    background: #0f1f3d;
    padding: 30px;
    transition: 0.3s;
  }
  
  .mobile-menu ul {
    padding: 0;
  }
  
  .mobile-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .mobile-link a {
    color: #fff;
    text-decoration: none;  
  }

  .mobile-menu.active {
    right: 0;
    z-index: 9999;
  }

  .mobile-sub {
    display: none;
    padding-left: 15px;
  }

  .mobile-item.open > .mobile-sub {
    display: block;
    padding-left: 25px;
  }

  .mobile-menu {
    display: block !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #0f1f3d;
    padding: 40px;
    transition: 0.3s;
  }

  .mobile-menu.active {
    right: 0;
  }
  .toggle {
    cursor: pointer;
  }
  .site-header .container-header {
    margin: 15px;
  }
  
  
  
/* {% if request.path.startswith(item.url) %}active{% endif %} */