.sitemap-content{
    margin-top:20px;
    margin-bottom:80px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.sitemap-content a{
    color:#231f20;
    font-weight: 400;
    text-decoration:none;
}
.sitemap-content a:hover{
    text-decoration:underline;
}

.sitemap-content-part{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: auto;
    gap: 20px;
}

.sitemap-content-part ul{
    margin: 0;
}

.sitemap-content-part h2,
.sitemap-content-part h3,
.sitemap-content-part--100{
    width: 100%;
}
.sitemap-content-part--50{
    width: calc(50% - 40px);
}

.sitemap-content-part h2.sitemap-content-part__title{
    margin-bottom: 10px;
}

@media screen and (max-width:767px){
    .sitemap-content-part--50{
        width: 100%;
    }
}