
    
    .body-card{
    
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: background-color var(--duration);
    
    }
    
    .menu{
    
    margin: 0;
    display: flex;
    /* Works well with 100% width  */
    width: 100%;
    font-size: 14px;
    padding: 0 2.85em;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: var(--bgColorMenu);
    --bgColorMenu : darkgreen;
    --duration: .7s; 
    }
    
    .menu__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: 0.55em 0 0.85em;
    transition: transform var(--timeOut , var(--duration));
    
    }
    
    .menu__item::before{
    
    content: "";
    z-index: -1;
    bottom: 10px;
    width:50%;
    height: 7%;
    border-radius: 30px;
    position: absolute;
    transform: scale(0);
    transition: background-color var(--duration), transform var(--duration);
    
    }
    
    
    .menu__item.active {
    
    transform: translate3d(0, -.8em , 0);
    
    }
    
    .menu__item.active::before{
    
    transform: scale(1);
    background-color: var(--bgColorItem);
    
    }
    
    .menu__item.active {
    
    animation: strok 1.5s reverse;
    
    }
    
    @keyframes strok {
    
    100% {
    
        stroke-dashoffset: 400;
    
    }
    
    }
    
    .menu__border{
    
    left: 0;
    bottom: 99%;
    width: 30%;
    height: 2.4em;
    position: absolute;
    clip-path: url(#menu);
    will-change: transform;
    background-color: var(--bgColorMenu);
    transition: transform var(--timeOut , var(--duration));
    
    }
    
    .svg-container {
    
    width: 0;
    height: 0;
    }
    
    .tab-btn{
      --bgColorItem: rgba(255, 217, 0, 0.75);
      font-size:150%;
      font-family: 'Playfair Display';
      color:white ;
    }
    
    @media screen and (max-width: 1024.98px) {
    .menu{
        font-size: 12px;
    }
    }
    @media screen and (max-width: 767.98px) {
    .menu{
        font-size: 9px;
    }
    .menu__item::before{
      bottom: 8px;
    }
    }
    @media screen and (max-width: 567.98px) {
    .menu{
        font-size: 6px;
    }
    .menu__item::before{
      bottom: 5px;
    }
    }