.navbar-list{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.navbar-list-item > a{
    text-decoration: none;
}

.burger{
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.slice{
    background-color: rgba(var(--clr-blue));
    width: 25px;
    height: 4px;
    margin: 1.5px;
    border-radius: 20%;
}

.burger-menu{
    display: flex;
    position:fixed;
    z-index: 110;
    top: 5rem;
    right: 100%; /*move to 0 to show the menu*/
    width: 40%;
}
.burger-menu-list{
    display: flex;
    flex-direction: column;
    margin: 0%;
    padding: 0;
    width: 100%;
}
.burger-menu-list-item{
    display: flex;
    align-items: center;
    height: 5rem;
    width: 100%;
    margin-block: 2px;
    padding-inline: 2rem;
    background-color: rgb(var(--clr-orange-light));
    text-decoration: none;
}

.burger-menu-list-item2{
    display: flex;
    align-items: center;
    height: 5rem;
    width: 100%;
    margin-block: 2px;
    padding-inline: 2rem;
    background-color: rgb(255,255,255);
}

@media screen and (max-width: 1100px) {
    .navbar-list{
        gap: 1rem;
    }
}
@media screen and (max-width: 650px) {
    .burger-menu{
        width: 70%;
    }
}
@media screen and (max-width: 350px) {
    .burger-menu{
        width: 100%;
    }
    .burger-menu-list{
        margin: 0;
    }
}
@keyframes click-burger {
    from{
        transform: translatex(100%)}
    to{transform: translatex(0%)}
}

.burger-toggle .burger-top{
    transform: rotate(45deg) translate(4px, 6px);
}
.burger-toggle .burger-center{
opacity: 0;
}
.burger-toggle .burger-bottom{
    transform: rotate(-45deg) translate(4px, -6px);
}
.menu-toggle{
    right: 0%
}