﻿.sitemap_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}

.sitemap_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sitemap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sitemap_heading {
    width: 100%;
}

.sitemap_group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sitemap_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sitemap_text {
    font-weight: 600;
}

.sitemap_text {
    width: 100%;
}

.sitemap_section ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-left: 24px;
    list-style: disc;
}

    .sitemap_section ul li {
        width: 100%;
    }

    .sitemap_section ul li a {
        text-decoration: underline;
    }

@media only screen and (min-width: 600px) {
    .sitemap {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }

    .sitemap_group {
        width: calc(50% - 8px);
    }
}
