.sitemap-grid{
    padding:0 0 2rem;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:3rem 2.5rem;
  }


  .sitemap-list{
    list-style:none;
  }
  .sitemap-link{
    display:flex;
    align-items:center;
    gap:0.8rem;
    padding:0.55rem 0;
    color:#d8d8d8;
    font-weight:600;
    font-size:0.98rem;
    transition:color .2s ease;
  }
  .sitemap-link .dash{
    display:inline-block;
    width:14px;
    height:2px;
    background:var(--orange);
    transition:width .2s ease;
    flex-shrink:0;
  }
  .sitemap-link:hover{
    color:var(--white);
  }
  .sitemap-link:hover .dash{
    width:19px;
  }
	
	  @media (max-width:1200px){
    .sitemap-grid{
      grid-template-columns:repeat(4, 1fr);
    }
  }
  @media (max-width:900px){
    .sitemap-grid{
      grid-template-columns:repeat(3, 1fr);
      gap:2.4rem 2rem;
    }
  }
  @media (max-width:820px){
    .sitemap-grid{
      grid-template-columns:repeat(2, 1fr);
      gap:2.2rem 1.6rem;
    }

  }
 