* {
    -webkit-tap-highlight-color: transparent !important;
}

.nav-item {
    text-align: center;
    color: #333;
    text-decoration: none;
    flex-grow: 1;
}

.nav-item .icon {
    font-size: 20px;
}

.nav-item .text {
    font-size: 12px;
    font-weight: 500;
}

.nav-item .icon,
.nav-item .text {
    display: block;
}

.nav-item:hover {
    color: var(--primary-color);
}

.bottom-nav-item-active {
    color: var(--primary-color);
}

@media (min-width: 601px) {

.sticky-cont{
        top: 55px !important;
    }
    .web-navbar {
        background-color: rgba(0, 0, 0, 0.5);
}
    .nav-item {
        flex-grow: unset !important;
    }

    .nav-item .text {
        font-size: 20px !important;
        color: white;
    }

    .nav-item .icon {
        display: none !important;
    }

    .web-navbar {
        box-sizing: border-box;
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        padding: 10px;
        z-index: 10000;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        position: fixed;
        width: 100%;
        top: 0;
        transition: background-color 0.3s ease;
        gap: 50px;
    }

    .bottom-nav-item-active .text {
        color: #ee165e !important;
    }

    .web-nav-item {
        color: #fff;

        text-decoration: none;
        text-align: center;
    }

    .web-icon {
        font-size: 24px;
    }

    .web-text {
        font-size: 22px;
    }

    .web-bottom-nav-item-active {
        color: #007bff;
    }

    .scrolled {
        background-color: rgba(0, 0, 0, 0.5);
    }
}