.burger-menu {
display: block;
cursor: pointer;
position: fixed; top: 5px; right: 5px; z-index: 100000; padding: 15px;
}
.burger-menu span {
display: block;
width: 25px;
height: 2px;
background-color: #fff;
margin: 4px 0;
transition: all 0.3s ease-in-out;
} .custom-nav-container .desktop-navigation {
display: none;
} .mobile-overlay {
position: fixed;
top: -100vh;
left: 0;
width: 100%;
height: 100vh;
background-color: #000C33;
z-index: 99998; display: flex;
justify-content: center;
align-items: baseline;
transition: top 300ms ease-in-out;
padding-top: 20vh;
}
.mobile-overlay.active {
top: 0;
}
.mobile-overlay .mobile-navigation ul.custom-mobile-menu {
list-style: none;
padding: 0;
margin: 0;
text-align: center;
}
.mobile-overlay .mobile-navigation .menu-item a {
font-family: 'Montserrat', sans-serif;
font-size: 1.3rem;
color: #f5f5f5;
text-decoration: none;
text-transform: uppercase;
letter-spacing: -1px;
line-height: 2;
display: block;
padding: 10px 0;
transition: color 0.3s;
}
.mobile-overlay .mobile-navigation .menu-item a:hover, .mobile-overlay .mobile-navigation .menu-item a:focus {
color: #f5f5f5;
} .mobile-overlay .menu-item-language-switcher {
padding: 10px 0;
line-height: 2;
font-family: 'Montserrat', sans-serif;
font-size: 1.3rem;
color: #f5f5f5;
text-transform: uppercase;
letter-spacing: -1px; display: flex;
justify-content: center;
align-items: center;
gap: 0.5ch; }
.mobile-overlay .menu-item-language-switcher a {
color: #f5f5f5;
text-decoration: none;
transition: color 0.3s;
}
.mobile-overlay .menu-item-language-switcher a:hover,
.mobile-overlay .menu-item-language-switcher a:focus {
color: #ECFF00;
}
.mobile-overlay .menu-item-language-switcher .wpml-active-lang {
color: #ECFF00;
font-weight: bold;
}  .burger-menu.active span:nth-child(1) {
transform: rotate(45deg) translate(4px, 4px);
}
.burger-menu.active span:nth-child(2) {
opacity: 0;
}
.burger-menu.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
body.no-scroll {
overflow: hidden;
} @media (min-width: 993px) { .burger-menu,
.mobile-overlay {
display: none !important;
} .custom-nav-container .desktop-navigation {
display: block;
}
.custom-nav-container .desktop-navigation ul.custom-desktop-menu {
display: flex;
align-items: center; justify-content: flex-end;
list-style: none;
margin: 0;
padding: 0;
}
.custom-nav-container .desktop-navigation .menu-item {
margin-left: 25px;
}
.custom-nav-container .desktop-navigation .menu-item-language-switcher a {
margin-left: 0px;
}
.custom-nav-container .desktop-navigation li.menu-item-language-switcher {
margin-left: 50px;
}
.custom-nav-container .desktop-navigation .menu-item a {
font-family: 'DM Sans', sans-serif;
font-size: 1rem;
color: #f5f5f5;
text-decoration: none;
padding: 15px 0;
position: relative;
transition: color 0.3s;
}
.custom-nav-container .desktop-navigation .menu-item a:hover {
color: #fff;
} .desktop-navigation .menu-item-language-switcher {
font-family: 'DM Sans', sans-serif;
font-size: 1rem;
color: #f5f5f5;
}
.desktop-navigation .menu-item-language-switcher a {
color: #f5f5f5;
text-decoration: none;
transition: color 0.3s;
}
.desktop-navigation .menu-item-language-switcher a:hover {
color: #fff;
}
.desktop-navigation .menu-item-language-switcher .wpml-active-lang {
color: #ECFF00;
font-weight: bold;
} }