body>.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 5px;
    padding: 10px 40px;
    min-height: 100px;
    background-color: var(--primary);
    color: var(--text-contrast);
    box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.25);

    position: fixed;
    top: 0;
    width: 100%;
    transition: top 0.5s;
    z-index: 1000;
}

.nav-menu .btn-secondary.dropdown-toggle {
    transition: 0s color ease-in-out;
}

nav .head {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    text-align: center;
}

.slogan {
    margin-top: -20px;
    font-size: small;
}

body>.navbar-hidden {
    top: -166px;
}

@media screen and (max-width: 501px) {
    body>.navbar {
        padding: 10px;
    }
}

body>nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 50px;
    color: var(--text-contrast);
    transition: 0.5s color ease-in-out;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 500;

    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    justify-content: center;
}

body>nav ul .active,
body>nav ul li:hover {
    color: var(--text-contrast);
}

.start>nav ul .active,
.mobile-list .active,
.start>nav ul li:hover {
    color: var(--secondary);
}

body>nav a {
    text-decoration: none;
    color: inherit;
    margin: 0 0px;
}

body>nav>div {
    /* margin: 0 20px; */
    /* margin-left: 20px; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

body>nav>div .dropdown-menu[data-bs-popper] {
    left: unset;
    right: 0;
}

body>nav img {
    width: 180px;
    height: auto;
}

body>nav .btn {
    width: 150px;
    margin-left: 10px;
}

body>nav .link {
    text-decoration: underline;
    color: var(--primary);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 20px;
}

.mobile-menu>div {
    height: 4px;
    width: 20px;
    background-color: var(--text-primary);
    border-radius: 3px;
}

.mobile-menu {
    display: none;
}

.offcanvas {
    max-width: 80%;
}

.offcanvas-backdrop {
    height: 100%;
}

.mobile-list {
    list-style: none;
    padding-left: 0;
    width: 100%;
}

.dropdowns {
    display: flex;
    justify-content: space-between;
    padding: 0 30px 10px;
}

#offcanvasRight .offcanvas-body {
    justify-content: flex-start;
    align-items: flex-start;
}

.mobile-list li {
    padding-left: 0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.mobile-list a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 20px 30px;
}

nav .btn-secondary.dropdown-toggle {
    border: 1px solid var(--text-primary);
}

.dropdown-item {
    padding: 0 var(--bs-dropdown-item-padding-x);
}

.dropdown-item li {
    padding: var(--bs-dropdown-item-padding-y);
}

.nav-menu .btn-secondary.dropdown-toggle {
    border: none;
}

.nav-menu .btn-secondary.dropdown-toggle:hover,
.nav-menu .btn.show {
    background-color: inherit;
    color: var(--primary);
}

#offcanvasRight {
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.avatar svg,
.avatar img {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.avatar svg {
    padding-top: 10px;
    fill: var(--primary);
    position: relative;
}

.side {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bell {
    cursor: pointer;
}

.name {
    padding: 16px 20px;
    border-bottom: 3px solid var(--borders);
}

.notify .dropdown-menu {
    width: 340px;
    max-width: 70vw;
}

.notify .icon img {
    width: 40px;
    height: 40px;
}

.notify .icon {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background-color: var(--primary-green); */
    position: relative;
    padding: 10px;
}

.notify .icon i {
    /* position: absolute;
    bottom: -7px;
    right: -8px; */
    width: 25px;
    height: 25px;
    background-color: var(--cards);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    font-size: x-large;
}

.notify .content {
    flex: 1;
    white-space: normal;
}

.notify .content p {
    margin: 0;
    color: var(--text-primary);
}

.notify .dropdown-menu a {
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.notify .dropdown-item {
    padding: 8px;
}

.notify .dropdown-item.new {
    background: var(--text-primary);
}

.bell.unread {
    transform: rotate(30deg);
}

.notify {
    position: relative;
}

.notify .counter {
    position: absolute;
    width: 18px;
    height: 18px;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    bottom: 0;
    right: 0;
}

.content span {
    color: rgba(82, 74, 62, 0.82);
    font-size: 12px;
    font-weight: 400;
}

.avatar .dropdown-item li {
    padding: 5px;
}

.no-notifications {
    text-align: center;
    margin: 15px auto;
}

@media screen and (max-width: 1195px) {
    .mobile-menu {
        display: flex;
    }

    body>nav>ul,
    body>nav>div,
    .side {
        display: none;
    }
}