:root {
    font-size: 18px;
}


/*Top nav*/
.nav-container {
    background-color: rgb(160, 34, 2);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.nav>.nav-item>.nav-link {
    color: aliceblue;
}

.nav-hover:hover {
    background-color: rgb(233, 66, 24);
}

.nav-hover>.nav-link:hover {
    color: yellow;
}

.nav-icon>svg:hover {
    color: blue;
}

@media (max-width: 750px) {
    .nav>.nav-crma {
        display: none;
    }
}
@media (max-width: 460px) {
    .nav>.nav-ms {
        display: none;
    }
}

.nav-inside {
    display: none;
}

@media (max-width: 991px) {
    .nav-inside {
        display: block;
    }

    .nav-bar>.nav>li {
        font-size: 16px;
    }
}



/* ham */
.nav-bar>.nav>li>.navbar-toggler {
    margin-top: 14.5px;
    border-radius: 4px;
}


.custom-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 15px;
    width: 30px;
}

.custom-toggler .bar {
    display: block;
    height: 2px;
    width: 20px;
    background-color: #fffb00;
    border-radius: 3px;
}


.offcanvas-dropdown .dropdown-menu {
    width: 100%;
    background-color: #f8f9fa;
    border: none;

}