﻿.sitemap_wrapper {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sitemap_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.sitemap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sitemap_heading {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
}

.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 {
    width: 100%;
    font-size: 18px !important;
    font-weight: bold !important;
}

.sitemap_section ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-left: 24px;
}

    .sitemap_section ul li {
        width: 100%;
    }

        .sitemap_section ul li a {
            font-size: 16px;
            color: var(--dark);
            text-decoration: underline;
        }

            .sitemap_section ul li a:focus,
            .sitemap_section ul li a:active,
            .sitemap_section ul li a:hover {
                font-weight: bold;
            }

@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);
    }
}