.nav-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    background-color: #2D2D2D;
    height: 60px;
    padding: 0 8px;
    border-radius: 30px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    transition: all 0.2s ease;
}

.nav-wrapper.full {
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
}

.menu-wrapper {
    display: flex;
    width: fit-content;
    margin-left: auto;
}

.nav {
    position: sticky;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 5;
    height: 60px;
}

.nav-link {
    color: white;
    font-size: 12px;
    white-space: nowrap;
    padding: 0 0 0 16px;
}

.nav-link .right {
    margin-left: 2px;
}

.nav-link i {
    color: white;
    font-size: 20px;
    width: 16px;
}

.logo-hathi {
    height: 55px;
    display: block;
}

.input-search {
    background-color: #202020;
    padding-right: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    border-radius: 18px !important;
    border: none !important;
    width: 150px;
}

.icon-search {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--icon-inside-rounded-color);
    background-color: var(--button-blue);
    border-radius: 50%;
    height: 24px;
    width: 24px;
    pointer-events: none;
    display: flex;
}

.icon-search i {
    font-size: 16px;
    margin: auto;
    display: block;
}

.input-search::placeholder {
    opacity: 0.2;
}

.btn-login {
    height: 36px !important;
    line-height: 36px !important;
    font-size: 12px !important;
}

.burger-menu {
    display: none !important;
}

.menu-burger-dropdown {
    display: none;
    background-color: #2D2D2D;
    padding: 20px 12px;
    border-radius: 20px;
    position: absolute;
    width: 250px;
    top: 85px;
    right: 40px;
}

.menu-burger-dropdown .input-search {
    width: 100%;
}

.menu-burger-dropdown .icon-search {
    right: 6px;
}

.menu-toggle {
    position: absolute;
    right: 24px;
    top: 49%;
    transform: translate(0, -50%);
    height: 24px;
    width: 24px;
}

.menu-toggle,
.menu-toggle:hover {
    color: #fff;
}

.menu-toggle-bar {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    right: 0;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: white;
    transition: all 0.3s ease;
}

.menu-toggle-bar.menu-toggle-bar--top {
    transform: translate(0, -8px);
}

.menu-toggle-bar.menu-toggle-bar--bottom {
    transform: translate(0, 8px);
}

.red-notif {
    display: inline-block;
    background-color: red;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-bottom: 6px;
}

.nav-open .menu-toggle-bar.menu-toggle-bar--top {
    transform: translate(0, 0) rotate(45deg);
}

.nav-open .menu-toggle-bar.menu-toggle-bar--middle {
    opacity: 0;
}

.nav-open .menu-toggle-bar.menu-toggle-bar--bottom {
    transform: translate(0, 0) rotate(-45deg);
}

.dropdown-content {
    background-color: #323232;
    border-radius: 10px;
    /* margin-top: 20px !important; */
}
.dropdown-content li a {
    color: white;
    font-size: 12px;
}
.dropdown-content li:hover,
.dropdown-content li.active {
    background-color: #0B3148;
}

@media (max-width: 1150px) {
    .non-burger-menu {
        display: none !important;
    }

    .burger-menu {
        display: block !important;
    }
}

 @media (max-width: 575px) {
    .non-burger-menu {
        display: none !important;
    }

    .burger-menu {
        display: block !important;
    }

    .image-slider img {
        aspect-ratio: 1/1;
    }

    .mobile-m-b {
        margin-bottom: 40px;
    }

    .prev-event-title {
        margin: auto;
    }

    .menu-burger-dropdown {
        top: 70px;
        right: 20px;
    }
}