/* Section sitemap */
.section--sitemap {}
.section--sitemap .section__header {
    margin: 0 0 100px 0;
}
.section--sitemap .section__title {
    width: 100%;
    text-align: center;
}
.section--sitemap .section__introduction {
    width: 100%;
    max-width: 1400px;
}
.section--sitemap .sitemap-block  {
    margin-top:32px;
}
.section--sitemap .sitemap-block .sitemap-block__title{
    font-size: clamp(16px, 2vw, 32px);
    line-height: 1.3;
    font-weight: 700;
}

.section--sitemap .sitemap-block .sitemap-list{
    margin: 10px 0 0 0;
}
.section--sitemap .sitemap-block .sitemap-list li{
    padding-left:16px;
}
.section--sitemap .sitemap-block .sitemap-list li::before{
       content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--color-blue); 
}
.section--sitemap .sitemap-block .sitemap-list li a{
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 400;
    line-height: 1.3;
    color:var(--color-blue);
}

.section--sitemap .sitemap-block .sitemap-list li a:hover{
    color:var(--color-red);
}

