.navbar__element{
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    position: fixed;
    background-color: var(--primary-color);
    z-index: 99999;
    transition: height 1.5s;
}
.navbar__element.open{
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 99999;
    transition: height 1.5s;
}
.navbar-menu{
    position: absolute;
    right: 0;
    font-size: 40px !important;
    cursor: pointer !important;
}

.navbar__logo{
    position: absolute;
    left: 0;
    height: 40px;
}

.navbar__logo img{
    height: 100%;
    width: auto;
}

.navbar-menu__element{
    padding-top: 75px;
    transition: height 1.5s;
}

.navbar-menu__item {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 25px;
    padding: 0 10px;
    border-bottom: 1px solid #000;
    transition: max-height 1.5s ease, opacity 1.5s ease, padding 1.5s ease;
}

.navbar-menu__item.active{
    background-color: var(--secondary-color);
    color: #fff;
}

.navbar-menu__item:last-child{
    border-bottom: none;
}

.navbar-menu__item:hover{
    background-color: var(--secondary-color);
    color: #fff;
    transition: background-color 0.6s;
}

.navbar-menu__item a{
    color: #000;
    text-decoration: none;
}

.navbar-menu__item:hover a{
    color: #fff;
    text-decoration: none;
    transition: color 0.6s;
}
.navbar-menu__item.show {
    max-height: 100px; /* Set a reasonable height */
    opacity: 1;
    padding: 10px;
}