



body1{
    
    margin: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    -webkit-tap-highlight-color: transparent;
    transition: background-color var(--duration);

}


.menu1__item{
    
    all: unset;
    flex-grow: 1;
    z-index: 100;
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    align-items: center;
    will-change: transform;
    justify-content: center;
    padding: 2.2em 0 0.85em;
    transition: transform var(--timeOut , var(--duration));
    
}

.menu1__item::before{
    
    content: "";
    z-index: -1;
    width: 4.2em;
    height: 4.2em;
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    transition: background-color var(--duration), transform var(--duration);
    
}


.menu1__item.active {

    transform: translate3d(0, -.8em , 0);

}

.menu1__item.active::before{
    
    transform: scale(1);
    background-color: var(--bgColorItem);

}

.icon1{
    
    width: 2.6em;
    height: 2.6em;
    stroke: white;
    fill: transparent;
    stroke-width: 1pt;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    
}

.icon2{
    
    width: 2.6em;
    height: 2.6em;
    stroke: black;
    fill: transparent;
    stroke-width: 1pt;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    
}

.menu1__item.active .icon2 {

    animation: strok 1.5s reverse;
    
}

@keyframes strok {

    100% {

        stroke-dashoffset: 400;

    }

}

.menu1__border{

    left: 0;
    bottom: 99%;
    width: 10.9em;
    height: 0px;
    position: absolute;
    clip-path: url(#menu1);
    will-change: transform;
    background-color: var(--bgColorMenu);
    transition: transform var(--timeOut , var(--duration));
    
}

.svg-container {

    width: 0;
    height: 0;
}


@media screen and (max-width: 50em) {
    .menu1{
        font-size: .8em;
        font-size: .8em;
position: fixed;
width: 100%;
bottom: 0px;
height: 50px;
z-index: 10;
box-shadow: 1px -6px 1px rgb(255 255 255 / 57%);
    }
}

