.navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}

.nav-item a {
    color: #2b2b2b;
}

.navbar-desktop {
    width: 450px;
    height: 80px;
    border-radius: 20px;
}

.navbar-desktop2 {
    width: 80px;
    height: 450px;
    border-radius: 20px;
}

.navbar-position {
    width: auto;
    height: auto;
    position: absolute;
    top: 80%;
}

.nav-item-content,
.nav-item-content-adaptive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-item-content,
.nav-item-content-adaptive svg path {
    transition: all 0.3s ease;
}

.nav-item.active {
    background-color: #f1f1f1;
    border-radius: 10px;
}

.nav-item.active a {
    color: #24b44e;
}

.nav-item.active .nav-item-content svg path {
    stroke: #24b44e;
}

.nav-item.active .nav-item-content-adaptive svg path {
    fill: #24b44e;
}

.nav-item-content:hover svg path {
    stroke: #24b44e;
}

.nav-item-content-adaptive:hover svg path {
    fill: #24b44e;
}

.nav-item-content svg,
.nav-item-content-adaptive svg {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

@media (max-width: 375px) {
    .navbar-nav {
        gap: 0.3rem;
    }
    .nav-item-content svg,
    .nav-item-content-adaptive svg {
        width: 25px;
        height: 25px;
        margin-bottom: 5px;
    }
}

@media (max-width: 435px) {
    .navbar-desktop,
    .navbar-desktop2 {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100% !important;
        height: 80px !important;
        border-top: 1px solid #dbdbdb;
        border-radius: 0px !important;
    }
}

@media (min-width: 1024px) {
    .navbar-nav2 {
        flex-direction: column !important;
    }
    .navbar-position2 {
        width: auto;
        height: auto;
        position: absolute;
        left: calc(60% - 30% - 80px);
        top: 20%;
        z-index: 3;
    }
}

@media (max-width: 1023px) {
    .navbar-nav2 {
        flex-direction: row !important;
    }
    .navbar-desktop2 {
        width: 450px;
        height: 80px;
        border-radius: 20px;
    }

    .navbar-position2 {
        width: auto;
        height: auto;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }
}
