/* footer list  */

/* same code is in font.css file also */
  
.Nav-Items a {
  font-size: 1rem;
  display: inline-block;
  /* color: purple; */
  font-variation-settings: "wght" 400;
  transition: font-variation-settings 0.2s, color 0.2s;
  width: 100%;
  position: relative;
}

.Nav-Items a svg {
  position: absolute;
  height: 0.25rem;
  left: -0.125rem;
  right: -0.125rem;
  bottom: -0.25rem;
  width: calc(100% + 0.25rem);
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 0.3s;
}


.Nav-Items a:hover svg {
  stroke-dashoffset: 0rem;
  
}

