
:root {
    --osn: #e5fa00;
    --black: #1D1D1D;
    --bg: #262626;
    --white: #ffffff;
    --grey: #CFD9D3;

}


.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 92px;
    position: relative;
    z-index: 2;
    background: #171717;
    padding-left: 122px;
    padding-right: 122px;
    font-family: "Raleway";
    background: #1d1d1d;
}

.navbar .icon {
    font-size: 24px;
    color: #fff;
}

.navbar ul {

    list-style-type: none;
    display: flex;
    transition: transform 0.3s ease, opacity 0.3s ease;
    align-items: center;
    justify-content: space-around;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    text-align: right;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

.menu-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.menu-background.active {
    opacity: 1;
    visibility: visible;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    background-color: #3e4451;
    color: #abb2bf;
    border: 1px solid #abb2bf;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-button img,
.dropdown-button .icon {
    margin-right: 8px;
}

.dropdown-button .icon {
    border: 1px solid #abb2bf;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #3e4451;
    color: #abb2bf;
    border: 1px solid #abb2bf;
    border-radius: 8px;
    margin-top: 8px;
    width: 150px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #abb2bf;
}

.dropdown-menu a:hover {
    background-color: #4b5261;
}

/*  */

.dropdown_lil {
    position: relative;
    display: inline-block;
}

.dropdown-button_lil {
    background-color: var(--osn);
    color: var(--black);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

.dropdown-button_lil img,
.dropdown-button_lil .icon_lil {
    margin-right: 8px;
}

.dropdown-button_lil .icon_lil {
    font-size: 30px;
    color: var(--black);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-menu_lil {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--black);
    color: var(--white);
    border-radius: 8px;
    margin-top: 8px;
    width: fit-content;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.dropdown-menu_lil a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #abb2bf;
}

.dropdown-menu_lil a:hover {
    background-color: var(--osn);
    color: var(--black);
}


@media (max-width: 1200px) {
    .navbar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg);
        padding: 10px 20px;
        transform: translateY(-20px);
        opacity: 0;
        text-align: left;
    }

    .navbar ul.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .navbar .menu-toggle {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }
}

.menu-toggle:before {
    content: '☰';
    display: block;
    transition: transform 0.3s ease;
}

.menu-toggle.active:before {
    content: '✖';
}

.dropdown-menu_lil_wa {
    width: auto;
}

.bg_non {
    background: none;
    margin-right: 0px !important;
}


.menu_mail {
    display: flex;
    gap: 10px;
    color: #959595;
    padding: 10px 15px;
    border-bottom: 1px solid #959595;
}