* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	user-select: none;
    font-family: sans-serif;

}

html,
body {
    max-width: 100%;
    overflow-x: hidden;

}

.navbar {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(137, 141, 141);
    padding: 10px 20px;
    color: white;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: rgb(137, 141, 141, 0.8);
    backdrop-filter: blur(10px);
}
.navbar::before {
    content: " ";
    background: linear-gradient(145deg,rgb(137 141 141 / 100%) 200px, rgb(137 141 141 / 0%));
    width: 100%;
    height: calc(100% - 2px);
    left: 0;
    position: absolute;
    z-index: -2;
    top: 0px;
}

.nav-left,
.nav-right {
    list-style: none;
    display: flex;
    align-items: center;
	
}

.nav-left li,
.nav-right li {
    margin: 0 30px;
}

.nav-icon {
    height: 50px;
}

.nav-right a {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
}

.nav-right a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #e87722;
    transition: width 0.3s;
}

.nav-right a:hover::after {
    width: 100%;
}

.nav-right li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    min-width: 100px;
}

.navbar {
    z-index: 1001;
	
}

.nav-right {
    z-index: 1002;
}

.modern-banner {
    z-index: 0;
}

.dropdown {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(137, 141, 141);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 30%);
	
	
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.submenu a:hover {
    /*background-color: #005f7f;*/
}

.dropdown:hover .submenu {
    display: block;
}

.dropdown>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-width: 100%;
}

.arrow {
    font-size: 14px;
    line-height: 1;
    margin-left: 4px;
    display: inline-block;
}

.dropdown .arrow {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.dropdown.open .arrow {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}


ul#mobileMenu {
    transition: width 0.5s, height 0.5s;
}

@media (max-width: 1240px) {
    .nav-right {
        display: none;
        flex-direction: column;
        background-color: rgb(137, 141, 141);
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border: 1px solid #fff;
        padding: 10px;
        align-items: center;
        text-align: center;
        max-width: 100vw;
        overflow: visible;
		border-radius: 4px;
		box-shadow: 0 4px 8px rgb(0 0 0 / 30%)

    }


    .nav-right li {
        margin: 0;
        width: 100%;
    }

    .nav-right li a {
        min-width: auto;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }



    .nav-right.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown .submenu {
		
        max-height: 0;
        overflow: hidden;
        
		box-shadow: none;
        padding: 0;
		transition:  0.4s ease;
    }

    .dropdown.open .submenu {
        max-height: 500px;
		position: relative;
		box-shadow: 0 4px 8px rgb(0 0 0 / 30%);
        padding: 10px 0;
		
    }

    .dropdown .submenu a {
        text-align: center;
        justify-content: center;
    }

}

.highlight {
    color: #e87722;
    font-weight: bold;
}

footer {
    background-color: rgb(137, 141, 141);
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 16px;
	text-shadow: 0 0 3px #4b4b4bb3;
    min-height: 80px;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-decoration: underline;
}
